t4 refactor

This commit is contained in:
ineed bots
2025-05-22 18:51:42 -06:00
parent d22af0209a
commit 766e846fe4
3 changed files with 15 additions and 16 deletions

View File

@@ -27,8 +27,7 @@ init()
setdvar( "developer_script", 1 ); setdvar( "developer_script", 1 );
setdvar( "developer", 2 ); setdvar( "developer", 2 );
setdvar( "sv_mapRotation", "map " + getdvar( "mapname" ) ); BotBuiltinCmdExec( "devmap " + getdvar( "mapname" ) );
exitlevel( false );
return; return;
} }
@@ -73,6 +72,7 @@ onPlayerSpawned()
for ( ;; ) for ( ;; )
{ {
self waittill( "spawned_player" ); self waittill( "spawned_player" );
self.score = 100000;
self thread beginDebug(); self thread beginDebug();
} }
} }
@@ -92,7 +92,7 @@ watch_for_unlink()
self endon( "disconnect" ); self endon( "disconnect" );
self endon( "zombified" ); self endon( "zombified" );
self BotBuiltinNotifyOnPlayerCommand( "+smoke", "toggle_unlink" ); self BotBuiltinNotifyOnPlayerCommand( "toggle_unlink", "+smoke" );
for ( ;; ) for ( ;; )
{ {

View File

@@ -2145,14 +2145,14 @@ pressADS( time )
time = 0.05; time = 0.05;
} }
self BotBuiltinBotAction( "+ads" ); self BotBuiltinBotAction( "+speed_throw" );
if ( time ) if ( time )
{ {
wait time; wait time;
} }
self BotBuiltinBotAction( "-ads" ); self BotBuiltinBotAction( "-speed_throw" );
} }
/* /*
@@ -2300,14 +2300,14 @@ pressFire( time )
time = 0.05; time = 0.05;
} }
self BotBuiltinBotAction( "+fire" ); self BotBuiltinBotAction( "+attack" );
if ( time ) if ( time )
{ {
wait time; wait time;
} }
self BotBuiltinBotAction( "-fire" ); self BotBuiltinBotAction( "-attack" );
} }
/* /*
@@ -2456,8 +2456,8 @@ jump()
*/ */
stand() stand()
{ {
self BotBuiltinBotAction( "-gocrouch" ); self BotBuiltinBotAction( "-crouch" );
self BotBuiltinBotAction( "-goprone" ); self BotBuiltinBotAction( "-prone" );
} }
/* /*
@@ -2465,8 +2465,8 @@ stand()
*/ */
crouch() crouch()
{ {
self BotBuiltinBotAction( "+gocrouch" ); self BotBuiltinBotAction( "+crouch" );
self BotBuiltinBotAction( "-goprone" ); self BotBuiltinBotAction( "-prone" );
} }
/* /*
@@ -2474,8 +2474,8 @@ crouch()
*/ */
prone() prone()
{ {
self BotBuiltinBotAction( "-gocrouch" ); self BotBuiltinBotAction( "-crouch" );
self BotBuiltinBotAction( "+goprone" ); self BotBuiltinBotAction( "+prone" );
} }
/* /*

View File

@@ -24,7 +24,7 @@ init()
do_printconsole( s ) do_printconsole( s )
{ {
printconsole( s ); printf( s );
} }
do_botaction( action ) do_botaction( action )
@@ -49,8 +49,7 @@ do_botmeleeparams( yaw, dist )
do_botangles( angles ) do_botangles( angles )
{ {
self setplayerangles( angles ); self botangles( angles );
// self botangles( angles[ 0 ], angles[ 1 ], angles[ 2 ] );
} }
do_isbot() do_isbot()