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

no chest item tfs 0.3.6

mirak sebata

New Member
Joined
Dec 6, 2017
Messages
135
Reaction score
0
hi all i have this problem i cant fix it when i open chest it says..: ''You have found a reward weighing 0 oz. It is too heavy or you have not enough space". what can i do?
 
Have you tried opening it while having a backpack?
yeah but the thing is this item in the chest is only can see im map editor, it has a diffrent id then in my items xml from server maybe this is the problem or not? i added the item in items.xml from the item in rme still not work the ITEM name is Zaoan legs and its not added in movements what can i do? the problem is zaoan legs and hat also
 
Last edited:
yeah but the thing is this item in the chest is only can see im map editor, it has a diffrent id then in my items xml from server maybe this is the problem or not? i added the item in items.xml from the item in rme still not work the ITEM name is Zaoan legs and its not added in movements what can i do? the problem is zaoan legs and hat also
You need to use the itemid from items.xml, and have inventory space / armor space for it to go
 
item is in rme but i cant get it in game its diffrent id from items. xml when i put id from server i dont get it look pls when i put item from xml i dont see it in rme......
 

Attachments

Last edited:
i cant put it it gives this look blank page when i put id from items.xml
hmm..
I guess use a custom script instead?

This might work on 0.3.6, I'm not sure.
Action - Xikini's "Easy Chest System" for 0.3.7 (most likely works on 0.3.6 & 0.4 as well.)

Or you can do really basic script like this, and if the player has no cap/inventory space it drops on ground.

put AID on chest in map editor, no UID.
XML:
<action actionid="45001" event="script" value="very_simple_item_chest.lua"/>
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)   
   if getPlayerStorageValue(cid, 45001) == 1 then
       doPlayerSendCancel(cid, "Quest completed previously.")
       return true
   end
   doPlayerAddItem(cid, 11298, 1, true)
   setPlayerStorageValue(cid, 45001, 1)
   return true
end
 
hey it worked thnx dude....... but how can i add this item in shop online? i mean shop offers at my website the item doesnt show up wrong id LOL i tried 11298 in config.php doenst work LOL but i have this item in game now hehehe :D
 
Last edited:
nvm i have it in my shop but its wrong picture in shop how can i change this????? maybe znote has solution? ZAOAN LEGS< ARMOR < HELMET is wrong picture on znote aac

Id 11295, id 11298, id 11296
 

Attachments

Last edited:
Back
Top