Untitled

 avatar
unknown
plain_text
2 years ago
1.8 kB
4
Indexable
local healingSpell = 'exura med ico'
local hpPercent = 92
macro(50, "Med Ico 92%",  function()
  if (hppercent() <= hpPercent) then
    say(healingSpell) 
  end
end)



----
local hpId = 23375
local hpPercent = 80
macro(200, "EK HP 80%",  function()
  if (hppercent() <= hpPercent) then
    usewith(hpId, player) 
  end
end)

---
local manaId = 237
local manaPercent = 50
macro(200, "EK MP 50%",  function()
  if (manapercent() <= manaPercent) then
    usewith(manaId, player) 
  end
end)


local utito = macro(2500, "Exori Ico", function()
         if g_game.isAttacking() then
              saySpell('Exori Ico', 200)
          end
end)

----
local utito = macro(2500, "Exori Gran Ico", function()
         if g_game.isAttacking() then
              saySpell('Exori Gran Ico', 200)
          end
end)

----
local utito = macro(2500, "Exori Gran", function()
         if g_game.isAttacking() then
              saySpell('Exori Gran', 200)
          end
end)

----
local utito = macro(2500, "Exori", function()
         if g_game.isAttacking() then
              saySpell('Exori', 200)
          end
end)




----

macro(1000, "Exeta res", function()
if g_game.isAttacking() then
say("exeta res")
delay(900)
end
end)



macro(3000, "Exeta amp res", function()
if g_game.isAttacking() then
say("exeta amp res")
delay(3000)
end
end)



macro(350, "Utito Tempo", function()
  if not hasPartyBuff () then
    say("Utito Tempo")
  end
end)



macro(350, "Utamo Tempo", function()
  if not hasPartyBuff () then
    say("Utamo Tempo")
  end
end)



----


macro(500, "Auto Haste", nil, function() if not hasHaste() and storage.autoHasteText:len() > 0 then if saySpell(storage.autoHasteText) then delay(5000) end end end) addTextEdit("autoHasteText", storage.autoHasteText or "utani tempo hur", function(widget, text) storage.autoHasteText = text end)
Editor is loading...
Leave a Comment