Thread: Unamed Bots
View Single Post
Re: Unamed Bots
Old
  (#20)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: Unamed Bots - 28-04-2004

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]

Last edited by sPlOrYgOn; 28-04-2004 at 05:41..
  
Reply With Quote