Preventing popup on faxing

illarion

Member
How, in ASH, do I prevent Mafia from asking for confirmation on faxing, when I already have a photocopied monster?

I'm using
Code:
faxbot($monster[knob goblin embezzler]);

I've tried assigning the result to a dummy boolean - my usual trick for "I don't care if this fails", but it doesn't seem to work in this instance.
 

lostcalpolydude

Developer
Staff member
The simplest answer is to precede this with cli_execute( "fax send" ) to get rid of the fax (after checking that you have one to get rid of, so you don't run into another stopping point). It isn't a wasted server hit, since mafia has to do that for you anyway.
 
Top