Created
January 30, 2022 19:45
-
-
Save ndsamuelson/8401249336763fac0d9bbad5d758afb1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function serpentlockprio() | |
vcombo = {nil} | |
--Primary Venom Selection | |
if affstrack.score.weariness > 24 and affstrack.score.impatience > 24 and affstrack.score.asthma > 24 then | |
if affstrack.score.slickness < 100 then | |
table.insert(vcombo,"gecko") | |
end | |
if affstrack.score.anorexia < 100 then | |
table.insert(vcombo,"slike") | |
end | |
if affstrack.score.weariness < 100 then | |
table.insert(vcombo,"vernalius") | |
end | |
if affstrack.score.recklessness < 99 then | |
table.insert(vcombo,"eurypteria") | |
end | |
if affstrack.score.paralysis<100 then | |
table.insert(vcombo,"curare") | |
end | |
if affstrack.score.voyria < 100 then | |
table.insert(vcombo, "voyria") | |
end | |
if affstrack.score.stupidity < 100 then | |
table.insert(vcombo, "aconite") | |
end | |
end | |
if affstrack.score.paralysis<100 then | |
table.insert(vcombo,"curare") | |
end | |
if affstrack.score.asthma<50 then | |
table.insert(vcombo,"kalmia") | |
end | |
if affstrack.score.addiction<100 then | |
table.insert(vcombo,"vardrax") | |
end | |
if affstrack.score.weariness < 100 then | |
table.insert(vcombo,"vernalius") | |
end | |
if affstrack.score.clumsiness<50 then | |
table.insert(vcombo,"xentio") | |
end | |
--if affstrack.score.anorexia < 100 then | |
-- table.insert(vcombo,"slike") | |
--end | |
if affstrack.score.slickness < 100 then | |
table.insert(vcombo,"gecko") | |
end | |
--if affstrack.score.nausea<100 then | |
-- table.insert(vcombo,"euphorbia") | |
--end | |
if affstrack.score.darkshade<100 then | |
table.insert(vcombo,"darkshade") | |
end | |
--if affstrack.score.sensitivity<49 then | |
-- table.insert(vcombo,"prefarar") | |
--end | |
--if affstrack.score.stupidity<49 then | |
-- table.insert(vcombo,"aconite") | |
--end | |
--if affstrack.score.dizziness<100 then | |
-- table.insert(vcombo,"larkspur") | |
--end | |
if affstrack.score.impatience > 50 and affstrack.score.asthma > 50 and affstrack.score.slickness > 50 and affstrack.score.anorexia > 50 and affstrack.score.weariness > 50 and affstrack.score.recklessness > 50 then | |
cecho("\n<green>===================== TARGET LOCKED MOVE ON =====================================") | |
--expandAlias("dd") | |
--send("execute " ..target) | |
end | |
if affstrack.score.asthma >49 and affstrack.score.clumsiness> 49 and not targsnapped then | |
timetosnap = true | |
cecho("\n<green:blue>TIME TO SNAP!!! TIME TO SNAP!!!") | |
expandAlias("snap") | |
vcombo = {"gecko","slike"} | |
send("cq all`dstab " .. target .. " slike gecko") | |
send("cq all`dstab " .. target .. " curare vernalius") | |
--timetosnap = false | |
--svo.boxDisplay("SNAP NOW!") | |
targsnapped = true | |
timetosnap = false | |
else | |
timetosnap = false | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment