mirror of
https://github.com/ineedbots/iw4_bot_warfare.git
synced 2025-04-22 22:05:44 +00:00
oops chance
This commit is contained in:
parent
864bdfa74a
commit
cbd381c8dd
@ -1444,7 +1444,7 @@ bot_use_tube_think()
|
||||
if (chance > 20)
|
||||
chance = 20;
|
||||
|
||||
if (randomInt(100) < chance)
|
||||
if (randomInt(100) > chance)
|
||||
continue;
|
||||
|
||||
tube = self getValidTube();
|
||||
@ -1566,7 +1566,7 @@ bot_use_equipment_think()
|
||||
if (chance > 20)
|
||||
chance = 20;
|
||||
|
||||
if (randomInt(100) < chance)
|
||||
if (randomInt(100) > chance)
|
||||
continue;
|
||||
|
||||
nade = undefined;
|
||||
@ -1662,7 +1662,7 @@ bot_use_grenade_think()
|
||||
if (chance > 20)
|
||||
chance = 20;
|
||||
|
||||
if (randomInt(100) < chance)
|
||||
if (randomInt(100) > chance)
|
||||
continue;
|
||||
|
||||
nade = self getValidGrenade();
|
||||
@ -1763,7 +1763,7 @@ bot_jav_loc_think()
|
||||
if (chance > 20)
|
||||
chance = 20;
|
||||
|
||||
if (randomInt(100) < chance)
|
||||
if (randomInt(100) > chance)
|
||||
continue;
|
||||
|
||||
if (!self GetAmmoCount("javelin_mp"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user