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

Cannot use tables, lamps etc.

shisus420

New Member
Joined
Jan 20, 2017
Messages
16
Reaction score
2
Hi. I can't use items like street lamps, wall lamps, tables etc. There is no error in server command line.
Doors and sewer grates are working fine.

a5BC2iO.png


My actions.xml:

http://pastebin.com/cNF0HFZf
 
Solution
Add the following code in your actions.xml:
XML:
<action fromid="1634" toid="1641" script="other/decayto.lua" />

Go to data/actions/scripts/other/decayto.lua and inside local decayItems = { add:
LUA:
[1634] = 1635, [1635] = 1634, [1636] = 1637,
[1637] = 1636, [1638] = 1639, [1639] = 1638, [1640] = 1641, [1641] = 1640,
Add the following code in your actions.xml:
XML:
<action fromid="1634" toid="1641" script="other/decayto.lua" />

Go to data/actions/scripts/other/decayto.lua and inside local decayItems = { add:
LUA:
[1634] = 1635, [1635] = 1634, [1636] = 1637,
[1637] = 1636, [1638] = 1639, [1639] = 1638, [1640] = 1641, [1641] = 1640,
 
Solution
Add the following code in your actions.xml:
XML:
<action fromid="1634" toid="1641" script="other/decayto.lua" />

Go to data/actions/scripts/other/decayto.lua and inside local decayItems = { add:
LUA:
[1634] = 1635, [1635] = 1634, [1636] = 1637,
[1637] = 1636, [1638] = 1639, [1639] = 1638, [1640] = 1641, [1641] = 1640,

unfortunately it is not working :(

sorry, its working perfectly now!
 
Last edited:
Back
Top