Jump to content
MakeWebGames

Godhand

Members
  • Posts

    448
  • Joined

  • Last visited

    Never

Everything posted by Godhand

  1. Re: (v2) Proxy blocking Well I know that he isn't causing problems now though. So time will tell.
  2. Re: (v2) Proxy blocking So other than that it is very slow to do it is indeed still possible (theoretically speaking)?
  3. Re: (v2) Proxy blocking Alright so since I don't want to block all ips from that.... could I make a folder in my database that has a stored use of "known" ips of that user. That I could make a check for inside a new file then require it for my globals to work? Note- I'm meaning a special one rather then the regular one. (so only I could edit the list/ a brute hacker)
  4. Re: (v2) Proxy blocking Will you then explain how an American user is using this ip "66.211.46.45, 202.105.182.15"? (This is the user I want to block)
  5. Re: (v2) Proxy blocking Either way how could I block it since my cpanel doesn't allow me to block them? I know they have ways to access otherwise (I've seen they had logged on other ip addresses). I'm only questioning so I can keep the players honest with an ip address I can actually trace and filter out. One of my users in fed jail uses this type and it DOES NOT get blocked by my ip deny manager and ip ban list.
  6. I was thinking based off the people I have used fake ips. Such as like "66.211.46.45, 202.105.182.15" in the last on ip list. I was thinking if I had made a new stat to get the length of the ip and change it into the "new stat" Then some file named proxieblock.php (or something) and make a code for it inside globals to include it so they couldn't use the ip. In other words if $newstat>=16 die("You have a proxy hiding your ip." I just want to know how to make it change the new stat every time they log in (obviously for security reasons). Plus it would help A LOT of game owners out if someone would be able to "finish" the code for me. I don't know what exactly to make it set for. Help for making it work I will give +respect.
  7. Re: THIS OR THAT? Dwarf Also note if you stop breathing you will just got knocked out. I've done it multiple times. Also another thing to consider is you didn't stop posting therefore you should have stopped breathing :-D. Private Schools or Public Schools?
  8. Re: THIS OR THAT? Popcorn Stop breathing or stop posting? (lmao quite a predicament for both)
  9. Re: 3 Word Game very badly at
  10. Re: SPECIAL ATTACK   What I said is not exactly swearing in my vocabulary; although what I responded to was. Also how did you get "round" out of the letters "i" and "t"?
  11. Re: Money Gym   I believe that just from that it should be enough said.
  12. Re: An 2D Map Game   My thoughts exactly.
  13. Re: (v2) session limits Yes I know this is a double post. So I started to code though a little while. I'm using stats to get a session limit to prevent people from playing constantly.I know that I don't have this set up in my crons yet because of a problem. <?php if(!$ir['cooldown']) { $db->query("UPDATE users SET force_logout=force_logout+1 WHERE userid=$userid"); } $query="UPDATE users SET lifespan=lifespan-5 WHERE $r['laston'] >=time()-5*60 AND lifespan>0 AND cooldown=0"; $query="UPDATE users SET cooldown=cooldown-5 WHERE lifespan=0 AND cooldown>0"; $query="UPDATE users SET cooldown=cooldown+15 WHERE lifespan=0 AND cooldown=0"; $query="UPDATE users SET lifespan=36 WHERE lifespan=0 AND cooldown=0 AND $r['laston'] >=time()-5*60"; $db->query($query); $db->query($query2); $db->query($query3); $db->query($query4); ?> the problem is Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/myinfo/whateverhere/botprotection.php on line 11 which if we go there it will show $query="UPDATE users SET lifespan=lifespan-5 WHERE $r['laston'] >=time()-5*60 AND lifespan>0 AND cooldown=0"; And I *know* that if the problem is the $r['laston'] >=time()-5*60 then there will be the same problem in another line of the code. Any thoughts that would constructively help?
  14. Re: SPECIAL ATTACK tit :-o
  15. Re: SPECIAL ATTACK rich (Bill Gates lmao)
  16. I'm not quite sure how to change this without potentially messing the items up. I was wondering if someone would tell me how I can do this without deleting every item in the game. I know it might take a while to implement but overall I believe it might just be worth it. Any help is greatly appreciated.
  17. Re: (v2) session limits I just tried that and didn't work how I wanted but I think that it pointed me to the right direction how to approach it. Thank you very much
  18. I was thinking for a while to limit how long a player can stay on. I was trying to do something like if($ir['lifespan'])=0 $db->query("UPDATE users SET force_logout=force_logout+1 WHERE userid=$userid"); I kept getting unexpected = error. I'd also like to know how I should set the crons up. I have another stat for this also besides lifespan (cooldown) I mean more of the formula I should use to approach this to start with to avoid glitches.Thanks for your help
  19. Re: throw an object at the top poster *takes all the money buys a car and stashes the rest, after words throws the car at Sarizna*
  20. Re: 3 Word Game jerk named Bob
  21. Re: THIS OR THAT? Gmail stop posting (lmao quite a predicament) or continue posting
  22. Re: Damage limits (v2) So no one is going to point me into a general direction of how I should approach this?
  23. Re: battletent - only one npc showing at a time maybe its because $q2=$db->query("SELECT count(*) FROM challengesbeaten WHERE npcid=$v"); $times=$db->fetch_single($q2); the q2. Try changing that to $q4=$db->query("SELECT count(*) FROM challengesbeaten WHERE npcid=$v"); $times=$db->fetch_single($q4); Disclaimer- this is just a thought get a back up of the right stuff first. (lmao)
  24. Re: (v2 cron stop working) Ty apparently that was all that was wrong. Although I still don't know how it originally got deleted.. any guesses?
  25. Re: (v2 cron stop working) I see that could be weird though because it got deleted also before I pasted it from a back up. Also how could I run this manually to check? I've been wondering that a while. I know I could set it in my cron jobs for now but besides that is there any way?
×
×
  • Create New...