Feature - Implemented Wart Dinsey tracking

Darzil

Developer
I didn't add this as there are many once per ascension monsters we don't track, although I guess most of those are tracked by quest progress.
 

ckb

Minion
Staff member
Yes - lots of the other once-per stuff can be tracked or inferred from the quest log. But there is no quest log entry for Wart Dinsey.
If this is not recommended, I can add one myself I suppose, by writing a preference in an after-adventure script or something.
 

Theraze

Active member
Easy. Move the checks as you prefer to make things run faster. Probably easiest to move the get_property check to the end, since that's just a sanity check and shouldn't be needed, but...
Code:
if (get_property("lastWartDinseyVictory").to_int() != my_ascensions() && last_monster() == $monster[wart dinsey] && run_combat().contains_text("WINWINWIN")) set_property("lastWartDinseyVictory", my_ascensions());
 
Top