1
0
mirror of https://github.com/ineedbots/iw5_bot_warfare.git synced 2025-06-28 07:01:50 +00:00

move files into mp folder

This commit is contained in:
ineed bots
2024-01-18 14:04:52 -06:00
parent d48f35bcff
commit 65e8d0629c
5 changed files with 0 additions and 0 deletions

4
scripts/mp/bots.gsc Normal file
View File

@ -0,0 +1,4 @@
init()
{
level thread maps\mp\bots\_bot::init();
}

View File

@ -0,0 +1,53 @@
init()
{
level.bot_builtins["printconsole"] = ::do_printconsole;
level.bot_builtins["filewrite"] = ::do_filewrite;
level.bot_builtins["fileread"] = ::do_fileread;
level.bot_builtins["fileexists"] = ::do_fileexists;
level.bot_builtins["botaction"] = ::do_botaction;
level.bot_builtins["botstop"] = ::do_botstop;
level.bot_builtins["botmovement"] = ::do_botmovement;
level.bot_builtins["botmeleeparams"] = ::do_botmeleeparams;
}
do_printconsole( s )
{
println( s );
}
do_filewrite( file, contents, mode )
{
file = "scriptdata/" + file;
}
do_fileread( file )
{
file = "scriptdata/" + file;
return undefined;
}
do_fileexists( file )
{
file = "scriptdata/" + file;
return false;
}
do_botaction( action )
{
self botaction( action );
}
do_botstop()
{
self botstop();
}
do_botmovement( forward, right )
{
self botmovement( forward, right );
}
do_botmeleeparams( entNum, dist )
{
// self botmeleeparams( entNum, dist );
}

4
scripts/mp/bots_chat.gsc Normal file
View File

@ -0,0 +1,4 @@
init()
{
level thread maps\mp\bots\_bot_chat::init();
}

4
scripts/mp/bots_menu.gsc Normal file
View File

@ -0,0 +1,4 @@
init()
{
level thread maps\mp\bots\_menu::init();
}

View File

@ -0,0 +1,4 @@
init()
{
level thread maps\mp\bots\_wp_editor::init();
}