Jump to content
MakeWebGames

Danny696

Members
  • Posts

    2,632
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Danny696

  1. Re: please help with this one thanks Ahh yes Just add include "global_func.php"; To The Top And Your Done
  2. Re: Advanced Bug Report System   Check Quote I Love That Well Done Chicka
  3. Re: please help with this one thanks Huh What Was The Idea?
  4. Re: New Explore Page Look Of But Noting Ovely Special About IT
  5. Re: Help in Gang Organised Crimes Have You Started Your Crons?
  6. Re: please help with this one thanks event_add() is in the global_func
  7. Re: My plan   Wouldnt we all love to have one from the basic McCraps :mrgreen:
  8. Re: Advanced Bug Report System Half all you did was edit parts here and there
  9. Re: [mccode] Reset your users without deleating them why post in here the last post was in november
  10. Re: Mail Bomb Pro Version a mail bomb is where u put a bomb in a mail so they do that and the user ends up in hosp
  11. Re: Helping me learn :) lol at google what about making a new lets say bank page the old one is a little boring
  12. Re: THIS OR THAT? games (fotty/soccer) erm windows or linux for a server
  13. Re: THIS OR THAT? top gear the other one is just a copy of top gear erm WKD Or V2
  14. Re: Illegalife and his GFX he charges $60-$80 and why not get a unique template
  15. Re: Illegalife and his GFX illegalife thats mint
  16. Re: !!!!! SELLING MY GAME !!!!! Samz sorry to put you down mate but your game has about 800 users
  17. Re: New type of Crimes!! small problem:   if($r['user_level'] == 2) { die("You are not allowed in this area... NICE TRY"); } should be if($r['user_level'] != 2) { die("You are not allowed in this area... NICE TRY"); } and same for all other codes
  18. Re: Crime Update upadted my post with it all done :D
  19. Re: Crime Update Ok Ive Done Them Both First Thing to Do It Add These Querys: ALTER TABLE `users` ADD `braveLVL` INT(3) NOT NULL DEFAULT '1'; ALTER TABLE `users` ADD `cEXPneeded` INT(11) NOT NULL DEFAULT '500'; Replace The Function check_level With This:   function check_level() { global $db; global $ir,$c,$userid; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); if($ir['exp'] >= $ir['exp_needed']) { $expu=$ir['exp']-$ir['exp_needed']; $ir['level']+=1; $ir['exp']=$expu; $ir['energy']+=2; $ir['maxenergy']+=2; $ir['hp']+=50; $ir['maxhp']+=50; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); $db->query("UPDATE users SET level=level+1,exp=$expu,energy=energy+2,maxenergy=maxenergy+2,hp=hp+50,maxhp=maxhp+50 where userid=$userid"); } } Then Just Before The ?> Add This function check_brave() { global $db; global $ir,$c,$userid; $ir['cEXPneeded']=(int) ($ir['braveLVL']*500); if($ir['crimeexp'] >= $ir['cEXPneeded']) { $ir['braveLVL']+=1 $ir['brave']+=2; $ir['maxbrave']+=2; $ir['cEXPneeded']=(int) ($ir['braveLVL']*500); $db->query("UPDATE users SET brave=brave+2,maxbrave=maxbrave+2, braveLVL=braveLVL+1 where userid=$userid"); } }   And Yes I Know I Used INT(3) because i dont think anyone will get over brave lvl 999 you can change it if you want
  20. Re: Crime Update you need to edit the check_level so it doesnt change the brave when the user levels up then you need to add a new function so when the user gets a certain amount of crime exp there brave goes up ill see what i can do about the seond one but the first youll have to do yourself
  21. Re: Crime Update you need to change global func ill see if i can do it
  22. Re: Crime Update im not sure what you mean and post it in the right topic next time
  23. Re: Illegalife and his GFX maby red fits in there games
  24. Re: Illegalife and his GFX IllegalLife your work is amazing
  25. Re: Invite members to your gang [$10] [v2] i play on wolfes game and its good and his invite system is good and i know for a fact that wolfe wouldnt sell whatever mods he ha in his game as that ia what makes his game unique. so a word od advise lower the price as coders can eaisly make this or edit the free one. pull ur head outta ur a**e and code something no1 has.
×
×
  • Create New...