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

TFS 1.X+ Block all spells on no logout zone or block cast spell function

Tibia Idle

Premium User
Premium User
Joined
Nov 23, 2023
Messages
172
Reaction score
25
Hi. Is it possible to simply block the casting of spells in the no logout zone or pz?
 
Lua:
function onCastSpell(cid, var)
local player = Player(cid)
if Tile(player:getPosition()):hasFlag(TILESTATE_PROTECTIONZONE) then
player:sendCancelMessage("This action is not permitted in a protection zone.")
    return false
    
end
    return doCombat(cid, combat, var)
end
 
Back
Top