Jump to content
MakeWebGames

John99

Members
  • Posts

    491
  • Joined

  • Last visited

    Never

Everything posted by John99

  1. Re: [mccode] FREE Criminal Record (advanced)   LMFAO
  2. Re: [mccode] FREE Criminal Record (advanced)   yeah plus its taking more and more space on your server for everyuser i agree with Decepti0n
  3. Re: Mod Discussion   Nicely Said and i like that idea to :-P but even better idea :-P A mod were you got to diffrent cities and buy diffrent houses in diffrent cities like say United States I have a house then say i traveled to United Kindom then i had a flat that would be a cool idea :-P :-P
  4. Re: Help PLease Yeah do you have it working know then? anyways was you using lite:|
  5. Re: Medical items dont work Thanks got it to all work so MANY bugs in McCode
  6. Re: Streets.php and cyberbank.php help good
  7. Re: viewusers.php Sever104 can you please before you put the code do [ code] and at the end put [/ code] with no space please :) easy for all fo us in the forum
  8. Re: User Bars   LOL!
  9. Re: How Can I Judge The Legal From The Illigal Codes? Good info
  10. Re: Help with v2 please. Yeah
  11. Re: monorail Nice one :)
  12. Re: Getting Rid of the 2.147 bil cap in MCcode Well this way i have done works fine for me in admin panel were it has edit , create user, credit users ect in the code some think like (int) replace that with (float) works fine and edit the money table and it should work works fine for me :-P
  13. Re: Menu on Left and Right Side Read the posts you u will see
  14. Re: [All] Remove Items from Shops Thank you so much i tryed to make this had a bit of it but good job for this :) +1 for you ;) :-P :-P
  15. Re: [v1] NEW - Weapon Stocks & Transport You can tell you took your time making this mod and the idea for the mod i like the way you have done it nice mod +1 :)
  16. Re: Free New City Mod For v1 and lite Ok i havent tryed this but someone try it find in the code: function new_city_sub() { global $ir, $c, $h, $userid; $_POST['cityminlevel'] = abs((int)$_POST['cityminlevel']); mysql_query("INSERT INTO cities (cityname, citydesc, cityminlevel) VALUES ('{$_POST['cityname']}', '{$_POST['citydesc']}', '{$_POST['cityminlevel']}');", $c); print "[url='admin.php']> Back[/url]"; }   Replace with: function new_city_sub() { global $ir, $c, $h, $userid; $_POST['cityminlevel'] = abs((int)$_POST['cityminlevel']); mysql_query("INSERT INTO cities ('', cityname, citydesc, cityminlevel) VALUES ('', '{$_POST['cityname']}', '{$_POST['citydesc']}', '{$_POST['cityminlevel']}');", $c); print "[url='admin.php']> Back[/url]"; }
  17. Re: [v1] Maximum Users Online Counter Yeah its nice :)
  18. Re: [mccode] Kicking Gang Members At War nice
  19. Re: [Free] [v1] Profile Image Uploader Yeah its a nice mod +1
  20. Re: [mccode] for any version copyright code just highlight all the text then press Ctrl + C to copy and Ctrl + V to paste didnt you knbow that way:|
  21. Re: Cash Send Logs Yeah they didnt work so its fixed know :mrgreen:
  22. Re: [FREE]Music system Yeah its a good mod :P everyone likes it lol xD
  23. Re: Contact Staff Form [FREE] yeah mysql_ replace with $db-> and in some in v1 if fetch_array some times in v2 num_row or rows hehe
  24. Re: Email change for preferences.php OK here you go! find: case 'namechange2': do_name_change(); break; case 'namechange': name_change(); break;   After add: case 'email': email_change(); break; case 'emailsub': email_change_sub(); break;   Now find: [url='preferences.php?action=namechange']Name Change[/url]   Afetr add: [url='preferences.php?action=email']Email Change[/url]   Now find: $h->endpage(); ?>   Before that add: function email_change() { global $ir,$c,$userid,$h; print "<h3><u>Email Change</u></h3> Your game email address if the game needs to contact you about your acount.<form action='preferences.php?action=emailsub' method='post'> Your current game email is: {$ir['email']} Email: <input type='text' name='email' /> <input type='submit' value='Change Email' /></form> [url='preferences.php']> Back[/url]"; } function email_change_sub() { global $ir,$c,$userid,$h; mysql_query("UPDATE users SET email='{$_POST['email']}' WHERE userid=$userid",$c); print "Game Email Changed! [url='preferences.php']> Back[/url]"; }   Simple lol
  25. Re: Creating crimes in V2 Good for people who are just new at making them :)
×
×
  • Create New...