Skip to content

Commit

Permalink
fix: fixing assess to correctly display for fae
Browse files Browse the repository at this point in the history
  • Loading branch information
veles-achaea committed May 23, 2024
1 parent 815bc6a commit 09f6942
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions svo (aliases, triggers).xml
Original file line number Diff line number Diff line change
Expand Up @@ -16868,9 +16868,9 @@ end</script>
</regexCodePropertyList>
<Trigger isActive="yes" isFolder="no" isTempTrigger="no" isMultiline="no" isPerlSlashGOption="no" isColorizerTrigger="no" isFilterTrigger="no" isSoundTrigger="no" isColorTrigger="no" isColorTriggerFg="no" isColorTriggerBg="no">
<name>StupidityValid</name>
<script>if not commandCheck(StupeCheck) and not svo.affl.stupidity then
wrapLine(0,0) echo("\n")
svo.echof("Detected stupidity from stupidcheck")
<script>if not commandCheck(StupeCheck) and not svo.affl.stupidity then
wrapLine(0,0) echo("\n")
svo.echof("Detected stupidity from stupidcheck")
svo.valid.simplestupidity()
svo.showprompt()
svo.send_in_the_gnomes()
Expand Down Expand Up @@ -52732,7 +52732,11 @@ fg("a_darkgrey") echo(" " .. percent .. "% mana") resetFormat()</script>
<name>Bar Health on Assess</name>
<script>selectString("You glance over ", 1) replace("") deselect()

if selectString(" and see that his health", 1) ~= -1 or selectString(" and see that her health",1 ) ~= -1 then
if
selectString(" and see that his health", 1) ~= -1
or selectString(" and see that her health",1 ) ~= -1
or selectString(" and see that faes health",1 ) ~= -1
then
replace("") deselect()
end

Expand Down Expand Up @@ -54036,9 +54040,9 @@ end</script>
<name>Latency</name>
<script>local count = 0
for k, v in pairs(svo.affl) do
if k == "sandfever" or k == "mycalium" or k == "pyramides" or
if k == "sandfever" or k == "mycalium" or k == "pyramides" or
k == "flushings" or k == "rebbies" then
count = count + 1
count = count + 1
end
end
if count &gt;= 3 then
Expand Down

0 comments on commit 09f6942

Please sign in to comment.