
DELETE ME NOW!
Members-
Posts
346 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by DELETE ME NOW!
-
Re: Rise Of Lycans Yeah
-
Re: [mccode v2] Tag Mod (Complete) Yeah :)
-
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
-
[REVIEW] Review my game plz. Fearless-Dojo
DELETE ME NOW! replied to Dominator's topic in Browsergames
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 -
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 :)
-
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 :)
-
Re: [any] Kool name *me pokes MTG in the eye :)
-
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 :)
-
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?
-
Re: [any] Kool name You really needed to say that? lol
-
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.
-
Re: 3 Word Game stated that I //lmao lol
-
Re: Which File Extension are You? I got the same :) :), lol
-
[REVIEW] Review my game plz. Fearless-Dojo
DELETE ME NOW! replied to Dominator's topic in Browsergames
Re: [REVIEW] Review my game plz. Fearless-Dojo Lol -
Re: first site So were did you copy that from? lol
-
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
-
How to make sure assistants won't ban the admin?
DELETE ME NOW! replied to legrolls's topic in General Discussion
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; } -
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());
-
Re: Userlist - Secure! Yes i know its selecting everythink i done it like that because, so no one would have to edit the query :)
-
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
-
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
-
Re: [any] Kool name Why do that? :S echo '<font color="blue">'. htmlspecialchars(stripslashes($ir['username'])) .'</font>';
-
Re: yet another problem He just forgot the else like elseif