diff --git a/userraw/maps/mp/bots/_bot.gsc b/userraw/maps/mp/bots/_bot.gsc index 91e8c4a..bc265c9 100644 --- a/userraw/maps/mp/bots/_bot.gsc +++ b/userraw/maps/mp/bots/_bot.gsc @@ -1,3 +1,10 @@ +/* + _bot + Author: INeedGames + Date: 09/26/2020 + The entry point and manager of the bots. +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util; diff --git a/userraw/maps/mp/bots/_bot_http.gsc b/userraw/maps/mp/bots/_bot_http.gsc index aafccfc..cb45a19 100644 --- a/userraw/maps/mp/bots/_bot_http.gsc +++ b/userraw/maps/mp/bots/_bot_http.gsc @@ -1,3 +1,10 @@ +/* + _bot_http + Author: INeedGames + Date: 09/26/2020 + The HTTP module to use with IW4X's gsc funcs +*/ + #include maps\mp\bots\_bot_utility; /* diff --git a/userraw/maps/mp/bots/_bot_internal.gsc b/userraw/maps/mp/bots/_bot_internal.gsc index 0b7a312..e783102 100644 --- a/userraw/maps/mp/bots/_bot_internal.gsc +++ b/userraw/maps/mp/bots/_bot_internal.gsc @@ -1,3 +1,11 @@ +/* + _bot_internal + Author: INeedGames + Date: 09/26/2020 + The interal workings of the bots. + Bots will do the basics, aim, move. +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util; diff --git a/userraw/maps/mp/bots/_bot_script.gsc b/userraw/maps/mp/bots/_bot_script.gsc index 9012d8e..14eb204 100644 --- a/userraw/maps/mp/bots/_bot_script.gsc +++ b/userraw/maps/mp/bots/_bot_script.gsc @@ -1,3 +1,11 @@ +/* + _bot_script + Author: INeedGames + Date: 09/26/2020 + Tells the bots what to do. + Similar to t5's _bot +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util; diff --git a/userraw/maps/mp/bots/_bot_utility.gsc b/userraw/maps/mp/bots/_bot_utility.gsc index e56abed..8996fcb 100644 --- a/userraw/maps/mp/bots/_bot_utility.gsc +++ b/userraw/maps/mp/bots/_bot_utility.gsc @@ -1,3 +1,10 @@ +/* + _bot_utility + Author: INeedGames + Date: 09/26/2020 + The shared functions for bots +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util; diff --git a/userraw/maps/mp/bots/_menu.gsc b/userraw/maps/mp/bots/_menu.gsc index 03b39ec..d69f472 100644 --- a/userraw/maps/mp/bots/_menu.gsc +++ b/userraw/maps/mp/bots/_menu.gsc @@ -1,3 +1,10 @@ +/* + _menu + Author: INeedGames + Date: 09/26/2020 + The ingame menu. +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util; diff --git a/userraw/maps/mp/bots/_wp_editor.gsc b/userraw/maps/mp/bots/_wp_editor.gsc index a984f43..a5c4bd8 100644 --- a/userraw/maps/mp/bots/_wp_editor.gsc +++ b/userraw/maps/mp/bots/_wp_editor.gsc @@ -1,3 +1,10 @@ +/* + _wp_editor + Author: INeedGames + Date: 09/26/2020 + The ingame waypoint editor. +*/ + #include common_scripts\utility; #include maps\mp\_utility; #include maps\mp\gametypes\_hud_util;