Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,124
  • Joined

  • Last visited

  • Days Won

    144

Everything posted by Magictallguy

  1. Re: Energy bar Haha, nice fast work there BlueDevil ;) (post deletion) To Dimension: I'll keep it short and sweet.. Shut up, grow up ;)
  2. Re: [mccodes][V2]changable currency mod   Not my game, just the game I'm the "Chief Website Developer" of..
  3. Re: [mccodes][V2]changable currency mod I'll just use mine :P http://magictallguy.co.uk/screenshots/b ... ings-2.png
  4. Re: intergrate html layout into mccodes Resolved on my forum :P
  5. Re: [MCCODES v2] Attack restriction   Your code contained an error..
  6. Re: Function help   ... yes you can -.-
  7. Re: [Mccodes V2] Set Up V2 the way you want it without altering files.... Hehe, created my own version - slightly different, but works the same.. Screenshots here
  8. Re: Hacked :(   Welll Ouchy, Im Jameo? I've Been Called A Whore/Idiot/Moron/Looser But Never Jameo I Think My Feelings Have Just Been Hurt ... Like Really Bad, MTG I Needa Hugg Now! I'm sowwy.. *hugs*
  9. Re: SQL You need to end your INSERT query with the delimiter ";" INSERT INTO `settings` VALUES (NULL, 'steps_daily', 100);
  10. Re: [mccodes v2] Combined Gallery and Comment System [$40.00] "fluffing around" - lol, I like that xD -- I apologise but there has been an unforeseen delay in aquiring the money. The Paws Web team can have $70 as an apology to you for yet another delay.
  11. Re: TwIsTeD WiShEs ! Granted, but she has 2 STD's and bad hygiene. I wish people would treat me right for once..
  12. Re: Bank Layout V2   number_format()..
  13. Re: Mccodes V2. Music Player. $40 No point adding magic_quotes_gpc.. It has been deprecated (no longer used) as of PHP 5.3, and removed as of PHP 6.0 - Source (PHP.net)
  14. Re: Hacked :( Meh, Craig and Jameo type very similarly then :P
  15. Re: Mccodes V2. Music Player. $40   First error - CHMOD the file to 0777 (0755 if your host has Safe Mode enabled) Second - check all input. If you don't like it, remove it! Secure all input, that's a must in any case..
  16. Re: Can someone please explain how to do a total reset of my game? And userstats, inventory, logs...
  17. Re: just restarted my game fresh and wondering Why are you looking into the class folder/files? It's the config.php that is more likely to have the problem, it may not have the driver array! That, or any file trying to require the class file may not have the $_CONFIG globally defined..
  18. Re: Hacked :( I have a feeling that "Casanova" is "Jameo" under yet another pseudonym. I have seen the way "they" type - and it matches perfectly.
  19. Re: FIRST THOUGH! Exillerating
  20. Re: FIRST THOUGH! Shilling
  21. Re: How to use sprintf?   <?php function check_number($num) { if(!ctype_digit($num)) { echo "Invalid submission"; exit; } $num = abs(@intval($num)); } function check_alpha($let) { if(!ctype_alpha($let)) { echo "Invalid Submission"; exit; } $let = mysql_real_escape_string(htmlspecialchars($let)); } function check_string($str) { if(!ctype_alnum($str)) { echo "Invalid submission"; exit; } $str = mysql_real_escape_string(htmlspecialchars($str)) }   All of those are designed for database usage (bar the numerical check). If you're not using a database, remove the mres() as there will be no need for it. The numerical check can be used with and without a database. Make sure you CHECK what's going INPUT, then CLEAN the INPUT!
  22. Re: [any version] Removal of 1 minute crons   timestamped actions can be an option, yet it will increase the load more than crons, unless you close open connections, even though the load is higher than crons. One other option... are the mysql events :P While this is true - not all servers have MySQL 6.* yet. The developers of MySQL strongly recommend that you do not use MySQL 6.* until there is a stable release.
  23. Re: Cronus's Armory Mod Help   Not for conversions, I had planned to convert this, however I have not yet. Want me to convert for you? I have no use for the code so I will not be stealing/using it anywhere. -- You are more than welcome to "supervise" me if you so wish (using a nifty little program called TeamViewer :P)
  24. Re: How to use sprintf?   Please tell me why you're securing numbers coming from the database that can only be a numerical value (due to fieldset being int)   $sql = sprintf("SELECT * FROM cities WHERE ((cityid != %u) AND (cityminlevel <= %u))", $ir['location'], $ir['level']); $q = $db->query($sql); would work just fine ;)
  25. Re: 3 Word Game over the place. //Clean up on Aisle 2!
×
×
  • Create New...