View Single Post
Re: POD-bot back into shape.
Old
  (#463)
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: POD-bot back into shape. - 13-04-2004

Quote:
Originally Posted by someguy
Awesome, it stopped the crashing, haven't tried a custo map yet though. One last question.. admin_rcon pb jasonmode on (and I tried 1 too) doesn't work. Does admin_fun have be on? Thanks for your help!
take off the pb infront of it.
some commands don't have pb infront only a few commands do and those commands are:
"pb addbot"
"pb removebots"
"pb killbots"
"pb fillserver"
[edit]
after my inexperienced eyes look through the source code it should be
"addbot <skill> <team> <class> <name>" but at the same time what you're saying is happening shouldn't be happening..
[/edit]
[edit2]
i think i found it..
Code:
            sprintf (cmd, GetField (cmd_line, 0));
            sprintf (arg1, GetField (cmd_line, 1));
            sprintf (arg2, GetField (cmd_line, 1));
            sprintf (arg3, GetField (cmd_line, 1));
            sprintf (arg4, GetField (cmd_line, 1));
shouldn't this be
Code:
            sprintf (cmd, GetField (cmd_line, 0));
            sprintf (arg1, GetField (cmd_line, 1));
            sprintf (arg2, GetField (cmd_line, 2));
            sprintf (arg3, GetField (cmd_line, 3));
            sprintf (arg4, GetField (cmd_line, 4));
?
[/edit2]
[edit3]
its around line 2627 in dll.cpp
[/edit3]
[edit4]
Quote:
Originally Posted by SoUlFaThEr
lol spiorygon
btw its splorygon with an L

can't people see the pattern in my name?
lOwErCaSe then uPpErCaSe then lOwErCaSe then..
[/edit4]

Last edited by sPlOrYgOn; 13-04-2004 at 04:59..