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

Teleport Scroll

MindFreak

Titanium Staff
Joined
Jan 18, 2009
Messages
59
Reaction score
0
Right Click - Teleported To Special Cordinates.
If i have battle mark, Il have to wait untill its gone.
Hope you understanding, Thanks in advance.
 
Here you go:

PHP:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if hasCondition(cid, CONDITION_INFIGHT) == FALSE then
		local telePos = {x=149 , y=388 , z=7}
		doTeleportThing(cid, telePos)
		doSendMagicEffect(getPlayerPosition(cid), 10)
		doSendMagicEffect(telePos, 10)
		doPlayerSendTextMessage(cid, 22, "You got teleported!")
	else
		doPlayerSendTextMessage(cid, 22, "You can not teleport while in fight!")
	end
	return TRUE
end

Cords are set in "local telePos"...

And this is not the section to Request Scripts!
 
Back
Top