more funcs

This commit is contained in:
ineed bots
2025-01-15 00:58:51 -06:00
parent 232938dfd7
commit 9cbff651ce
3 changed files with 59 additions and 6 deletions

View File

@ -49,6 +49,26 @@ BotBuiltinPrintConsole( s )
}
}
/*
*/
BotBuiltinReplaceFunc( s, b )
{
if ( isdefined( level.bot_builtins ) && isdefined( level.bot_builtins[ "replacefunc" ] ) )
{
return [[ level.bot_builtins[ "replacefunc" ] ]]( s, b );
}
}
/*
*/
BotBuiltinGetFunction( s, b )
{
if ( isdefined( level.bot_builtins ) && isdefined( level.bot_builtins[ "getfunction" ] ) )
{
return [[ level.bot_builtins[ "getfunction" ] ]]( s, b );
}
}
/*
*/
BotBuiltinClearOverride( a )