From 3f5cbc78d373f9e410516e9dfe792041b22be79c Mon Sep 17 00:00:00 2001 From: INeedGames Date: Fri, 29 Dec 2023 20:36:03 -0600 Subject: [PATCH] Update bots_adapter_iw4x.gsc --- scripts/bots_adapter_iw4x.gsc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/bots_adapter_iw4x.gsc b/scripts/bots_adapter_iw4x.gsc index d965a28..a0de4ef 100644 --- a/scripts/bots_adapter_iw4x.gsc +++ b/scripts/bots_adapter_iw4x.gsc @@ -12,43 +12,43 @@ init() do_printconsole( s ) { - PrintConsole( s + "\n" ); + printconsole( s + "\n" ); } do_filewrite( file, contents, mode ) { file = "scriptdata/" + file; - FileWrite( file, contents, mode ); + filewrite( file, contents, mode ); } do_fileread( file ) { file = "scriptdata/" + file; - return FileRead( file ); + return fileread( file ); } do_fileexists( file ) { file = "scriptdata/" + file; - return FileExists( file ); + return fileexists( file ); } do_botaction( action ) { - self BotAction( action ); + self botaction( action ); } do_botstop() { - self BotStop(); + self botstop(); } do_botmovement( forward, right ) { - self BotMovement( forward, right ); + self botmovement( forward, right ); } do_botmeleeparams( yaw, dist ) { - self BotMeleeParams( yaw, dist ); + self botmeleeparams( yaw, dist ); }