How to tell if summoning chamber is available?

Razorsoup

Member
Would it be this?
Code:
if (get_property("questL11Manor") == "finished") {
    //do stuff here }

Or is there another better way of checking for the summoning chamber's availability?
 

Razorsoup

Member
Don't forget to also check if you've already summoned today...But combining those two should be your best way.

Thanks. I had
if (get_property("demonSummoned") != "true") cli_execute("summon Preternatural Greed");
in my login script but Mafia would try to summon the demon if I hadn't yet unlocked the summoning chamber this ascension. It wasn't really hurting anything but was getting annoying (and probably causing an unneeded server hit) so I wanted to fix it. Added
&& get_property("questL11Manor") == "finished"
to the if statement and it seems to be working now.
 
Top