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

Door disappear..

sumpen

esf
Joined
Oct 16, 2009
Messages
21
Reaction score
0
Location
sweden
Like the title! When people open some house door.. the door disappear.. What should I do??
 
Add an action id to the door which you want to get removed.
Go into the folder actions, scripts and open the file door.xml

Then add a code like this:
Code:
	if item.actionid == 123456789 then		--123456789 change to your used action id
		doRemoveItem(getTileItemById(fromPosition, 1111).uid, 1)	--1111 change to door id
	end

edit: Seems I understood you wrong. Your doors are dissapearing which you dont want to?
Still check the door.xml in actions.
 
Last edited:
Back
Top