Jump to content
MakeWebGames

castle

Members
  • Posts

    97
  • Joined

  • Last visited

    Never

castle's Achievements

Newbie

Newbie (1/14)

0

Reputation

  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
×
×
  • Create New...