Jump to content
MakeWebGames

Lithium

Members
  • Posts

    1,099
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Lithium

  1. Re: Is the a mccodes lite forum Lite/v1 are basicly the same, mods for v2 also are changeable with a minimum effort to work with v1/lite
  2. Re: Ask Staff [Mccodes V2] hehe CrazyT's is right, with the rush i placed `instead of ' :)
  3. Re: Ask Staff [Mccodes V2] $to = mysql_fetch_array(mysql_query(sprintf("SELECT `questionMember` FROM `staff_questions` WHERE `questionId` = '%u'", abs((int) $_POST['id'])))); event_add ($to[`questionMember`], "Your question was answered in the ask staff section, please go there to see it."); Add it on the same place i told first. i haven't looked at the code before :)
  4. Re: Ask Staff [Mccodes V2]   add that line right before this and it should to the trick... echo 'Your responce was given to the question.';
  5. Re: Attack System [Paid Request] Despite all the chatting around... i am NOT looking for a one click attack, i am looking for a system that simply suits my needs, according my own game setup!
  6. Re: SUPER SMALL Bank Interest Mod   Minor correction... $db->query("UPDATE `users` SET users.bankmoney = users.bankmoney + IF( users.donatordays > 0, ((users.bankmoney / 25)), (users.bankmoney / 50) ) WHERE users.bankmoney > 0");
  7. Re: SUPER SMALL Bank Interest Mod   $db->query("UPDATE `users` SET users.bankmoney = users.bankmoney + IF( users.donatordays > 0, ((users.bankmoney / 25)), (users.bankmoney * 50) ) WHERE users.bankmoney > 0");   Same thing, one line of code
  8. Lithium

    GRPG Forum

    Re: GRPG Forum   Yet you seem to have missed the point on the main subject where this thread lays... "PHP-Games > Game Dev Central > Game Support"   There is absolutely no place where it says "MCCodes", and still... you can only talk about a subject on a certain place? Or at your line of ideas... Is this the only place where there's talk about mccodes and everything else is other place else?
  9. Re: Freelancer, expert on website design ect. max gym stats? or max stats? that is a db limitation, which can be lifted changing the fields from int to something else (bigint, float, etc)
  10. Hey, i'm looking for someone to make me a new attack system. If you are willing to accept the challenge, pm me. Also, if you do want to do business, i must warn... asking "How much you are willing to spend" is one step for a failed deal.
  11. Re: [mccodes v2] Casino Mod Package [$75]   You better contact him via email, he's been offline from the forum for quite a while now...
  12. Re: Selling Pre Made Game Layout  
  13. Re: Need help; Mass file editing Notepad++ and/or PHPEd can also do the same shrek1609 suggested, though you need to have all files opened
  14. Re: [mccode v2] Revamped Item Market (Similar To The One On Torn) [$5.00]   Really? let's say that i want to search 3 different items at a time... with your option i need to make 3 different searches. Also, let's say that i want to search one category and multiple items on multiple categories... again with your option i can only do it one at a time.
  15. Re: [mccode v2] Revamped Item Market (Similar To The One On Torn) [$5.00]   Like? like, you have one form to each item category. waste of code and limited options! ;)
  16. Re: Max Bank Interest   mysql_query("UPDATE `bankmoney` SET `users`.`bankmoney` = `users`.`bankmoney` + IF( `users`.`bankmoney` * 0.05 < 1000000, ((`users`.`bankmoney` * 0.10)), 1000000 ) WHERE `users`.`bankmoney` > '0'") just to fix a minor mistake on HD's post ;)
  17. Re: Max Bank Interest you mind showing the outcome? :)
  18. Re: Max Bank Interest yes... use IF statements on the query
  19. Re: menu help align="left" most likely?
  20. Re: [mccode v2] Revamped Item Market (Similar To The One On Torn) [$5.00] well, for the screenshots, your is definetly NOT like mine ;) maybe the looks but a closer look you will find a few (big) diferences!
  21. Re: [sHOWCASE] Avalon i've tried it a couple days ago... and well, i got surprised with the simplicity of it, yet the big potential it has, mainly when you look at the ground engine... mcc! a very qood work! :)
  22. Re: Crimes You already got a reply for it on some other site ;)  
  23. Re: need a little code effeciency help?   $var = array('1','2','3','4','5','6','7','8','9'); $var2 = array('3','5','7','10'); if (in_array($ir['loved'],$var2) && in_array($ir['location'],$var)) { die("You got your lovin for today!"); } else if (in_array($ir['location'],$var)) { die("You should not be here, you are under aged!"); }   Not tested but should work
  24. Re: Total Time Logged In! Total time logged in: 21 days, 18 hours and 20 minutes.
  25. Re: [Mccodes v2] userid help   Not quite... that will generate an error as userid 1 is already in use.. ;)
×
×
  • Create New...