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

God Throne

sebbe hbk

Mapper - Hoster
Joined
Sep 1, 2009
Messages
164
Reaction score
3
Location
I ditt garage
Hello!

I have been searching around on the internet and on the forum for a specific script.

The script works like this...

That only gm or god can be able to walk on the throne.
So players are not able to steel your throne :D


Repp to the one who can help me :p
 
Lua:
function onStepIn(cid, item, fromPosition, itemEx, toPosition)
	if getPlayerGroupId(cid) < 3 then
		doTeleportThing(cid, fromPosition)
	end
end
 
set an actionID on the throne (like 3444) then add in movements.xml
XML:
<movevent type="StepIn" actionid="3444" event="script" value="your_script_name.lua"/>
 
Last edited:
Back
Top