• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

summon teleport

Quickshot

Member
Joined
Nov 8, 2008
Messages
595
Reaction score
8
hey i need a spell that when you use it it summons a portal that teleports you to the temple and it only there for like 5 seconds and you cant use it if your sculled or atked someone
 
Last edited:
should work it, but not tested:
PHP:
config = {
	mana = 100, -- need mana to use spell
	tpTime = 5, -- how many seconds teleport working
}

function removeTeleport(x)
doRemoveItem(x[1], 1)
doSendMagicEffect(x[2], 2)
end
function onSay(cid, words, param)
    if getPlayerMana(cid) >= config.mana then
		if getCreatureCondition(cid, 1024) <= 0 then
			teleport = doCreateTeleport(1387, getPlayerMasterPos(cid), getPlayerPosition(cid))
			addEvent(removeTeleport, config.tpTime*1000, {teleport, getPlayerPosition(cid)})
		else
			doPlayerSendCancel(cid, "You cannot goto teleport because you are agressive.")
		end
    else
		doPlayerSendCancel(cid, "You don't have enough mana.")
    end
    return TRUE
end
 
It is is a talkaction.
PHP:
<talkaction words="WHATEVER YOU WANT PLAYERS TO SAY" script="thescript.lua" />
 
Back
Top