Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1.  
  2. macro(100, "Sio Friend", function()
  3. local friend = getPlayerByName(storage.friendName)
  4. local friend1 = getPlayerByName(storage.friend1Name)
  5. if friend and friend:getHealthPercent() < 80 then
  6. say("exura sio \""..storage.friendName)
  7. delay(500)
  8. elseif friend1 and friend1:getHealthPercent() <= 80 then -- If u need more you can copy this lines
  9. say("exura sio \""..storage.friend1Name) --
  10. delay(500) --
  11. end -- And paste them between this end and the delay
  12. end)
  13. addTextEdit("friendName", storage.friendName or "Friend Name", function(widget, text)
  14. storage.friendName = text
  15. end)
  16. addLabel("Priority 1 ^ Priority 2 v", "Priority 1 ^ Priority 2 v")
  17. addTextEdit("friend1Name", storage.friend1Name or "Friend Name", function(widget, text) -- Also copy this lines
  18. storage.friend1Name = text -- If u add more just rename the Friend1Name to Friend2Name in the lines u paste
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement