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

Level Tile And teleport tile

simkal

New Member
Joined
Jan 21, 2010
Messages
361
Reaction score
3
i need script where player need to be level 200 to walk on a tile, and be teleported to x: X y: X z: X and i swear i have used search but havnt found...
 
bumpzor
funny%20bird.jpg
 
LUA:
function onStepIn(cid, item, position, fromPosition)
	if isPlayer(cid) and getPlayerLevel(cid) >= 200 then
		doTeleportThing(cid, {x=X, y=X, z=X})
		doSendMagicEffect(position, CONST_ME_TELEPORT)
		doSendMagicEffect({x=X, y=X, z=X}, CONST_ME_TELEPORT)
	end
end
you could've made it yourself by now
 
Back
Top