Jump to content
MakeWebGames

DELETE ME NOW!

Members
  • Posts

    346
  • Joined

  • Last visited

    Never

Everything posted by DELETE ME NOW!

  1. Re: IP hack secure - fixed   Yeah.... here is some examples.... http://www.regular-expressions.info/examples.html Then scroll down a bit
  2. Re: IP hack secure - fixed maybe even $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); if(empty($IP)) { echo 'You dont have a/an IP so you can\'t play the game!'; $this->endpage(); exit; } $blockedIPS = array("127.0.0.1", "blah", "blah1", "Some blocked ips lol"); if(in_array($IP, $blockedIPS)) { echo 'This IP is blocked from the game'; exit; }
  3. Re: IP hack secure - fixed huh? this is the ip fix secure..
  4. Re: IP hack secure - fixed ok lol, but i aint moaning... i was just saying there thats a way to do it also ive secured the variable.. not like the others. $IP = $_SERVER['REMOTE_ADDR']; i done $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); done secure.
  5. Re: Guess the next poster I guess the next poster... so who ever posts i win lmao
  6. All theses topics are pissing me of so much, so im posting a fix, i know theres loads but its fu**ing pissing me off. Header.php Replace the $IP with $IP = mysql_real_escape_string($_SERVER['REMOTE_ADRR']); Close Save! Open Global_func.php Find function stafflog_add(); Find $IP Replace with $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); Close save! Open register! Find $IP replace with $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); close save! Authenticate.php Find $IP Replace with $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); close save! Done simple! no do it and stop moaning and doing everyones head in moaning "Someones hacked my game someone help plzzzzzzzzzzzzzz" :S
  7. Re: Hacked :( OMG, theres so many topics/boards on theses, if you want to run a game/site secure it!, if not dont run one, if you do own one and dont know how to secure it i guess you should shut it down now! :mrgreen:
  8. Re: Monkey Wrench Template system, thing like cakePHP, smarty, code igniter i guess? :wink:
  9. Re: Help With Header under your function example.. function blah_functionname() { global $db, $ir, $userid, $set; //YOUR CODE HERE... }   That is how it should be..
  10. Re: [V1] V1 Help Please   It cant be correct ;) your mysql.php or even.. your server
  11. Re: [mccode v2] Tag Mod (Complete)   Nope.... wont work lol...   CREATE TABLE `arena` ( `tmID` INT(11) NOT NULL AUTO_INCREMENT, `tmQTY` BIGINT(50) UNSIGNED NOT NULL DEFAULT '0', `tmADDER` INT(11) NOT NULL DEFAULT '0', `tmPRICE` BIGINT(50) UNSIGNED NOT NULL DEFAULT '0' ) ENGINE = MYISAM   That should work for yas :P
  12. Re: Help With Profile Signatures Learn then i guess xD You could also use nl2br();
  13. Re: [mccodes v2] sendcash.php / Same IP Stop   O.o why abs(@intval($_GET['ID'])) and $_GET['ID'] = abs(@intval($_GET['ID'])); o.O   $sql = $db->query("SELECT `lastip` FROM`users` WHERE (`userid` = '{$ir['userid']}')"); $ch = $db->fetch_row($sql); if($ch['lastip'] == $ir['lastip']) { echo "Sorry, sending on same IP is not allowed. Now F OFF! xD "; echo "[url="index.php"]> Go Home[/url]"; } Is just simpler^
  14. Re: Help With Profile Signatures Use a bbcode thing or make one ur selt lol.. or.. htmlspecialchars(); htmlspecialchars_decode(); html special chars once going into the database then on viewuser use htmlspecialchars_decode(); also, you might wanna secure it :)
  15. Re: ROC   Yep
  16. Re: ROC   I don't think anyone on this forum is going to clone you anythink!
  17. Re: My jailescape   Do something to check if they have the right amount of brave........
  18. Re: a couple of mods Hu?
  19. Re: Questions about languages.   :mrgreen:
  20. Re: Need help with simple sql please   LOL, im not trying to be nasty or anything i was saying use code tags i had to scroll all the way down of the page lol.
  21. Re: [mccode v2]My Simple Search Streets Adding items is easy.. item_add($ir['userid'], ITEM ID, ITEM QTY);
  22. Re: [V2]Donator Packs as Items[V2] Lmao lol ok :P
  23. Re: a couple of mods   Lmao, tolk do that it will mess your register page up :) This is what you do ALTER TABLE `users` CHANGE `gender` `gender` ENUM( 'Male', 'Female', 'Animal' ) NOT NULL DEFAULT 'Male' ^^ I only done php tags for colors ;)
  24. Re: [V2]Donator Packs as Items[V2]   Whats Donor IPN are you using
  25. Re: [mccode v2] Donator's Bank   Anytime :P
×
×
  • Create New...