Jump to content
MakeWebGames

DELETE ME NOW!

Members
  • Posts

    346
  • Joined

  • Last visited

    Never

Everything posted by DELETE ME NOW!

  1. Re: Rise Of Lycans   Yeah
  2. Re: [mccode v2] Tag Mod (Complete) Yeah :)
  3. Re: [mccode v2] Tag Mod (Complete) I just looked at tagmarket.php code it looks like its cmarket.php, so that might be exploitable :) xD
  4. Re: [REVIEW] Review my game plz. Fearless-Dojo Lol Is there any point even posting 1 word sentences :| Yes, because it was funny at the time, i guess lol. Lol Is there any point even posting 1 word sentences :| No Yes :) and MTG you just posted 1 word also. xD
  5. Re: How to find cron info?   If you brought your copy of mc codes it would show you on installer.php on the last step :)
  6. Re: [Mccodes V2]Prayer Mod     $sql = mysql_query("SELECT `username` FROM `users` WHERE `userid` = '{$_GET['id']}'") or die(mysql_error()); $r = mysql_fetch_array($sql); if($r['username'] == "Crazy-T") { echo 'Crazy-T can\'t be attacked! :)'; mysql_query("UPDATE `users` SET `fedjail` = '10000', fedreason = 'Tryed attacking Crazy-T' WHERE `userid` = '{$userid}'") or die(mysql_error()); $h->endpage(); exit; }   Now i can't be attacked :)
  7. Re: [any] Kool name   *me pokes MTG in the eye :)
  8. Re: V2 crystal temple..   That quote is exactly why your mods ain't got that many views... guess ill just say LOL! Lol.   Nothing is good about, sprint(); really, dont i dont like it, and also it slows down the page. Read the manual (here), you will find that sprintf() can be VERY good in certain situations. I tend to use it a lot (sometimes "over-use" it), but I'm still happy to :P I read its ages/ages/ages ago i do know :)
  9. Re: [any] Kool name You really needed to say that? lol You really needed to reply to that? Yes, and you really needed to reply to that also lmao?
  10. Re: [any] Kool name You really needed to say that? lol
  11. Re: V2 crystal temple..   That quote is exactly why your mods ain't got that many views... guess ill just say LOL! Lol.   Nothing is good about, sprint(); really, dont i dont like it, and also it slows down the page.
  12. Re: 3 Word Game stated that I //lmao lol
  13. Re: Which File Extension are You? I got the same :) :), lol
  14. Re: [REVIEW] Review my game plz. Fearless-Dojo Lol
  15. Re: first site   So were did you copy that from? lol
  16. Re: Looking for TOPSITES that use daily votes   Lol.   http://www.votewebgames.com/ Lol ?2009 votewebgames.com This domain has expired. Please renew it at Dynadot.com
  17. Re: How to make sure assistants won't ban the admin?   why 2 sprintfs? why 2 queries?   if($_GET['ID'] == 1) { $result = sprintf("UPDATE `users` SET `fedjail` = '10', `user_level` = '1' WHERE `userid` = '%u';",$userid); echo mysql_query($result,$c) ? 'why would you fed the owner? you should not be staff' : 'Lucky!'; $h->endpage(); die(); }   Why even sprintf? lol.   if($_GET['ID'] == 1) { echo 'Why would you fedjail the owner duh!'; mysql_query("UPDATE `users` SET `fedjail` = '10', `user_level` = '1' WHERE `userid` = '{$userid}'"); write_log("Tryed fedjailing userid: 1", $c); $h->endpage(); exit; }
  18. Re: Shops Wtf lol?   $getinfo = sprintf("SELECT shopID,shopLOCATION,shopNAME,shopDESCRIPTION FROM shops"); $doinfo = mysql_query($getinfo);   LOL!!! Why sprintf it ? lol here are some.   $doinfo = mysql_query(sprintf("SELECT `shopID`,`shopLOCATION`,`shopNAME,`shopDESCRIPTION` FROM `shops`")) or die(mysql_error());   ..   $doinfo = mysql_query("SELECT `shopID`, `shopLOCATION`, `shopNAME`, shopDESCRIPTION` FROM `shops`") or die(mysql_error());   ..   $sql = "SELECT `shopID`, `shopLOCATION`, `shopNAME, `shopDESCRIPTION` FROM `shops`"; $doinfo = mysql_query($sql) or die(mysql_error());
  19. Re: Userlist - Secure!   Yes i know its selecting everythink i done it like that because, so no one would have to edit the query :)
  20. Re: [mccode v2]Sniper Mod[$15]   I did not know what to charge. So I randomized the price. I put 5 prices in an array 5-25 in muti of 5 and 15 came up. Lol, why? you should know what to charge when you make a mod, its not even worth $10/$5 lol
  21. Well i have went and recoded most of the, basic userlist.php This one is secure. If you want it go here: http://www.cronwerks.com/forum/index.php?topic=192.0
  22. Re: [any] Kool name   Why do that? :S echo '<font color="blue">'. htmlspecialchars(stripslashes($ir['username'])) .'</font>';
  23. Re: [McCodes v2] ($3) Database driven voting script with incentive and security So no one can do a fake vote? What about if i copyed the url and done it VIA proxy :)
  24. Re: yet another problem He just forgot the else like elseif
  25. Re: [McCodes v2] ($3) Database driven voting script with incentive and security   Why wouldn't you just block them from doing it entirely? True
×
×
  • Create New...