Question on moods

bombar

Member
So I'm trying to work more and more with moods to do some tasks, and I think I figured out somethings, however I haven't figured out others.

One of my biggest items is around when buffs refresh, correct me if I'm wrong but from what I can tell, if you have setup a buff tracker, it will recast/reuse item for that buff when the buff is down to 1 turn left.

Even if I use trigger lose_effect it switches it to run low on not when out of effect.

Is there a way to specifiy a buff in a mood to only be recast/reused when you are actually out of the buff?
 

ereinion

Member
I think you may be able to do it with an unconditional trigger?

Something like
Code:
 ashq if (have_effect($effect[whatever]) == 0) use_skill(1, $skill[source]);

-edit- That is what you put in the command box, don't put anything in the box labelled "check for".
 
Last edited:
Top