diff --git a/userraw/maps/mp/bots/_bot_chat.gsc b/userraw/maps/mp/bots/_bot_chat.gsc index 57ddcc7..81f78ee 100644 --- a/userraw/maps/mp/bots/_bot_chat.gsc +++ b/userraw/maps/mp/bots/_bot_chat.gsc @@ -204,6 +204,10 @@ start_chat_watch() case "attack_vehicle": self thread bot_chat_attack_vehicle_watch( a, b, c, d, e, f, g ); 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; } } + +/* + 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; + } +}