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

A Global Event

Stewie

Family Guy # ;3
Joined
May 3, 2010
Messages
786
Reaction score
12
Location
TV
Hello,

I Would like each 1 hour execute this command on database:

SQL:
UPDATE `players` SET `loss_mana` = 0, `loss_skills` = 0, `loss_containers` = 0, `loss_items` = 0;

Im using TFS 0.3.6

Thanks,
Stewie
 
LUA:
function onThink(interval, lastExecution, thinkInterval)
        db.executeQuery("UPDATE `players` SET `loss_mana` = 0, `loss_skills` = 0, `loss_containers` = 0, `loss_items` = 0;")
        return true
end
 
Back
Top