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

new outfit using X item for tfs 1.2

gubbo123

New Member
Joined
Aug 15, 2017
Messages
151
Solutions
1
Reaction score
3
i find this script for 0.3.7 here,
but i'm looking this action for the forgotten server 1.2
 
simple
Lua:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
    player:addOutfit(outfit id)
    item:remove(1)
    return true
end
 
yes
Lua:
if player:getSex() == PLAYERSEX_FEMALE then
    player:addOutfit(female outfit id)
else
    player:addOutfit(male outfit id)
end
 
Back
Top