Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
Hello!
I need script that will block mass logs, I mean that players can login after 2 seconds (1st player -> 2 seconds -> 2nd player, etc), it might be helpful for magebombs.
Please help me!
local function gtfoMC(p)
if #getPlayersByIp(getPlayerIp(p.pid)) >= p.max then
doRemoveCreature(p.pid)
end
return TRUE
end
function onLogin(cid)
addEvent(gtfoMC, 1000, {pid = cid, max = 3})
return TRUE
end
This anty mass log is in the newest TFS ;o
You must edit source if you want to create it on your distro.
(or maybe now you can do this in LUA, but i don't care about that xd).