mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-03 02:24:28 +00:00
Merge pull request #1 from YGGverse/bot10-extra-skins
merge bot10-extra-skins
This commit is contained in:
commit
89e23f1439
@ -56,22 +56,25 @@ respawn_t bot_respawn[32] = {
|
|||||||
{FALSE, BOT_IDLE, "", "", "", NULL}, {FALSE, BOT_IDLE, "", "", "", NULL},
|
{FALSE, BOT_IDLE, "", "", "", NULL}, {FALSE, BOT_IDLE, "", "", "", NULL},
|
||||||
{FALSE, BOT_IDLE, "", "", "", NULL}, {FALSE, BOT_IDLE, "", "", "", NULL}};
|
{FALSE, BOT_IDLE, "", "", "", NULL}, {FALSE, BOT_IDLE, "", "", "", NULL}};
|
||||||
|
|
||||||
#define MAX_SKINS 10
|
#define MAX_SKINS 11
|
||||||
|
|
||||||
// indicate which models are currently used for random model allocation
|
// indicate which models are currently used for random model allocation
|
||||||
BOOL skin_used[MAX_SKINS] = {
|
BOOL skin_used[MAX_SKINS] = {
|
||||||
FALSE, FALSE, FALSE, FALSE, FALSE,
|
FALSE, FALSE, FALSE, FALSE, FALSE,
|
||||||
FALSE, FALSE, FALSE, FALSE, FALSE};
|
FALSE, FALSE, FALSE, FALSE, FALSE,
|
||||||
|
FALSE};
|
||||||
|
|
||||||
// store the names of the models...
|
// store the names of the models...
|
||||||
const char *bot_skins[MAX_SKINS] = {
|
const char *bot_skins[MAX_SKINS] = {
|
||||||
"barney", "gina", "gman", "gordon", "helmet",
|
"barney", "gina", "gman", "gordon", "helmet",
|
||||||
"hgrunt", "recon", "robo", "scientist", "zombie"};
|
"hgrunt", "recon", "robo", "scientist", "zombie",
|
||||||
|
"putin"};
|
||||||
|
|
||||||
// store the player names for each of the models...
|
// store the player names for each of the models...
|
||||||
const char *bot_names[MAX_SKINS] = {
|
const char *bot_names[MAX_SKINS] = {
|
||||||
"Barney", "Gina", "G-Man", "Gordon", "Helmet",
|
"Barney", "Gina", "G-Man", "Gordon", "Helmet",
|
||||||
"H-Grunt", "Recon", "Robo", "Scientist", "Zombie"};
|
"H-Grunt", "Recon", "Robo", "Scientist", "Zombie",
|
||||||
|
"Putin"};
|
||||||
|
|
||||||
// how often (out of 1000 times) the bot will pause, based on bot skill
|
// how often (out of 1000 times) the bot will pause, based on bot skill
|
||||||
float pause_frequency[5] = {4, 7, 10, 15, 20};
|
float pause_frequency[5] = {4, 7, 10, 15, 20};
|
||||||
@ -228,9 +231,9 @@ void BotCreate(const char *skin, const char *name, const char *skill)
|
|||||||
if (IS_DEDICATED_SERVER())
|
if (IS_DEDICATED_SERVER())
|
||||||
printf("use barney, gina, gman, gordon, helmet, hgrunt,\n");
|
printf("use barney, gina, gman, gordon, helmet, hgrunt,\n");
|
||||||
UTIL_ClientPrintAll( HUD_PRINTNOTIFY,
|
UTIL_ClientPrintAll( HUD_PRINTNOTIFY,
|
||||||
" recon, robo, scientist, or zombie\n");
|
" recon, robo, scientist, zombie or putin\n");
|
||||||
if (IS_DEDICATED_SERVER())
|
if (IS_DEDICATED_SERVER())
|
||||||
printf(" recon, robo, scientist, or zombie\n");
|
printf(" recon, robo, scientist, zombie or putin\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2106,4 +2109,3 @@ void CBot::BotThink( void )
|
|||||||
gpGlobals->frametime * 1000 );
|
gpGlobals->frametime * 1000 );
|
||||||
// TheFatal - END
|
// TheFatal - END
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user