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