
Jesse60905
Members-
Posts
265 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Jesse60905
-
Re: [Free] Log Suspicious Users It doesn't
-
Re: WWI USA-21 Germany-18 Russia-18 Great Britan-25 France-18
-
Re: [Free] Log Suspicious Users Perhaps borrowing the script put into V2 and modifying it a bit foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } That would definately be able to do something while only filling up your db to 6gb lol.
-
Re: Delete Just hit edit & search and replace...
-
Re: WWI USA-20 Germany-18 Russia-19 Great Britan-24 France-19
-
Re: Delete Much better... Suggestion. Don't run that query I posted... Open your staff_users.php file and run a search & replace. Find: int Replace With: float Then in your users and userstats db replace all the int with bigint and all the 11's with 20.
-
Re: [Free] Log Suspicious Users Holy.... Tyvm.
-
Re: Delete Probably compensating for something else...
-
Re: Delete Try running this query. TRUNCATE TABLE crimegroups After that shut up and learn PHP. "Cba to look". Lazy brat...
-
Re: MCCodes Yes he intended to get paid but due to him being lazy he didn't.
-
Re: Counting (nr game) 1673
-
Re: Counting (nr game) 1669
-
Re: WWI USA-20 Germany-18 Russia-19 Great Britan-23 France-20
-
Re: Emergency Broadcast System (Spam Thread) f957658afc4858002c2fe30915eb617440f7054a = sha1(If you can read this then you are very smart)
-
Re: how to see the design by php? Sadly as php is server-side scripting there are only 2 working ways. 1) Upload to your site with: if($ir['user_level'] ==1) { die("Sorry, staff only"); } after the: <?php or... 2) Install wamp and set-up the codes on your computer which is an absolute joy. Here is the link. Either of those will work... If you're a newbie go for the first. To be honest, wamp confuses me.
-
Re: Crystal market exploit? I know/knew the URL. One of the players sold it to me in return for a dp. Afterwards I banned his IP and deleted his account of course. I think the URL is still sitting in my MSN logs somewhere but I just know if I post it there will be a message in my inbox in the morning and a: on this post... So for that reason I will tell you the basics of it. It uses the union part of sql scripting to add an additional query that adds onto the code making the user get money and crystals. It's just 1 more reason why I hate hackers...
-
Re: Guess the next poster Nope. Ghetto
-
Re: Regaining Energy While In Battle Well be nicer about it then.
-
Re: Regaining Energy While In Battle Hey. My post was inquisitive. That's just mean.
-
Re: Regaining Energy While In Battle Also... Why is your name spazz...?
-
Re: Regaining Energy While In Battle The fix above will work for V2 also. Just in the cron_fivemin.php file. EDIT: My brand new keyboard is messing up... God dammit...
-
Re: New exploit found! I had an idea earlier. Perhaps create a table in the db. I'm not too good at sql so don't ask me to do it for you... But anyways have 1 field be set to 24 everyday with the day cron, another set to 288 by the day cron and 1 set to 3600 for the minute cron. Have each cron only run if there is any credits left and have them deduct 1 from the corresponding field in the db. Have the day cron hidden and passworded 30 different ways. That would make the crons secure enough that if somebody did decide to exploit them the crons wouldn't run more during a day then they should.
-
Re: Regaining Energy While In Battle He means the crons making them regain energy. As you did not specify which version of codes you have I will post the V1/LITE fix and hope you have one of the 2. If not then I will post V2 for you... Here is the fix: in braveupdate.php FIND: $query3="UPDATE users SET hp=hp+(maxhp/3) WHERE hp<maxhp"; REPLACE WITH: $query3="UPDATE users SET hp=hp+(maxhp/3) WHERE hp<maxhp AND attacking !=1"; I believe that'll produce the desired effect.
-
Re: New exploit found! Or have tehm in a folder 1000 folders deep in your server. I don't even know where mine are unless I look in my c-panel.
-
Re: Slower Crons Not quite that good yet...