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

Storage problem

Activity

Member
Joined
Apr 7, 2016
Messages
182
Reaction score
22
Hi, I'm trying to make quest that give you 2 special monster outfit by storage and when i trying to use the chest i just get squirrel outfit and cult one doesn't appear, i don't know what is the problem, May someone help me please?
setPlayerStorageValue(cid,19996,1)
setPlayerStorageValue(cid,19999,1)
and i've added
Code:
  <outfit id="50" premium="yes" quest=19996"">
     <list gender="0" lookType="274" name="Squirrel"/>
     <list gender="1" lookType="274" name="Squirrel"/>
   </outfit>
Code:
  <outfit id="50" premium="yes" quest=19999"">
     <list gender="0" lookType="174" name="Cult"/>
     <list gender="1" lookType="174" name="Cult"/>
   </outfit>
Using Tfs 3884
 
Sorry, i know it and i did it like you said and this mess because i just wrote it now its already quest="19996"
So, it's fixed?

If not, try this.
Code:
<outfit id="50" premium="yes" storageId="19996" storageValue="1">
<list requirement="none" gender="0" lookType="274" name="Squirrel"/>
<list requirement="none" gender="1" lookType="274" name="Squirrel"/>
</outfit>

Also make sure u have the storage, check it directly on database because this seems very weird to me, should work without problems even with quest on tag
 
So, it's fixed?

If not, try this.
Code:
<outfit id="50" premium="yes" storageId="19996" storageValue="1">
<list requirement="none" gender="0" lookType="274" name="Squirrel"/>
<list requirement="none" gender="1" lookType="274" name="Squirrel"/>
</outfit>

Also make sure u have the storage, check it directly on database because this seems very weird to me, should work without problems even with quest on tag
I'm not home atm, but you sure that it will work? because as i told you before that i made storages like i show you and still get 1 outfit only not 2 of them i mean i can get the outfit without any problems but i claimed one outfit only not 2 of them.
 
Back
Top