Spawn if alive
Posted: Thu Dec 27, 2012 12:03 am
How can I make a hidden pressure plate activate a spawner only if another monster is alive?
Official Legend of Grimrock Forums
https://mail.almosthumangames.com/forum/
https://mail.almosthumangames.com/forum/viewtopic.php?t=4647
Code: Select all
function isAlive()
if findEntity("skeleton_warrior_1") ~= nil then
spawner_1:activate()
end
end