Ir para conteúdo
  • 0

Teleportar So Se For VIP


LTKReturns

Pergunta

Gostaria De Pedir Para Adicionarem A Este Script Para Somente Vips Poderem Usar

Obs: Uso Sistema De Vip By Account.

 

 

 

function onUse(cid, item, frompos, item2, topos)

 

 

local config = {

pz = "yes", -- players precisam estar em protection zone para usar? ("yes" or "no").

battle = "yes", -- players deve estar sem battle ("yes" or "no")

pos = {x=343, y=161, z=7}

}

 

 

if(config.pz == "yes") and (getTilePzInfo(getCreaturePosition(cid)) == FALSE) then

doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT,"você precisa estar em protection zone pra poder teleportar.")

return TRUE

end

 

if(config.battle == "yes") and (getCreatureCondition(cid, CONDITION_INFIGHT) == TRUE) then

doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "Você precisa estar sem battler pra poder teleportar.")

return TRUE

end

 

if item.itemid == 8979 then

doPlayerSendTextMessage(cid,22,"Você Foi Teleportado Para O Templo!")

removeOnUse = "no" -- remover quando usar ("yes" or "no")

doTeleportThing(cid,config.pos)

doSendMagicEffect(getCreaturePosition(cid), 10)

doSendMagicEffect(frompos,6)

end

return 1

end

 

 

Link para o comentário
Compartilhar em outros sites

3 respostass a esta questão

Posts Recomendados

  • 0
function onUse(cid, item, frompos, item2, topos)


local config = {
pz = "yes", -- players precisam estar em protection zone para usar? ("yes" or "no").
battle = "yes", -- players deve estar sem battle ("yes" or "no")
pos = {x=343, y=161, z=7}
}


if isVip(cid) == FALSE then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT,"voce nao e vip!.")
return TRUE
end

if(config.pz == "yes") and (getTilePzInfo(getCreaturePosition(cid)) == FALSE) then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT,"você precisa estar em protection zone pra poder teleportar.")
return TRUE
end

if(config.battle == "yes") and (getCreatureCondition(cid, CONDITION_INFIGHT) == TRUE) then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "Você precisa estar sem battler pra poder teleportar.")
return TRUE
end

if item.itemid == 8979 then
doPlayerSendTextMessage(cid,22,"Você Foi Teleportado Para O Templo!")
removeOnUse = "no" -- remover quando usar ("yes" or "no")
doTeleportThing(cid,config.pos)
doSendMagicEffect(getCreaturePosition(cid), 10)
doSendMagicEffect(frompos,6)
end
return 1
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...