Jump to content
MakeWebGames

castle

Members
  • Posts

    97
  • Joined

  • Last visited

    Never

Everything posted by castle

  1. Has anyone seen Mafia Wars on Facebook? The job system there is set up to give you experience and money per job by user level, tracked with bars similar looking to the will, brave, experience, energy bars in MCCodes. Thought something similar could be built to replace crimes in MCCodes. Attempting on my own, but already know my skills fall way below par, so I thought I would put this out there for any real coders who might be looking for a new idea.
  2. Re: Bank Layout V2 this:   print "Congratulations, you bought a bank account for \$5,000! [url='cyberbank.php']Start using my account[/url]";   should be this:   print "Congratulations, you bought a bank account for \$5,000! [url='bank.php']Start using my account[/url]";   just a small miss
  3. Re: Hacked :( My site got hacked...and their is plenty of fixes in these forums to prevent them in the future. You just have to search.
  4. Re: [Mc Codes V2] My Search Streets one small error:   $db->query("UPDATE users SET crystals=crystals+$crystals WHERE userid=$userid"); print "While searching the streets you checked out a staircase and found $randcrystals crystals. [url='streets.php']Go Back[/url]";   should be:   $db->query("UPDATE users SET crystals=crystals+$randcrystals WHERE userid=$userid"); print "While searching the streets you checked out a staircase and found $randcrystals crystals. [url='streets.php']Go Back[/url]";
  5. Re: [mccode v2] Item needed to perform crime. that worked except back to the message you don't have the required item even if you do and your brave can go into the negative
  6. Re: [mccode v2] Item needed to perform crime. syntax error, unexpected '>' docrime.php on line 20   line 20 is: else if ($r['crimeITEM']) > 0 and ($n['inv_itemid'] != $r['crimeITEM']))
  7. Re: Help   Is it for V1 or V2? It's from here, great mod by the way: http://criminalexistence.com/ceforums/index.php?topic=26757.0
  8. Re: Help the item table given was from a mod, not the original mccodes item table
  9. Re: [MCCODES v2] Trivia Quiz Creator sounds great! 8-)
  10. Re: [V2] Mug feature with Stats! is there a way to make this so you have to be in the same city as the person you are mugging?
  11. Re: Userlist - Secure! Looks great, but got the same result, only one page
  12. Re: Attack Script made by us one that works Hopefully. How about a mug feature as well? And one click for sure... :lol:
  13. Re: Attack Script made by us one that works Hopefully. agreed the zombie mod is great
  14. Re: [McCodes V2] Private Helth Care (Donator Only) Think your missing this line:   $db->query("UPDATE `users` SET `money`=`money` - '5000' WHERE `userid`={$ir['userid']}");
  15. Re: [McCodes V2] Intimidate Witness (Donator Only) Looks good
  16. Re: Hospital/Jail Time v2 thanks
  17. Re: Hospital/Jail Time v2 how much time does this mean?   $hosptime=rand(20,40)+floor($ir['level']/8);
  18. I did a search but did not find this: I would like the hospital and jail time to be standard for no matter what the reason. Say like 20 minutes...where do I find this in the code. Is it in the global file (version 2 by the way)
  19. Re: Businesses Mod [Mccode V2] heck yes, i added it to global_func...doesn't mean I uploaded to the site though.... :oops: thanks!
  20. Re: Businesses Mod [Mccode V2] got this when trying to accept someone's application to the business:   Fatal error: Call to undefined function business_alert() in business_manage.php on line 384   line 384 is:   business_alert($inf['busId'], "Member ID ".$it['appMember']." has been accepted into the business.");
  21. Re: Businesses Mod [Mccode V2] getting this error: Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource on this line:   while($fetch_cash = mysql_fetch_assoc($bus_rating)) and this line   while($fb = mysql_fetch_assoc($fetch_businesses))
  22. Re: [mccode V2] Attack updated just put it in, works great! :-D
  23. Re: [mccode V2] Attack updated does every .nameformat have to be changed ?
  24. Re: [mccode V2] Attack updated got this:   Fatal error: Call to undefined function nameformat()
  25. Re: hospital/header error That was it, thanks
×
×
  • Create New...