Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function DWretri()
- --lots of work with Ksha here, he's awesome give him love
- local venom = {
- addiction = "vardrax",
- anorexia = "slike",
- asthma = "kalmia",
- clumsiness = "xentio",
- crippledarm = "epteth",
- crippledleg = "epseth",
- darkshade = "darkshade",
- deafblind = "colocasia",
- disloyalty = "monkshood",
- dizziness = "larkspur",
- haemophilia = "notechis",
- nausea = "euphorbia",
- paralysis = "curare",
- recklessness = "eurypteria",
- scytherus = "scytherus",
- selarnia = "selarnia",
- sensitivity = "prefarar",
- shyness = "digitalis",
- sleep = "delphinium",
- slickness = "gecko",
- stupidity = "aconite",
- voyria = "voyria",
- weariness = "vernalius"
- }
- local function instill_select()
- return { "shadow instill scythe with retribution" }
- end
- local function venom_select()
- local venom_priority = {
- "paralysis",
- "asthma",
- "clumsiness",
- "weariness",
- "sensitivity"
- }
- for _, aff in ipairs(venom_priority) do
- if affstrack.score[aff] < 67 then
- return venom[aff]
- end
- end
- end
- local function eqbal_select()
- if ak.defs.shield then
- return {"stand", "wield dagger", "shadow strike "..target }
- elseif affstrack.score.retribution<=50 then
- return {"stand", "wield scythe", "chrono loop", "shadow reap "..target.." "..venom_select(), "contemplate "..target }
- else
- return {"stand", "wield scythe", "shadow reap "..target.." "..venom_select(), " contemplate "..target }
- end
- end
- combined_table = table.combine(instill_select(), eqbal_select())
- send("setalias pvp "..table.concat(combined_table, "/")..";;queue add eqbal pvp")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement