Skip to content

Commit

Permalink
[bigshot] v5/7/4 adjust loop delay for efury and tether
Browse files Browse the repository at this point in the history
  • Loading branch information
Deysh committed Jan 22, 2025
1 parent 415c8db commit d3012b7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions scripts/bigshot.lic
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
contributors: SpiffyJr, Tillmen, Kalros, Hazado, Tysong, Athias, Falicor, Deysh, Nisugi
game: Gemstone
tags: hunting, bigshot, combat
version: 5.7.3
version: 5.7.4
required: Lich >= 5.5.0, infomon >= 1.18.11
Setup Instructions: https://gswiki.play.net/Script_Bigshot
Expand All @@ -17,6 +17,8 @@
Version Control:
Major_change.feature_addition.bugfix
v5.7.4 (2025-01-22)
- adjust loop delay for efury and tether
v5.7.3 (2025-01-20)
- added command tether to have spell 706 wait until completion
- update to efury command
Expand Down Expand Up @@ -4221,10 +4223,10 @@ class Bigshot
break if should_flee?
break if npc.status =~ /dead|gone/
break unless GameObj.targets.any? { |s| s.id == npc.id }
break if line =~ complete_line
break if reget(50).any? { |line| line =~ complete_line }
break if line =~ /The evanescent shield shrouding .* flares to life and absorbs the essence of the spell, dissipating it harmlessly\./
stand unless standing?
sleep(0.01)
sleep(0.5)
}
end

Expand Down Expand Up @@ -4649,9 +4651,9 @@ class Bigshot
break if should_flee?
break if npc.status =~ /dead|gone/
break unless GameObj.targets.any? { |s| s.id == npc.id }
break if line =~ complete_line
break if reget(50).any? { |line| line =~ complete_line }
stand unless standing?
sleep(0.01)
sleep(0.5)
}
end

Expand Down

0 comments on commit d3012b7

Please sign in to comment.