So, I have a few props_flamebarrels here and I want them to trigger a rumble when they are shot down.
But it doesn’t work. The rumble works perfectly fine as I tried it with spawn{ }.
Here’s my script:
barrel
{
activate
{
trigger rumble rumblestart
}
}
rumble
{
trigger rumblestart
{
wait 2000
alertentity rumble
trigger rumble rumbleloop
}
trigger rumbleloop
{
wait random 1100 3000
alertentity rumble
trigger rumble rumbleloop
}
}
I have tried it with death, activate and activate allies. Nothing works 
Is there any event which describes this situation? Or does props_flamebarrel have no events, as it’s not listed in this list?
If it doesn’t, how can I trigger the rumble with these barrels the easiest way?




