1
0
mirror of https://github.com/ineedbots/iw5_bot_warfare.git synced 2025-06-28 23:21:51 +00:00

hacking but working

This commit is contained in:
ineedbots
2021-05-08 20:21:17 -06:00
parent 6b3e3bea70
commit c7003a93c1
9 changed files with 2772 additions and 153 deletions

View File

@ -883,6 +883,9 @@ load_waypoints()
{
switch(mapname)
{
case "mp_dome":
level.waypoints = maps\mp\bots\waypoints\dome::Dome();
break;
default:
//maps\mp\bots\waypoints\_custom_map::main(mapname);
break;
@ -946,6 +949,8 @@ getMapName(mapname)
{
switch(mapname)
{
case "mp_dome":
return "Dome";
default:
return mapname;
}
@ -958,6 +963,11 @@ getGoodMapAmount()
{
switch(getdvar("mapname"))
{
case "mp_dome":
if (level.teambased)
return 8;
else
return 5;
default:
return 2;
}