This commit is contained in:
ineed bots 2023-07-09 18:55:50 -06:00
parent 0ece26e9f8
commit 7415e184d1

View File

@ -687,25 +687,28 @@ watchBotDebugEvent()
if ( GetDvarInt( "bots_main_debug" ) >= 2 )
{
big_str = "Bot Warfare debug: " + self.name + ": " + msg + ": " + str;
big_str = "Bot Warfare debug: " + self.name + ": " + msg;
if ( isDefined( str ) && isString( str ) )
big_str += ", " + str;
if ( isDefined( b ) && isString( b ) )
big_str += ": " + b;
big_str += ", " + b;
if ( isDefined( c ) && isString( c ) )
big_str += ": " + c;
big_str += ", " + c;
if ( isDefined( d ) && isString( d ) )
big_str += ": " + d;
big_str += ", " + d;
if ( isDefined( e ) && isString( e ) )
big_str += ": " + e;
big_str += ", " + e;
if ( isDefined( f ) && isString( f ) )
big_str += ": " + f;
big_str += ", " + f;
if ( isDefined( g ) && isString( g ) )
big_str += ": " + g;
big_str += ", " + g;
Print( big_str );
}
@ -749,8 +752,6 @@ getConeDot( to, from, dir )
return vectordot( dirToTarget, forward );
}
/*
custom movement stuff
*/