replace this line by:loginProtectionPeriod
it's solve the magebomb problem...loginProtectionPeriod = 10 * 1000
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
local lastLogin = 0
local timeNow = os.time()
if((lastLogin + 2) >= timeNow) then
return FALSE
end
lastLogin = timeNow