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

TFS 0.2.15 - Block some outfits

thiagostefanutt

New Member
Joined
Aug 29, 2008
Messages
5
Reaction score
0
I want now how i block some outfits it like on the Global tibia. I would like to activate only the standard outfits.
No exist something on the config.lua
I try add this tags on the outfits.xml:
<enable "0"> or <enable = "1">
<quest="xxxxx">
<storageId="XXXX" storageValue="1">

a small part exemplary of my outfits.xml:
<outfits>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Female outfits -->
<outfit type="0" looktype="136" enabled="1" name="Citizen" premium="0"/>
<outfit type="0" looktype="137" enabled="1" name="Hunter" premium="0"/>
<outfit type="0" looktype="138" enabled="1" name="Mage" premium="0"/>
<outfit type="0" looktype="139" enabled="1" name="Knight" premium="0"/>

Helpe me

Thank you
 
Zuma Master,
I've deactivated. When the player is premium account, he have all premium outfits, but i want block some of this for make a quest to conquest its
 
No, on the global server the premium standards outfits are only:
Barbarian Outfits
Druid Outfits
Nobleman/Noblewoman Outfit
Oriental Outfits
Summoner Outfits
Warrior Outfits
Wizard Outfits

remainder needs quests for obtain, i want block these

sorry, my bad english
 
Try this
LUA:
<outfit id="x" default="0">

On quest
LUA:
doPlayerAddOutfit(cid,x,1)
 
Back
Top