Advertisement
hhaos

Untitled

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