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

[BUG][TFS 0.3.6] Change outfit

middley

Member
Joined
Oct 2, 2019
Messages
50
Reaction score
6
We found a bug in TFS 0.3.6, namely after using this script for otcv8 you can change into Gamemaster's outfit without any problems. Does anyone know how to block this?

Code:
 local outfit = { head = 0, body = 1, legs = 2, feet = 3, type = 143, -- outfit id auxType = 0, addons = 3, -- 1, 2, or 3 for all mount = 0, -- mount id } macro(100, "RainbowOutfit", function() outfit.head = (outfit.head + 1) % 133; outfit.body = (outfit.body + 1) % 133; outfit.legs = (outfit.legs + 1) % 133; outfit.feet = (outfit.feet + 1) % 133; setOutfit(outfit); end)

Some moderator can change script to lua bbcode?
Thanks
 
Last edited:
Any player using the script I provided can change their looktype to 75 and change to the gamemaster outfit.
 
Yes, but everyone sees the change or only themselves??

If everyone, then you need to check you change outfit server method
 
Back
Top