|
|
|
@ -68,13 +68,13 @@ BOOL skin_used[MAX_SKINS] = {
@@ -68,13 +68,13 @@ BOOL skin_used[MAX_SKINS] = {
|
|
|
|
|
const char *bot_skins[MAX_SKINS] = { |
|
|
|
|
"barney", "gina", "gman", "gordon", "helmet", |
|
|
|
|
"hgrunt", "recon", "robo", "scientist", "zombie", |
|
|
|
|
"putin"}; |
|
|
|
|
"huylo"}; |
|
|
|
|
|
|
|
|
|
// store the player names for each of the models...
|
|
|
|
|
const char *bot_names[MAX_SKINS] = { |
|
|
|
|
"Barney", "Gina", "G-Man", "Gordon", "Helmet", |
|
|
|
|
"H-Grunt", "Recon", "Robo", "Scientist", "Zombie", |
|
|
|
|
"Putin"}; |
|
|
|
|
"Huylo"}; |
|
|
|
|
|
|
|
|
|
// how often (out of 1000 times) the bot will pause, based on bot skill
|
|
|
|
|
float pause_frequency[5] = {4, 7, 10, 15, 20}; |
|
|
|
@ -231,9 +231,9 @@ void BotCreate(const char *skin, const char *name, const char *skill)
@@ -231,9 +231,9 @@ void BotCreate(const char *skin, const char *name, const char *skill)
|
|
|
|
|
if (IS_DEDICATED_SERVER()) |
|
|
|
|
printf("use barney, gina, gman, gordon, helmet, hgrunt,\n"); |
|
|
|
|
UTIL_ClientPrintAll( HUD_PRINTNOTIFY, |
|
|
|
|
" recon, robo, scientist, zombie or putin\n"); |
|
|
|
|
" recon, robo, scientist, zombie or huylo\n"); |
|
|
|
|
if (IS_DEDICATED_SERVER()) |
|
|
|
|
printf(" recon, robo, scientist, zombie or putin\n"); |
|
|
|
|
printf(" recon, robo, scientist, zombie or huylo\n"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|