Jump to content
MakeWebGames

Joel

Members
  • Posts

    1,169
  • Joined

  • Last visited

Everything posted by Joel

  1. Re: Command and Conqure I played C & C Generals, but its crap lol, couldn't stand it to be quite honest with you, well that's my opinion :|
  2. Re: Travel Agency Advanced [$15] I've seen this script, its pretty good.
  3. Re: Register [Free]   ROFL
  4. Re: [MCcode V1.1] New Search/Locate   Yep I agree, good work!
  5. Re: [FAQ] Scaling an image Nice work, its cool :-P
  6. Re: Blow members minds with the ULTIMATE explore page I created something similar to this a while ago but never felt like using it, because if you wanted more mods/features then you have create more links.
  7. Re: V2 Staff Applications! Nice work! :-)
  8. Re: User Rating Nice work Klikoka :-D
  9. Re: Free 2 - Gym lol :lol:
  10. Re: MENU CSS HTML {NOT MINE}   lol
  11. Re: [V1] Menu   it should already work :|
  12. Re: [mccodes] Anti-cheat/injection mod - Lose money/crystals if you get too much.   wouldn't we all lol
  13. Re: Counting (nr game) 1941 :p
  14. Re: [REVIEW] Star Fleetz [www.starfleetz.com] Nice game matt :)
  15. Re: [REVIEW] 4x4Mayhem - Please review!! Nice game :)
  16. Re: Counting (nr game) 1939
  17. Re: Help with makeing mods W3schools and php.net iv learned but how do i make a mod   Well what more of an example do you want? Mess with a mod or something.
  18. Joel

    How to....

    Re: How to....   Yeah but with my code, I can create more functions, At least I no it works then I have no problem, But I'll see what I can do with your code see if it makes life a lot easier. And my function works for all the users.
  19. Re: Preferences edit Cool mod Zero
  20. Re: Counting in 5 backwards 8970
  21. Re: Counting (nr game) 1937
  22. Re: Count Backwards :D 4907
  23. Joel

    How to....

    Re: How to.... It doesn't matter guys, I was reading tutorials on websites and finally got somewhere. I use this and also other functions:   function user_info($field='') { if(empty($field)) return false; $accepted = array('username', 'money', 'points', 'nickname', 'memberlevel', 'signature'); if(!in_array($field, $accepted)) return false; $result = mysql_query("SELECT ". $field ." FROM members WHERE ID = ". $_SESSION['member_ID'] .";"); if(1 != mysql_num_rows($result)) : return false; else : $row = mysql_fetch_assoc($result); return $row[$field]; endif; }   Then I would put something like this in a file:   print user_info('username');   or I would do this   $username = user_info('username'); print "$username";
  24. Re: Ranks Mod!!!!   Yeah that is simple,   if($ir['level'] == 1) ( print "Private "; print "[img=imagehere.png]"; )
  25. Re: Ranks Mod!!!! Oh and also if you people are having this mod then it would be useful if you add something like this in viewuser.php   if($ir['level'] == 1) { print "Private"; } elseif($ir['level'] == 100) { print "Corporal"; } elseif($ir['level'] == 125) { print "Sergeant"; } elseif($ir['level'] == 150) { print "Sergeant Major"; }   And so on..... I cant be bothered to carry on as its 05:28am in the the morning, any mistakes I'll fix later.
×
×
  • Create New...