Jump to content
MakeWebGames

Gucci Mane

Members
  • Posts

    207
  • Joined

  • Last visited

Everything posted by Gucci Mane

  1. Hey Reek He didnt ask you to buy, dont like dont buy, dont nag grow up atleast hes trying and thats not something bad thats acctually good but I am just wondering wheres the register? LOL
  2. I have raided them!!! LOL I always search Google. I need more sites
  3. Does anyone know where I can get more brushes/fonts? I need sites besides: http://www.dafont.com
  4. Can we get the url to illegallife and swat assault?
  5. I am in.
  6. yea, but I am at school right now
  7. ok ill go on D-f and find my gallery link and link you there
  8. I havent made any in game temps yet I have made logins and other grafx though
  9. U pay?
  10. sure what all do you wanna see?
  11. Hey everyone, I am in some desperate need of cash!!!!!! So, to get it. I will design graphics for a small fee. Includes: 1) Avatars 2) Login pages 3) Register Pages 4) In-Game Templates. 5) Signature Pictures 6) Navigation Menus/Bars 7) Buttons and possible any other graphic you need. Also, to gain some money. I will make fully custom websites. These websites will ahve graphics and custom menus and anything on them you want. I am fairly good at HTML/CSS. Please PM ME here for any asitance or you can message me on MSN. [email protected] Thanks, GM
  12. Gucci Mane

    Games

    Hey I am looking for a game or 2 to play. Please post your game link here. Or PM it to me. Please.
  13. price change: $10 for register and login $15 for register, login, ingame template
  14. Thank you for your feedback
  15. I will also throw in a register for $10 total. PM ME for integration details. Also could make a full game template to go with this. PM ME here or on msn ([email protected])
  16. This is the 3rd mod I have done by myself it was just and idea to practice with :P
  17. ok Thanks man Do you have MSN?
  18. Hi everyone, As you all know I am new to PHP but I am making basic mods to enhance my skills. I thought I would making a golfing one, it would mabe keep some users more active because you can do it once an hour. There can be different outcomes, as in jail time or hospital time or money gain or crystals gain.If you like this or use it please give me a +1. Also, please leave feedback to let me know what you think of the mod. Anything you think i could do to improve it. Anyways here goes the code! ;D add this to your SQL Data Base ALTER TABLE users ADD golf INT( 11 ) NOT NULL DEFAULT '0';   add this to your cron_hour.php $db->query("UPDATE users SET golf=0");   Now, make a file called golf.php <?php /*----------------Copyright----------------------------------- Golfing Mod Coded by Gucci Mane Do NOT redistribute or try to sell Do NOT delete this copy right ------------------------------------------------------------*/ @include(DIRNAME(__FILE__) .'/globals.php'); if ($ir['jail']) { die("You cant golf while in jail"); } if ($ir['hospital']) { die("You cant golf while in the hospital"); } if ($ir['golf'] ==1) { die("Only 1 time an hour") } echo "<h2>Golfing</h2>"; $chance=rand(1,5); $wincash=rand(0,15000); $wincrystal=rand(0,25); $hosptime=rand(5,15); $jailtime=rand(5,15); $walletpick=rand(0,10000); if ($chance ==1) { echo "<span style='color:green';>You went all 18 holes and found \$$wincash along the way.</span></font>"; $db->query("UPDATE users SET money=money+$wincash WHERE userid=$userid"); } if ($chance ==2) { echo "<span style='color:red'>Wow, your golfing partner accidentally swung back the golf club and wacked you right in the head!</span>"; $db->query("UPDATE users SET hospital=hospital+$hosptime,hospreason='wacked by partner while golfing' WHERE userid=$userid"); } if ($chance ==3) { echo "<span style='color:green;'>While you were golfing you stumble across a bag and realized there were crystals in it You found $wincrystal crystals!</span>"; $db->query("UPDATE users SET crystals=crystals+ $wincrystal WHERE userid=$userid"); } if($chance ==4) { echo "<span style='color:red;'>You were golfing and hit a ball too far and it hit a guy and killed him! ENJOY Jail!</span>"; $db->query("UPDATE users SET jail=jail+$jailtime WHERE userid=$userid"); } if ($chance ==5) { echo "<span style='color:green;'>You were golfing and seen Randy walking across the road, he drops his wallet Your hurry quick to pick it up and find \$$walletpick, while in the road you got hit by a car.</span>"; $db->query("UPDATE users SET money=money+$walletpick,hospital=hospital+$hosptime,hospreason='hit by car while golfin' WHERE userid=$userid"); } $h->endpage(); ?>   add this link to your explore.php [url='golf.php']Golf[/url]   NOTE: I have not tested this mod. If you have any errors please post them here, ill try to fix the best I can. Thanks, GM
  19. Hi, I am offering any help needed in CSS or HTML for free. I will try my best to help you to my maximum. You can add me on msn ([email protected]) for any questions you may have. Thanks
  20. Will do man thanks
  21. DreamWeaver is gay....   I may be using this program though might be real good for learners
  22. I swear I wrote that out I used one mixed query in that file
  23. thanks mate combine like $db->query("UPDATE users SET money=money+{$winningcash}, brave=brave+1, donatordays=donatordays+1, bankrob=bankrob+1, bankrobsuc=bankrobsuc+1 WHERE userid=$userid");
  24. What version of mcc you using? I could add this but your index is all screwed up
  25. Create file bankrobs.php   <?php // Starting PHP FILE /* Coded by Jordan ('Pudda') & Jewelz ('BulletPr00f') a.k.a Gucci Mane Dont try and sell or I'll drop kick you. Only to help BP learn =) Happy Days ------------------ SQL ADD'S ---------------- ALTER TABLE users ADD bankrob int( 11 ) NOT NULL DEFAULT '0'; ALTER TABLE users ADD bankrobsuc INT ( 11 ) NOT NULL DEFAULT '0'; ALTER TABLE users ADD bankrobfail INT ( 11 ) NOT NULL DEFAULT '0'; --------------------------------------------------------------- File Edits -------------------------------------- A) Cron_day.php Add - $db->query("UPDATE users SET bankrob=0"); B) Explore.php Add [url='bankrobber.php']Bank Robbery[/url] However If you get a error simply replace ' with " B) Anywhere (Header Possibly) Failed Bank Robberys: ".$ir['bankrobfail']." Success Bank robbers: ".$ir['bankrobsuc']." C) Your mod is complete --------------------------------- */ include (DIRNAME(__FILE__) . '/globals.php'); // Include the main file if($ir['jail']) { die("Back to Jail matey!"); } if($ir['hospital']) { die("Back to Hospital matey!"); } if($ir['bankrob'] == 3) { die("3 Times Is the maximum per day"); } print" <h2> Bank robbery</h2>"; $chance=rand(1,6); // Chance $winningcash=rand(0,100000); // Change maximum they can win right now is 100k if ($chance == 1) { // Chance 1 print "<font color=green>YOU ROB THE BANK AND RUN HOME</font> > [url='index.php']Back[/url]"; $db->query("UPDATE users SET money=money+{$winningcash} WHERE userid=$userid"); $db->query("UPDATE users SET brave=brave+1 WHERE userid=$userid"); $db->query("UPDATE users SET donatordays=donatordays+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobsuc=bankrobsuc+1 WHERE userid=$userid"); } if ($chance == 2) { $hosptime=rand(33,50); $minusbrave=rand(5,10); print "<font color=red> HAHA! I never thought I would see the day you get kicked in by a girl</font>"; $db->query("UPDATE users SET hospital=hospital+{$hosptime} WHERE userid=$userid"); $db->query("UPDATE users SET hospreason=hospreason='Slapped by the woman'WHERE userid=$userid"); $db->query("UPDATE users SET brave=brave-{$minusbrave} WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobfail=bankrobfail+1 WHERE userid=$userid"); } if ($chance == 3) { print "<font color=red>You run into the bank and see the police there</font>"; $jtime=rand(1,9); $db->query("UPDATE users SET jail=jail+ {$jtime} WHERE userid=$userid"); $db->query("UPDATE users SET jail_reason='Caught redhanded robbing {$ir['username']} bank' WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobsuc=bankrobsuc+1 WHERE userid=$userid"); } if ($chance == 4) { print "< font color=green>You run into the bank with a bag and throw it on the counter, you tell the clerk ''You know what to do'' and pull out your gun..</font>"; $cwin=rand(1,10); $db->query("UPDATE users SET crystals=crystals+ {$cwin} WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobsuc=bankrobsuc+1 WHERE userid=$userid"); } if ($chance == 5) { print "<font color=green>You run in the bank and ask for the money she replies they have none you shoot her and walk out like a badass</font>"; $jtime=rand(10,30); $winningcash=rand(0,100000); $cwin=rand(0,10); $db->query("UPDATE users SET jail=jail+ {$jtime} WHERE userid=$userid"); $db->query("UPDATE users SET jail_reason='Picked up later in the day for Robbery and First Degree Murder' WHERE userid=$userid"); $db->query("UPDATE users SET crystals=crystals+ {$cwin}, money=money+ {$winningcash}, level=level+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobsuc=bankrobsuc+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobfail=bankrobfail+1 WHERE userid=$userid"); } if ($chance == 6) { print "HAHA! SILLY FOOL!!!"; $jtime=rand(30,60); $db->query("UPDATE users SET level=level-1 WHERE userid=$userid "); $db->query("UPDATE users SET jail=jail+ {$jtime} WHERE userid=$userid"); $db->query("UPDATE users SET jail_reason='Flashing in public' WHERE userid=$userid"); $db->query("UPDATE users SET bankrob=bankrob+1 WHERE userid=$userid"); $db->query("UPDATE users SET bankrobfail=bankrobfail+1 WHERE userid=$userid"); } $h->endpage(); ?>
×
×
  • Create New...