|
One of my enemies is exploiting my FIlteringEnabled place, causing massive lag, and unfortunately he's doing them on alts so I can't email roblox about him.
I need to form an IP ban system. I will go higher if necessary |
|
|
i know how to script i just don't know how to do this... |
|
|
You ask for the impossible. There is no way to do this. |
|
|
Somebody said that it couldn’t be done
But he with a chuckle replied
That “maybe it couldn’t,” but he would be one
Who wouldn’t say so till he’d tried.
So he buckled right in with the trace of a grin
On his face. If he worried he hid it.
He started to sing as he tackled the thing
That couldn’t be done, and he did it!
Somebody scoffed: “Oh, you’ll never do that;
At least no one ever has done it;”
But he took off his coat and he took off his hat
And the first thing we knew he’d begun it.
With a lift of his chin and a bit of a grin,
Without any doubting or quiddit,
He started to sing as he tackled the thing
That couldn’t be done, and he did it.
There are thousands to tell you it cannot be done,
There are thousands to prophesy failure,
There are thousands to point out to you one by one,
The dangers that wait to assail you.
But just buckle in with a bit of a grin,
Just take off your coat and go to it;
Just start in to sing as you tackle the thing
That “cannot be done,” and you’ll do it.
|
|
OzzyFinJoin Date: 2011-06-07 Post Count: 3600 |
and that's obviously not possible with what roblox allows us to do
make your scripts efficient and thinkmore about security if someone manages to exploit your FE place
FE doesn't stop exploits, especially when your code is insecure |
|
|
Although, joking aside, you can't get their IP. What's his face is right
|
|
OzzyFinJoin Date: 2011-06-07 Post Count: 3600 |
make a bot that automatically joins every server, gets ips somehow and uses an exploit to close the client's connection
?????
|
|
|
I don't know how to make an anti exploit script as I don't understand how exploits work |
|
|
"I don't know how to make an anti exploit script as I don't understand how exploits work"
That was redundant
|
|
|
llaserxJoin Date: 2011-12-10 Post Count: 53069 |
|
|
|
there is actually a wiki on this,
using service 'NetworkServer'
it's a old technique tho |
|
|
That is no longer possible. |
|
sycipsJoin Date: 2011-03-21 Post Count: 1368 |
Getting someone's IP has been possible in the past, but isn't possible anymore (without using your own extern server and the HTTP service).
The known method to get the player's IP, is through the following code:
local ClientReplicator = game:GetService("NetworkClient").ClientReplicator
local IPAdress = ClientReplicator.MachineAdress
This property is locally secured, which means that it's only accessable by CoreScripts or the Command Bar.
Another solution for your problem is to create a better in-game anti-hack script. So when hackers change things in your game, you can change it back. Or create a ban system so you can ban players by userid/username. There's no other way!
Good luck with scripting! :D
~sycips~ |
|
|
how could i use http service to do it? |
|
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
Just add all of his alts and accounts to a ban list. And keep adding any new alts he created. He's bound to stop at some point. |
|
|
It would help if roblox gave every system machine a number on their site that registers to the original account created on roblox using IP adresses.
This way any account created by the same IP adress/machine will automatically result in being tied to that original account.
|
|
|
You cannot IP Ban on ROBLOX. You don't have enough control to do that. |
|
|
game.Players.PlayerAdded:connect(function(player)
if player.AccountAge < 10 then player:Kick("You are unworthy of playing this game. Come back in " .. 10 - player.AccountAge .. " days to play")
end
end)
|
|
|
"This way any account created by the same IP adress/machine will automatically result in being tied to that original account."
Two problems.
• I suggested this before, use a hashed version of the IP (One that we care about encoding, but don't give a crap about decoding it again) Someone said that of course hashed IPs are easily obtainable since it's not like [Insert reason they didn't give]
• Most IPs are dynamic anyways, and you could probably just ask your ISP to change it for you (Of course, they could get suspicious, but idk too much about this) |
|
|
62GB, I don't know his alts unfortunately, but he has confirmed that he is using alts to exploit |
|
|
Same thing here someone keeps entering my game and crashing servers.
Banned his main.
He started using guests.
Added a age limit script.
He started using alts.
The exploitlogs always says its the same command ">namehere<:crash"
Raise your DONGERS (ง ° ͜ ʖ °)ง?!?!? -Pixel Vibez |
|
|
Make a chatted script that automatically crashes him when he tries to crash a player. You can also implement a server monitoring service which enables admins to come and fix an issue.
|
|
cntkillmeJoin Date: 2008-04-07 Post Count: 49450 |
Alright I got one working with a bug but I don't wanna get scammed, can you pay half first, I give, pay other half? |
|