• 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!

Magebomb :(

picachu

Member
Joined
Dec 2, 2007
Messages
970
Reaction score
11
Hello, there.
Have the unstatisfied players logging 500 managers ++ in my server.
:S
How can I block this?
Just gimme the code.
I can edit the sources!
Ty.
 
Oo?

go to yourserverfolder/config.lua

press ctrl+f, type:
loginProtectionPeriod
replace this line by:
loginProtectionPeriod = 10 * 1000
it's solve the magebomb problem...
all players must wait 10 secounds after login to be able to atack other player...

if the problem isn't that... need to block the managers until you've solved this problem
 
Oo?

go to yourserverfolder/config.lua

press ctrl+f, type:
replace this line by:
it's solve the magebomb problem...
all players must wait 10 secounds after login to be able to atack other player...

if the problem isn't that... need to block the managers until you've solved this problem

Sry but i dont think that it will solve his problem.

Code:
local lastLogin = 0
local timeNow = os.time()

if((lastLogin + 2) >= timeNow) then
   return FALSE
end

lastLogin = timeNow

Someone said that this didn't work for him, but i guess it works, didn't test it anyway... include that in your login.lua, it will pwn magebombers.
 
Back
Top