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

TalkAction New way of Teleport VIP

LucasFerraz

Systems Analyst
Joined
Jun 10, 2010
Messages
2,857
Reaction score
96
Location
Brazil
Player must be in RIGHT TILE to be teleported.

Example of talkaction: !teleport vipcity1
LUA:
function onSay(cid, words, param, channel)
        if getCreaturePosition(cid, { x = 500, y = 500, z = 7}) == TRUE then --where he must be
		doTeleportThing(cid, { x = 900, y = 900, z = 7 }, true) -- where he will go
                doSendMagicEffect(getCreaturePosition(cid),10)
	else
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
		doPlayerSendCancel(cid, "You aren\'t in right position to teleport.") -- fail msg
        end    
        return TRUE
end
 
Back
Top