Is there a property that tracks whether the Massive Ziggurat is cleared of vines?

Properties questL11Business, questL11Curses, questL11Doctor, and questL11Spare track whether vines have been cleared from each of the four Hidden City Shrines (set to "unstarted" before the Shrines are cleared, and "started" once it's done).

Is there a similar way to tell whether the Ziggurat has been de-vined? questL11Worship is "step3" once the Hidden City is discovered, and "step4" only once the stone spheres are acquired.
 

Bale

Minion
There isn't a property, but it is quite easy for a scripter to determine that based on the combat queue. Like this:

Code:
if($location[A Massive Ziggurat].combat_queue.contains_text("dense liana; dense liana; dense liana"))
   print("The Ziggurat has been unlocked");
else
   print("You need to kill more liana at the Ziggurat.");
 
There isn't a property, but it is quite easy for a scripter to determine that based on the combat queue. Like this:

Code:
if($location[A Massive Ziggurat].combat_queue.contains_text("dense liana; dense liana; dense liana"))
   print("The Ziggurat has been unlocked");
else
   print("You need to kill more liana at the Ziggurat.");

That works perfectly for my use. Thanks, Bale!
 
Top