Quote:
Originally Posted by dtwoiski
Found the cause... PMB try detailnames off inside podbot.cfg
[]'s
DT
|
Yes i believe he is right even tho i have not tested...
in the BotCreate function in bot.cpp
Code:
if (g_bDetailNames)
{
if (iPersonality == 0)
sprintf (c_name, "[POD]%s (%d)", szBotNames[name_index], skill);
else if (iPersonality == 1)
sprintf (c_name, "[P*D]%s (%d)", szBotNames[name_index], skill);
else
sprintf (c_name, "[P0D]%s (%d)", szBotNames[name_index], skill);
}
else
strncpy (c_name, bot_name, 32);
should probably be:
Code:
if (g_bDetailNames)
{
if (iPersonality == 0)
sprintf (c_name, "[POD]%s (%d)", szBotNames[name_index], skill);
else if (iPersonality == 1)
sprintf (c_name, "[P*D]%s (%d)", szBotNames[name_index], skill);
else
sprintf (c_name, "[P0D]%s (%d)", szBotNames[name_index], skill);
}
else
strncpy (c_name, szBotNames[name_index], 32);
[edit]
btw biohazard...
what a f*ing mess your folder is
[/edit]
[edit2]
I will be supplying you guys with a windows and linux binary soon please wait
[/edit2]
[edit3]
My Release HERE!!
it is fixed in that one.. I tested it and it worked
[/edit3]