Skip to content

Commit

Permalink
have jill helper function
Browse files Browse the repository at this point in the history
  • Loading branch information
Alium58 committed Oct 7, 2023
1 parent 40343c5 commit d473daf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE/scripts/autoscend/autoscend_header.ash
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,7 @@ void auto_useBlackMonolith();
boolean auto_haveAugustScepter();
void auto_scepterSkills();
void auto_lostStomach();
boolean auto_haveJillOfAllTrades();

########################################################################################################
//Defined in autoscend/paths/actually_ed_the_undying.ash
Expand Down
9 changes: 9 additions & 0 deletions RELEASE/scripts/autoscend/iotms/mr2023.ash
Original file line number Diff line number Diff line change
Expand Up @@ -474,3 +474,12 @@ void auto_lostStomach(boolean force)
use_skill($skill[Aug. 16th: Roller Coaster Day!]);
}
}

boolean auto_haveJillOfAllTrades()
{
if(auto_have_familiar($familiar[Jill-of-All-Trades]))
{
return true;
}
return false;
}

0 comments on commit d473daf

Please sign in to comment.