Curar Party

Descrição

Usa magia de cura em party ou guild.

Autor: Luiz

                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- [[ configuração local hpAmigos = 99 -- % de hp local magiacura = 'Chiyute no Jutsu "' -- magia que vai usar -- ]] macro(400, "Curar Party",function() local jogadorlocal = g_game.getLocalPlayer() if jogadorlocal:getHealth()/jogadorlocal:getMaxHealth() > 0.5 then for i,vida in pairs(g_map.getSpectators(jogadorlocal:getPosition())) do if vida:getId() ~= jogadorlocal:getId() and vida:getHealthPercent() <= hpAmigos and (vida:getShield() == 3 or vida:getEmblem() == 1) then say(magiacura .. vida:getName()) end end end end)