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

Vocation Outfit

Mithaz

Nightimp Mapper/Scripter
Joined
Nov 7, 2007
Messages
120
Reaction score
1
Location
Sweden
I have tested to use my DB and set the characters StorageID and the i have set a storage in the outfit.xml
But it dont works for me. Have i missed something?

an exampel how i edited the outfit.xml
PHP:
	<outfit id="9" storage="26000">
		<list gender="0" lookType="148" name="Druid"/>
		<list gender="1" lookType="144" name="Druid"/>
	</outfit>

And in the databas i added the player_id, and the key 26000 and value 1.
 
PHP:
	<outfit id="9" quest="26000">
		<list gender="0" lookType="148" name="Druid"/>
		<list gender="1" lookType="144" name="Druid"/>
	</outfit>
or if you want set custom value (not 1):
PHP:
	<outfit id="9" storageId="26000" storageValue="1">
		<list gender="0" lookType="148" name="Druid"/>
		<list gender="1" lookType="144" name="Druid"/>
	</outfit>
 
@Cykotitan : Thanks alot realy helped me on the right direction!

@PhoOwned : Hmm, Going to check out that storageID / storageValue version when i come home.
 
Back
Top