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

Lua tfs 1x spells explosão

alcapone

Member
Joined
Jan 13, 2021
Messages
246
Reaction score
19
local combat = createCombatObject()

local condition = Condition(CONDITION_OUTFIT)
condition:setParameter(CONDITION_PARAM_TICKS, 10000)
condition:setOutfit({lookType = 242}) -- rat
combat:setCondition(condition)




function onCastSpell(creature, variant)
return combat:execute(creature, variant)
end

I'm trying to create a spell for a monster it will turn the player into a creation after 6 seconds the player will explode and damage all players around and return to normal
 
Back
Top