• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

Walk on tile

DestinationSer

@echo off
Joined
Mar 7, 2009
Messages
2,806
Solutions
1
Reaction score
676
Ok,
You go on a tile and the required lvl to go inside the spawn is gonna be 100k, What script do i need?
Answer fast please
 
#1: This should be in the 'Requests' section..


This Is A Movement Event.
LUA:
function onStepIn(cid, item, position, fromPosition)
		if isPlayer(cid) == TRUE and getPlayerLevel(cid) > INSERTLEVELHERE then
			doTeleportThing(cid, {x = xxx, y = xxx, z = x})
				doSendMagicEffect({x = xxx, y = xxx, z = x}, 15)
					doPlayerSendTextMessage(cid, 25, 'You have been teleported.')
		end
	return true
end
 
Back
Top