• 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 moveable item?

Dankoo

Active Member
Joined
Sep 4, 2010
Messages
1,007
Reaction score
27
Hello,

Everytime I put an item on the map and don't want it to be moveable, I set an UniqueID to it.

But there is any actionID or something I can set to it, so it be unmoveable? I'm kind of tired of this "Duplicate UniqueID" message I got when I open my server lol

Thanks!
 
Then find the other unique id and remove it.

Nah, you don't get it.

When I want a item to be unmoveable, I set an UniqueID to it.

I would like to know if there is any other way of making an item unmoveable, like a chair, for example, without messing with uniqueids, items.otb or something

Maybe an actionid, something like this, dtk, any possibilities?
 
Just edit in your items.xml and set moveable value to "0" .
For example...

Code:
<item id="xxxxx" name="item name">
		<attribute key="moveable" value="0" />
</item>
 
Back
Top