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

Furniture Bug on TFS 0.4 and 0.3.7 ( any help ) ?

mRefaat

Marketing and Coding
Joined
Jan 18, 2014
Messages
861
Solutions
3
Reaction score
148
Location
Egypt
Hi,

I found this bug in TFS 0.3.7 rev5916 and in TFS 0.4 rev 3777 too.

Some of furniture kit when you use it in the house not transform to the item on the screen but when u make look on it it says the name of item and after relog u find it transformed to the item , let me explain using images .

1- Before use of the kit.
opw5.jpg


2- During use of kit.
utjql.jpg


3- After use of kit.
ihsur.jpg


4- After relog.
1e3vp.jpg



Any info about this?

--------------
Keep in your mind there is wrong in LUA script of kit about names of kits as it ( armor rack kit and give you weapon rack ) that is not the problem.
 
I think you have bad items.xml On your
Decay to
try search ItemID your item 6114 and look what say or paste your items.xml in
http://pastebin.com/

and give me your link

Code:
    <item id="6114" article="a" name="armor rack kit">
        <attribute key="description" value="Use it in your house to construct an armor rack."/>
        <attribute key="weight" value="3500"/>
    </item>

but i think problem not with decay to as it is an action file.
if u understand as it a problem with name (it say it give u item and when use give u another item) , that's is not the problem as it is easy to fix.

The problem is ( the item no transform on ur screen till you relog or go away that place then come back ).

hope you understand what i mean.
 
data/actions/scripts/other/constructionkits.lua

Change
Code:
doTransformItem(item.uid, CONSTRUCTIONS[item.itemid])
To
Code:
doRemoveItem(item.uid)
doCreateItem(CONSTRUCTIONS[item.itemid], 1, toPosition)
Thanks , It works now well. :)
 
Back
Top