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

Easy Script

Former

New Member
Joined
Mar 30, 2009
Messages
36
Reaction score
0
Hello,

I want a script.It should work exactly like on rl tibia,i mean script on rookgard bridge to premium arena on tile (if player is not premium then teleport him out).
 
Last edited:
PHP:
 local nPos = {
x = 00,
y = 00,
z = 0
}

function onStepIn(cid, item, pos) 
	if isPlayer(cid) == TRUE then 
	if isPremium(cid) == FALSE then
	   doTeleportThing(cid, nPos) 
  end 
 end 
  return TRUE 
end
PHP:
<movevent event="StepIn" actionid="6180" script="pacc_pass1.lua" />

Rep ;)
 
Back
Top