I am trying to detect an AI player on a trigger_multiple, the command isTouching has me pulling my hair out...
I have tried this:
Code: Select all
$axis_hotspot waittill trigger
local.player = parm.other
if(local.player==$albomber)
{
iprintlnbold_noloc "Crazy Boris has called an Artillery strike... Run for cover!"
$albomber playsound boris_wohoo
}
Code: Select all
$axis_hotspot waittill trigger
local.player = parm.other
if(local.player isTouching $axis_hotspot)
{
iprintlnbold_noloc "Crazy Boris has called an Artillery strike... Run for cover!"
$albomber playsound boris_wohoo
}
Can AI actors interact with triggers?
Grassy
