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

Walk on tile and lose skull/pz?

movements.xml
Code:
<movevent type="StepIn" actionid="[COLOR="red"]XXXX[/COLOR]" event="script" value="script.lua"/>


script.lua
Lua:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
	if isPlayer(cid) then
		doRemoveCondition(cid, CONDITION_INFIGHT)
	end		
	return true
end
 
Back
Top