Ir para conteúdo

Alavanca Que Puxa Todos


00matheus00

Posts Recomendados

data/talkactions/scripts, crie o arquivo push.lua e adicione:

function onSay(cid, _, param)
    local t = string.explode(param, ",")
    
    if not t[1] or not t[2] or not t[3] then
        doPlayerSendCancel(cid, "Você precisa dizer a posição. /push x,y,z")
        doSendMagicEffect(getThingPos(cid), 2)
        return
    end
    
    for _, v in ipairs(getPlayersOnline()) do
        if v ~= cid then
            doTeleportThing(v, {x = t[1], y = t[2], z = t[3]})
            doSendMagicEffect({x = t[1], y = t[2], z = t[3]}, CONST_ME_TELEPORT)
        end
    end
    return true
end

 

data/talkactions/talkactions.xml:

<talkaction words="/push" event="script" value="push.lua"/>

 

Exemplo de uso:

/push 160,50,7

 

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...