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", 2 );
setdvar( "sv_mapRotation", "map " + getdvar( "mapname" ) );
exitlevel( false );
BotBuiltinCmdExec( "devmap " + getdvar( "mapname" ) );
return;
}
@@ -73,6 +72,7 @@ onPlayerSpawned()
for ( ;; )
{
self waittill( "spawned_player" );
self.score = 100000;
self thread beginDebug();
}
}
@@ -92,7 +92,7 @@ watch_for_unlink()
self endon( "disconnect" );
self endon( "zombified" );
self BotBuiltinNotifyOnPlayerCommand( "+smoke", "toggle_unlink" );
self BotBuiltinNotifyOnPlayerCommand( "toggle_unlink", "+smoke" );
for ( ;; )
{

View File

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