Ir para conteúdo

[Mod]Teleport Rune V.2


angeldoido

Posts Recomendados

Primeiro vai na pasta MOD do seu OT e cria 1 arqvuivo XML com o nome de teleport rune.xml

 

Depois coloke isso dentro...

 

<?xml version="1.0" encoding="UTF-8"?>
<mod name="teleport rune" version="1.0" author="Snokiuthu" contact="mar_cos75" enabled="yes">
<action itemid="2357" event="script" override="yes"><![CDATA[
	function onUse(cid, item, frompos, item2, topos)
local storage = 11548 -- n mexa
local exhausted = 250 -- tempo em segundos

if (getPlayerStorageValue(cid, storage) >= os.time()) then
return doPlayerSendCancel(cid, "Você tem que esperar " .. getPlayerStorageValue(cid, storage) - os.time() .. " segundos para usar novamente.")
end

local effect = 10
local message = "You were teleported to "..getTownName(getPlayerTown(cid)).." town."
local errormessage = "Sorry, you cannot use this scroll in a battle."
local town = getTownTemplePosition(getPlayerTown(cid))
---
   if getCreatureCondition(cid, CONDITION_INFIGHT) == TRUE then
return doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, errormessage)
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, message)
doTeleportThing(cid,town)
doSendMagicEffect(town,effect)
setPlayerStorageValue(cid,storage,os.time()+exhausted)
return
end
]]></action>
</mod>

 

Você pode altera o item q usa como teleporte, ali no item 2357 (so altera pra um id desponivel)

 

é isso galera vllw (:

Link para o comentário
Compartilhar em outros sites

  • 1 month later...
×
×
  • Criar Novo...