knife lunge

This commit is contained in:
ineed bots
2023-12-10 05:38:44 -06:00
parent 2cba86826c
commit 56ba69b266
5 changed files with 75 additions and 9 deletions

View File

@ -7,6 +7,7 @@ init()
level.bot_builtins["botaction"] = ::do_botaction;
level.bot_builtins["botstop"] = ::do_botstop;
level.bot_builtins["botmovement"] = ::do_botmovement;
level.bot_builtins["botmeleeparams"] = ::do_botmeleeparams;
level.bot_builtins["isbot"] = ::do_isbot;
}
@ -48,6 +49,11 @@ do_botmovement( forward, right )
self BotMovement( forward, right );
}
do_botmeleeparams( yaw, dist )
{
// self BotMeleeParams( yaw, dist );
}
do_isbot()
{
return self isBot();