
HITMAN 17
Members-
Posts
1,145 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by HITMAN 17
-
Re: [mccode] crystal slots im not mate :? :? :? :? :? :? :? :? :?
-
Re: [mccode] crystal slots me y?
-
Re: [mccode] crystal slots i fixed this give me +1 if it works <?php /*-------------------------------------- MCCodes Lite original slotsmachine.php Rev 1.0.0 modified to v2.0 Copyright (C) 2006 Dabomstew This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Updated By: spellbyte Fixed By: Downsy007 [url]http://insane-cityv2.ahplace.com[/url] This mod is distributed without warranty! ---------------------------------------*/ include "globals.php"; $tresder = (int) (rand(100,999)); $maxbet=$ir['level']*250; $_GET['tresde']=abs((int) $_GET['tresde']); if(($_SESSION['tresde'] == $_GET['tresde']) || $_GET['tresde']<100) { die ("Error, you cannot refresh or go back on the slots, please use a side link to go somewhere else. [url='crystalslots.php?tresde=$tresder']> Back[/url]"); } $_SESSION['tresde']=$_GET['tresde']; $_GET['bet']=abs((int) $_GET['bet']); print "<h3>Crystal Slots</h3>"; if($_GET['bet']) { if($_GET['bet'] > $ir['crystals']) { die("You are trying to bet more than you have. [url='crystalslots.php?tresde=$tresder']> Back[/url]"); } else if($_GET['bet'] > $maxbet) { die("You have gone over the max bet. [url='crystalslots.php?tresde=$tresder']> Back[/url]"); } $slot[1]=(int) rand(0,9); $slot[2]=(int) rand(0,9); $slot[3]=(int) rand(0,9); print "You place {$_GET['bet']} gems into the slot and pull the handle. You see the numbers: [b]$slot[1] $slot[2] $slot[3][/b] You bet {$_GET['bet']} gems "; if($slot[1]==$slot[2] && $slot[2]==$slot[3]) { $won=$_GET['bet']*26; $gain=$_GET['bet']*25; print "and won $won gems by lining up 3 numbers pocketing you $gain extra."; } else if ($slot[1]==$slot[2] || $slot[2]==$slot[3] || $slot[1]==$slot[3]) { $won=$_GET['bet']*3; $gain=$_GET['bet']*2; print "and won $won gems by lining up 2 numbers pocketing you $gain extra."; } else { $won=0; $gain=-$_GET['bet']; print "and lost it."; } $db->query("UPDATE users SET crystals=crystals+({$gain}) where userid=$userid", $c); $tresder = (int) (rand(100,999)); print " [url='crystalslots.php?bet={$_GET[']> Another time, same bet.[/url] [url='crystalslots.php?tresde=$tresder']> I'll continue, but I'm changing my bet.[/url] [url='explore.php']> Enough's enough, I'm off.[/url]"; } else { print "Ready to try your luck? Play today! The maximum bet for your level is $maxbet. <form action='crystalslots.php' method='get'> Bet: <input type='text' name='bet' value='5' /> <input type='hidden' name='tresde' value='$tresder' /> <input type='submit' value='Play!!' /> </form>"; } $h->endpage(); ?>
-
Re: [Mccode][Free] House Pictures IT IS V2
-
Re: [Mccode][Free] House Pictures has anyone got the sql then so u can put images
-
Re: [mccode] staff applications can some one fix this it says Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /home/eyers/public_html/staffapps.php on line 7
-
Re: [mccode] staff applications omg i cant believe how easy converting is
-
Re: Free Hosting Sites lol how many
-
Re: [mccode] staff applications can i have +1 for trying plz
-
Re: [mccode] staff applications not been tested shud work if ya like it give me +1 <?php session_start(); require "globals"; if($_POST['app']) { db->query("INSERT INTO staffapps VALUES('',$userid,'{$_POST['pos']}','{$_POST['app']}')", $c) or die("Your staff application could not be processed. Make sure you have filled out the form completely"); print "Staff application processed. You will receive a mail in less than 3 days with our decision. Good luck"; } else { print "<h3>Staff Application</h3> <form action='staffapps.php' method='post'> Position: <select name='pos'><option value='3'>Admin</option><option value='5'>Secretary</option><option value='6'>Assistant</option></select></br> Why do you deserve the position?: <textarea rows='7' cols='40' name='app'>{$_GET['app']}</textarea> <input type='submit' value='Submit Application' /></form>"; } $h->endpage(); ?>
-
Re: [Free] [v1] Scuba Diving thnx mate ya the best
-
Re: [Free] [v1] Scuba Diving isomer i am no computer wiz like u
-
Re: [Free] [v1] Scuba Diving sweet i see u can u make this v2 and i will ask on your forum
-
Re: [mccode] Register Page i have better one
-
Re: [mccode] View Donators ye i like it to halo
-
Re: [mccode] staff applications anybody have this mod v2 plz post it
-
New!! Free!! Staff can change any users back ground
HITMAN 17 replied to John99's topic in Free Modifications
Re: New!! Free!! Staff can change any users back ground can u convert it to v2 plz -
Re: [mccode] Personal Detals for v2.0 it keeps making an error on view user
-
New!! Free!! Staff can change any users back ground
HITMAN 17 replied to John99's topic in Free Modifications
Re: New!! Free!! Staff can change any users back ground no i just need it so i can help a mate and all your games are rubbish -
Re: Login Logs Fully Work [FREE] nice mod +1
-
New!! Free!! Staff can change any users back ground
HITMAN 17 replied to John99's topic in Free Modifications
Re: New!! Free!! Staff can change any users back ground this wud be amazing if someone converted this to v2 -
Mini-Arcade - First EVER Mod, FREE FREE FREE
HITMAN 17 replied to -CrAzY-'s topic in Free Modifications
Re: Mini-Arcade - First EVER Mod, FREE FREE FREE <?php /*----------------------------------------------------- --- Games From Addicting Games --- First Mod By -CrAzY- --- Arcade MOD - By Alex .O. / -CrAzY- -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include"globals.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); print "<h5/>You Walk Into The Shooting Games Room Of The Arcade, You See One Game That Might Interest You;<h5/>"; print "<h2/>Lord Cannonball!;<h2/>"; print "<center><embed src='http://farm.addictinggames.com/D78AQSAKQLQWI9/3663.swf' type='application/x-shockwave-flash' width='500' height='300'></embed> > Back</center>"; $h->endpage(); ?> -
Mini-Arcade - First EVER Mod, FREE FREE FREE
HITMAN 17 replied to -CrAzY-'s topic in Free Modifications
Re: Mini-Arcade - First EVER Mod, FREE FREE FREE can u convert this v2 plz -
Re: Drug Place +1 mate thnx
-
Re: [FREE] DPS TO ITEMS V1 [MCCODES] [uPDATED] nm i cant get it to work