• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

item that gives outfits

tnecniiv

scripter to be
Joined
Jan 6, 2012
Messages
298
Solutions
3
Reaction score
25
i was wondering if there is a way to have items give outfits on use
just like i want to know to disable outfits till they use that item.
 
nah you have a certain item let say bone key = soil guardian outfit the silver gives you the outfits addon 1 then golden key gives you a addon 2
but 2 problems 1 idk how to script trying my best to learn and 2 idk how to disable an outfit until a player would use the bone key
@DestinationSer
 
Do sth like this:

data/XML/outfits.xml
Code:
<outfit id="1" premium="no" quest="65001">
        <list gender="0-3" lookType="194" name="Some_name"/>
    </outfit>

And make an item script whats "onUse" adds storage Id 65001.
From now, only players with storage id 65001 higher then 0 can wear this outfit.
Repeat this process for all addons you would to disable till they use an required item.
 
Back
Top