bot_chat_follow_threat_watch

This commit is contained in:
ineed bots 2022-04-18 16:02:41 -06:00
parent 5f44a7b455
commit 7a9e28f03d

View File

@ -204,6 +204,10 @@ start_chat_watch()
case "attack_vehicle": case "attack_vehicle":
self thread bot_chat_attack_vehicle_watch( a, b, c, d, e, f, g ); self thread bot_chat_attack_vehicle_watch( a, b, c, d, e, f, g );
break; break;
case "follow_threat":
self thread bot_chat_follow_threat_watch( a, b, c, d, e, f, g );
break;
} }
} }
} }
@ -1897,3 +1901,20 @@ bot_chat_attack_vehicle_watch( state, vehicle, rocketAmmo, d, e, f, g )
break; break;
} }
} }
/*
bot_chat_follow_threat_watch( a, b, c, d, e, f, g )
*/
bot_chat_follow_threat_watch( state, threat, c, d, e, f, g )
{
self endon( "disconnect" );
switch ( state )
{
case "start":
break;
case "stop":
break;
}
}