mirror of
https://github.com/ineedbots/iw5_bot_warfare.git
synced 2025-04-26 07:34:50 +00:00
18 lines
352 B
Plaintext
18 lines
352 B
Plaintext
#include common_scripts\utility;
|
|
#include maps\mp\_utility;
|
|
#include maps\mp\gametypes\_hud_util;
|
|
#include maps\mp\bots\_bot_utility;
|
|
|
|
main()
|
|
{
|
|
replaceFunc( maps\mp\gametypes\_missions::mayProcessChallenges, ::mayProcessChallenges );
|
|
}
|
|
|
|
mayProcessChallenges()
|
|
{
|
|
if ( self is_bot() )
|
|
return false;
|
|
|
|
return ( level.rankedMatch );
|
|
}
|