Ir para conteúdo
  • 0

Script De Teleport Quando Ganha Storage


nbb147

Pergunta

galera alguem mim ajuda com esse script, ele funciona da seguinte forma ele teporta o player quando ele matar certo monstro, eu quero modificar ele para quando o player receber certa storage ele ser teleportado, abaixo o script:

 

 

 

function onDeath(cid, corpse, deathList)

local Ppos,monstName = {x = 3114, y = 3049, z = 7},"Mizuki"

if isMonster(cid) and string.lower(getCreatureName(cid)) == string.lower(monstName) then

for _, check in pairs(deathList) do

if isPlayer(check) then

doTeleportThing(check, Ppos)

end

end

end

return true

end

Link para o comentário
Compartilhar em outros sites

Posts Recomendados

  • 0

acho que não, mas em todo caso

 

function onDeath(cid, corpse, deathList)
local pos, monstName = {x = 3114, y = 3049, z = 7}, "Mizuki"
local storage = 3939
if isMonster(cid) and string.lower(getCreatureName(cid)) == string.lower(monstName) then
       for _, pid in pairs(deathList) do
               if isPlayer(pid) then
                        doTeleportThing(pid, pos)
                                setPlayerStorageValue(pid, storage, 1)
                                          end
                                       end
                                       return true
                               end
         return true
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...