This commit is contained in:
Aaron Clark
2012-11-04 20:28:50 -06:00
commit 76e9a0582e
1049 changed files with 94406 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
private["_hasMeds","_med","_effect"];
_med = "ItemAntibiotic";
_hasMeds = _med in magazines player;
if (_hasMeds) then {
player removeMagazine _med;
};
//remove option
player removeAction s_player_antiobiotic;
s_player_antiobiotic = -1;
//remove infection
r_player_infected = false;
player setVariable["USEC_infected",false,true];