Facebook
From jebacdisa, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 192
  1. macro(100, "Sio", function()
  2.     local friend = getPlayerByName(storage.friendName)
  3.     local friend1 = getPlayerByName(storage.friend1Name)
  4.     if friend and friend:getHealthPercent() < 80 then
  5.         say("exura heal""..storage.friendName)
  6.         delay(500)
  7.    elseif friend1 and friend1:getHealthPercent() <= 80 then -- If u need more you can copy this lines
  8.         say("exura heal""..storage.friend1Name) --
  9.         delay(500) --
  10.     end -- And paste them between this end and the delay
  11. end)
  12.   addTextEdit("friendName", storage.friendName or "Friend Name", function(widget, text)
  13.     storage.friendName = text
  14. end)
  15. addLabel("Priority 1 ^ Priority 2 v", "Priority 1 ^ Priority 2 v")
  16.   addTextEdit("friend1Name", storage.friend1Name or "Friend Name", function(widget, text)   -- Also copy this lines
  17.     storage.friend1Name = text -- If u add more just rename the Friend1Name to Friend2Name in the lines u paste
  18. end) --