• 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 Set outfit and remove outfit

Fortera Global

Intermediate OT User
Joined
Nov 20, 2015
Messages
1,180
Solutions
2
Reaction score
117
Lua:
local playerOutfit = player:getOutfit()
playerOutfit.lookType = 35
player:setOutfit(playerOutfit, 10 * 1000)

How to set outfit and remove after 10 seconds?

tfs 1.2
 
Solution
Lua:
local condition = Condition(CONDITION_OUTFIT)
condition:setTicks(10 * 1000)
condition:setOutfit({lookType = 35})

player:addCondition(condition)
Back
Top