Checking On the Trail Monster

Sputnik1

Member
Is there any way to check with an ash command what monster I am tracking with On the Trail, since have_effect doesnt take that into consideration?
It would help so I can determine whether or not to shrug it or not if Im switching monsters.
Thanks
 

lostcalpolydude

Developer
Staff member
The ash command you want is get_property( string ), and the property you want to get is olfactedMonster. Apparently this has a value even after On the Trail wears out and only changes when you cast olfaction again, so you also need to check for the effect probably.
 

Bale

Minion
Code:
alias trailed => ashq if(have_effect($effect[On the Trail]) >0) print("Currently on the trail of: "+get_property("olfactedMonster")); else print("none", "red");

This will create a command called trailed which will act like this:


Code:
[COLOR="olive"]> trailed[/COLOR]

Currently on the trail of: blooper
 
Last edited:
Top