Skip to content

Commit

Permalink
Updated Cleaver Location
Browse files Browse the repository at this point in the history
Cleaver location changed in KoE
  • Loading branch information
bustarhymes69 authored and Malibu-Stacey committed Nov 24, 2023
1 parent 707b407 commit b1e3f9f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions RELEASE/scripts/autoscend/iotms/mr2022.ash
Original file line number Diff line number Diff line change
Expand Up @@ -251,14 +251,21 @@ boolean auto_canUseJuneCleaver() {
boolean auto_juneCleaverAdventure()
{
if (!auto_canUseJuneCleaver() || get_property("_juneCleaverFightsLeft").to_int() > 0 || !zone_isAvailable($location[The Dire Warren]))
if (!auto_canUseJuneCleaver() || get_property("_juneCleaverFightsLeft").to_int() > 0)
{
return false;
}
if (autoEquip($slot[weapon], $item[June cleaver]))
{
return autoAdv($location[The Dire Warren]);
if (in_koe())
{
autoAdv($location[Cobb's Knob Treasury]); // arbitrarily picked always accessible location
}
else
{
autoAdv($location[The Dire Warren]);
}
}
return false;
}
Expand Down

0 comments on commit b1e3f9f

Please sign in to comment.