Ishy
Members-
Posts
203 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Ishy
-
Re: door shoot Here is the new Door Shoot but with the spelling corrections. :mrgreen: <?php /*----------------------------------------------------- -- Made by iseeyou94056. -- Door Shoot Modificiation (Free) -- Please do not remove this -- Please do not resell -- doorshoot.php -----------------------------------------------------*/ include "globals.php"; if ($ir['doorshoot'] ==1) {echo "You have already done Door Shoot today."; EXIT;} if ($ir['shower'] ==1) {echo "You do not smell very nice, go and take a shower."; EXIT;} if ($ir['hospital']) {echo "You cannot Door Shoot while in hospital."; EXIT;} if ($ir['jail']) {echo "You cannot Door Shoot while in Jail."; EXIT;} if (!$_GET['get']) { echo "<center>Hi and welcome to the Door Shoot, please choose one of the six doors you would like to open and receive prizes, but be careful, not all of the doors have good rewards. <table Border='1' class='table'><tr><td class='table'>[url='doorshoot.php?get=d1']Door 1[/url]</td><td class='table'>[url='doorshoot.php?get=d2']Door 2[/url]</td><td class='table'>[url='doorshoot.php?get=d3']Door 3[/url]</td></tr><tr><td class='table'>[url='doorshoot.php?get=d4']Door 4[/url]</td><td class='table'>[url='doorshoot.php?get=d5']Door 5[/url]</td><td class='table'>[url='doorshoot.php?get=d6']Door 6[/url]</td></tr></table>";} //code start// //door 1 start// else if ($_GET['get'] =='d1') {echo "You kick open Door 1 and shoot some guy and take [b]$100[/b] from his wallet. [url='index.php']> Back[/url]"; $db->query("UPDATE users SET money=money+100 WHERE userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 1 end// //door 2 start// else if ($_GET['get'] =='d2') {echo "You open Door 2 and shoot some kid in the head, later that day his dad finds you and kicks the crap out of you and takes [b]$200[/b] from your wallet."; $db->query("UPDATE users SET hospital=hospital+15 WHERE userid=$userid"); $db->query("UPDATE users SET hospreason='Beat up by a dad.' WHERE userid=$userid"); $db->query("UPDATE users SET money=money-200 WHERE userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 2 end// //door 3 start// else if ($_GET['get'] =='d3') {echo "You kick open Door 3 and shoot a lady in her head and take [b]4[/b] Crystals out of her purse."; $db->query("UPDATE users SET crystals=crystals+4 Where userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 3 end// //door 4 start// else if ($_GET['get'] =='d4') {echo "You kick open Door 4 and shoot, but the bullet hits a metal bar bounces back into you, the bum who you should of hit takes [b]6[/b] Crystals from your wallet while you was waiting for the ambulance."; $db->query("UPDATE users SET crystals=crystals-6 WHERE userid=$userid"); $db->query("UPDATE users SET hospital=hospital+15 WHERE userid=$userid"); $db->query("UPDATE users SET hospreason='Got hit by boucning bullet.' WHERE userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 4 end// //door 5 start// else if ($_GET['get'] =='d5') {echo "You kick open Door 5 and shoot some guy and take [b]$100[/b] and [b]10[/b] Crystals from him."; $db->query("UPDATE users SET money=money+100 WHERE userid=$userid"); $db->query("UPDATE users SET crystals=crystals+10 WHERE userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 5 end// //door 6 start// else if ($_GET['get'] ==d6) {echo "You kick open Door 6 and a man hits you with a sledge hammer and puts you to the ground taking [b]$300[/b] and [b]15[/b] Crystals from you while you was waiting for the ambulance.; $db->query("UPDATE users SET money=money-300 WHERE userid=$userid"); $db->query("UPDATE users SET crystals=crystals-15 WHERE userid=$userid"); $db->query("UPDATE users SET hospital=hospital+30 WHERE userid=$userid"); $db->query("UPDATE users SET hospreason='Got hit with sledge hammer.' WHERE userid=$userid"); $db->query("UPDATE users SET doorshoot=1 Where userid=$userid");}//// //door 6 end// //code end// ?>
-
Re: door shoot WOW, they is a loads of spelling mistakes in that Door Shoot modification, I will send the corrected version. :-D
-
Re: [Free] [v1] Monkey Slaves LOL, I like the name, I cannot exactly add it onto my game without modifying it first BTW, my game is a gangsta based one LOL.
-
Re: [mccode] FREE Criminal Record (advanced) Well OXI There is a bug on there, on docrime.php you created for this... The user does not get NO EXP at all when they do a crime, I don't know if you want it to be like that but I think people would like it like that :-D Just a thought :mrgreen:
-
Re: [Free] [v1] Jail When you pay $10,000 to bail somone out it doesn't work :|
-
Re: [FREE][MCCODE V1] Mass Payment Peeple like to reward the game e.g. Reaching a certain amount of players in 10 days , you could send them as much as you want then. Just makes the game players happy, and owners I think like it :-) iseeyou requested it, I gace it him :-D And just trying to help people and get respect, and a bit of reputation. :mrgreen:
-
Hey I just created a newbie Mass Payment function for your admin panel. And I thought I will let you all have it :-) Firstly Find: case 'massmailer': massmailer(); break; Add underneath: case 'masspayment': masspayment(); break; case 'masspaymentsub': masspaymentsub(); break; Secondly Find: [[url='admin.php?action=massmailer']Mass mailer[/url]] Add underneath: [[url='admin.php?action=masspayment']Mass Payment[/url]] Thirdly Find: function massmailer() { global $ir,$c,$userid; if($_POST['text']) { $_POST['text']=nl2br(strip_tags($_POST['text'])); $subj="This is a mass mail from the administration"; if($_POST['cat']==1) $q=mysql_query("SELECT * FROM users ",$c); else if($_POST['cat']==2) $q=mysql_query("SELECT * FROM users WHERE user_level > 1",$c); else if($_POST['cat']==3) $q=mysql_query("SELECT * FROM users WHERE user_level=2",$c); else $q=mysql_query("SELECT * FROM users WHERE user_level={$_POST['level']}",$c); while($r=mysql_fetch_array($q)) { mysql_query("INSERT INTO mail VALUES('', 0, 0, {$r['userid']}, unix_timestamp(),'$subj','{$_POST['text']}')",$c); print "Mass mail sent to {$r['username']}. "; } print "Mass mail sending complete! [url='admin.php']> Back[/url]"; } else { print "[b]Mass Mailer[/b] Text: Send to all members Send to staff only Send to admins only OR Send to user level: Member Admin Secretary IRC Op Assistant "; } } Add underneath: function masspayment() { print "Mass Payment Money: "; } function masspaymentsub() { global $ir,$c,$userid; { mysql_query("UPDATE users SET money=money+{$_POST['money']}",$c); print "Mass Payment sent! "; } } Then your done!!! Hope you enjoy your new mass payment function :-D
-
Re: [Mccode][Free] House Pictures Works for me :-D
-
Re: [Mccode][Free] House Pictures I think you should take of the V1 Code and Game Owner bit... :-) If you don't know how you ain't one of them. :| You should of put the SQL query in. When you have done that go to phpMyAdmin houses/Browse/choose your house you want the picture to go in... And then put in the URL of the picture e.g. http://www.gameurl.com/picture.jpg And it should work :-P
-
Re: [Free] Password reset code I like it, works well this the games... Thanks +1
-
Re: [Mccode][Free] House Pictures I am not that good yet...This is my first little thing. :-)
-
This is just a easy modification to your game because I am a noobie and just started to learn PHP. This modification is for House Pictures. I have put it so the house picture is the same size as your display picture...You will have to add seperate pictures on eahc house. Lets Start: Add this SQL: ALTER TABLE `houses` ADD `hPIC` VARCHAR( 255 ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '[img][/img] Then open index.php: Find: [b]Total stats:[/b] {$ts} [Ranked: $tsrank] Then add underneath: Your House Is:{$ir['hNAME']} {$ir['hPIC']} Then hopefully it should work 8-) If you have any problem PM me please. I am hoping to give out more little free modifications. Thanks Toxication
-
Re: i better warn all game owners here WTF!!!!!!!!!I DO NOT ROB CODES!AND I ADMIT I CANNOT CODE!!!I NEVER SAID I CAN...I WOULD NOT TRUST MADOGDAN AS HE HAS V2 CODES AND IS CONVERTING THEM INTO V1 AND SELLING THEM.OR THE OTHER WAY ROUND. AND YES SUBGHETTO I ASK YOU FOR HELP BECAUSE ICANT DO IT.AND MADOGDAN TELL ME WHICH MOD I STOLE...AND ASTRA I ASK YOU TO DO CRON BECAUSE THEY ARE VERY DIFFICULT.I ONLY NO BASICS OF PHP AND MADOGDAN CANT CODE FOR CRAP NEATHER WHY THE HEEL DID YOU ASK ME TO DO IT.I DID ONE JOB FOR YOU YOU UNGRATEFUL PERSON FOR NOTHING.AND...I HAVE MY OWN GAME WWW.GANGSTA-LIFE.COM 8-) VISIT IT :wink: SO THANKS AND PLEASE REPLY AS I WANT TO TAKEW THIS FURTHER AND ANSWER A FEW QUESTION!!!THANKS KWALLY/KIERAN WALLWORK/GANGSTA[1] :mrgreen: