mirror of
https://github.com/ineedbots/iw4_bot_warfare.git
synced 2025-04-22 05:55:42 +00:00
equ, nade and jav chatter
This commit is contained in:
parent
9984878a25
commit
27422d01a5
@ -216,6 +216,18 @@ start_chat_watch()
|
||||
case "follow":
|
||||
self thread bot_chat_follow_watch( a, b, c, d, e, f, g );
|
||||
break;
|
||||
|
||||
case "equ":
|
||||
self thread bot_chat_equ_watch( a, b, c, d, e, f, g );
|
||||
break;
|
||||
|
||||
case "nade":
|
||||
self thread bot_chat_nade_watch( a, b, c, d, e, f, g );
|
||||
break;
|
||||
|
||||
case "jav":
|
||||
self thread bot_chat_jav_watch( a, b, c, d, e, f, g );
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1562,7 +1574,7 @@ bot_chat_tube_watch( state, tubeWp, tubeWeap, d, e, f, g )
|
||||
/*
|
||||
bot_chat_killstreak_watch( streakName, b, c, d, e, f, g )
|
||||
*/
|
||||
bot_chat_killstreak_watch( state, streakName, c, d, e, f, g )
|
||||
bot_chat_killstreak_watch( state, streakName, campSpot, d, e, f, g )
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
@ -1695,6 +1707,9 @@ bot_chat_killstreak_watch( state, streakName, c, d, e, f, g )
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case "camp":
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -2034,3 +2049,82 @@ bot_chat_follow_watch( state, player, time, d, e, f, g )
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
bot_chat_equ_watch
|
||||
*/
|
||||
bot_chat_equ_watch( state, wp, weap, d, e, f, g )
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
switch ( state )
|
||||
{
|
||||
case "go":
|
||||
switch ( randomInt( 1 ) )
|
||||
{
|
||||
case 0:
|
||||
self BotDoChat( 25, "going to place a " + getBaseWeaponName( weap ) );
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case "start":
|
||||
switch ( randomInt( 1 ) )
|
||||
{
|
||||
case 0:
|
||||
self BotDoChat( 25, "placed a " + getBaseWeaponName( weap ) );
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
bot_chat_nade_watch
|
||||
*/
|
||||
bot_chat_nade_watch( state, wp, weap, d, e, f, g )
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
switch ( state )
|
||||
{
|
||||
case "go":
|
||||
switch ( randomInt( 1 ) )
|
||||
{
|
||||
case 0:
|
||||
self BotDoChat( 25, "going to throw a " + getBaseWeaponName( weap ) );
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case "start":
|
||||
switch ( randomInt( 1 ) )
|
||||
{
|
||||
case 0:
|
||||
self BotDoChat( 25, "threw a " + getBaseWeaponName( weap ) );
|
||||
break;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
bot_chat_jav_watch
|
||||
*/
|
||||
bot_chat_jav_watch( state, wp, c, d, e, f, g )
|
||||
{
|
||||
self endon( "disconnect" );
|
||||
|
||||
switch ( state )
|
||||
{
|
||||
case "go":
|
||||
break;
|
||||
|
||||
case "start":
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user