Advertisement
hhaos

Untitled

Jan 17th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. hh = hh or {}
  2.  
  3. hh.bite = {
  4. venoms = {
  5. addiction = "vardrax",
  6. anorexia = "slike",
  7. asthma = "kalmia",
  8. clumsiness = "xentio",
  9. crippledarm = "epteth",
  10. crippledleg = "epseth",
  11. darkshade = "darkshade",
  12. deafblind = "colocasia",
  13. disloyalty = "monkshood",
  14. dizziness = "larkspur",
  15. haemophilia = "notechis",
  16. nausea = "euphorbia",
  17. paralysis = "curare",
  18. recklessness = "eurypteria",
  19. scytherus = "scytherus",
  20. selarnia = "selarnia",
  21. sensitivity = "prefarar",
  22. shyness = "digitalis",
  23. sleep = "delphinium",
  24. slickness = "gecko",
  25. stupidity = "aconite",
  26. voyria = "voyria",
  27. weariness = "vernalius"
  28. }
  29. }
  30.  
  31. local venom = hh.bite.venoms
  32.  
  33. local function venom_select()
  34. local venom_priority = {
  35. "asthma",
  36. "stupidity",
  37. "paralysis",
  38. "weariness",
  39. "recklessness",
  40. "sensitivity"
  41. }
  42. local curse = hh.bite.curse
  43.  
  44. local function curse_select()
  45. local curse_priority = {
  46. "stupidity",
  47. "paralysis",
  48. "impatience",
  49. "weariness",
  50. "sensitivity"
  51. }
  52.  
  53.  
  54.  
  55. if affstrack.score.prone == 100 and not bitetimer then
  56. send("setalias pvp stand/dragoncurse "..target.." "..curse_select().." 1/bite "..target)
  57. send("queue addclear eqbal pvp")
  58. elseif targetlyred == 1 then
  59. send("setalias pvp stand/dragoncurse "..target.." "..curse_select().." 1/ blast "..target)
  60. send("queue addclear eqbal pvp")
  61. elseif ak.defs.shield then
  62. send("setalias pvp stand/dragoncurse "..target.." "..curse_select().." 1/ tailsmash "..target)
  63. send("queue addclear eqbal pvp")
  64. elseif affstrack.score.deaf == 100 then
  65. send("setalias pvp stand/dragoncurse "..target.." "..curse_select().." 1/dragonroar "..target)
  66. send("queue addclear eqbal pvp")
  67. elseif bstorm == false
  68. then send("setalias pvp stand/breathstorm")
  69. send("queue addclear eqbal pvp")
  70. else
  71. send("setalias pvp stand/dragon curse "..target.." "..curse_select().." 1/rend "..target.." "..venom_select().."/breathgust "..target)
  72. send("queue addclear eqbal pvp")
  73. end
  74.  
  75. end
  76. end
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement