mirror of
https://github.com/projectbraf/braf_factions.git
synced 2026-06-13 15:33:29 +00:00
adjusted syntax errors
This commit is contained in:
@@ -106,8 +106,8 @@ Vests = [
|
||||
"braf_ephod_vest"
|
||||
];
|
||||
|
||||
_randomVests = selectRandom Vests
|
||||
if (((_randomVests) != "") || (!isNull(_randomVests))) then
|
||||
_randomVests = selectRandom Vests;
|
||||
if (_randomVests != "") then
|
||||
{
|
||||
_unit addVest _randomVests;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
@@ -140,20 +140,20 @@ facewears = [
|
||||
"CUP_G_WristWatch",
|
||||
"G_EyeProtectors_F"
|
||||
];
|
||||
_randomSuit = selectRandom suits
|
||||
if (((_randomSuit) != "") || (!isNull(_randomSuit))) then
|
||||
_randomSuit = selectRandom suits;
|
||||
if (_randomSuit != "") then
|
||||
{
|
||||
_unit forceAddUniform _randomSuit;
|
||||
}; // IF Statement criado por que sim
|
||||
|
||||
_randomHeadgear = selectRandom headgears
|
||||
if (((_randomHeadgear) != "") || (!isNull(_randomHeadgear))) then
|
||||
_randomHeadgear = selectRandom headgears;
|
||||
if (_randomHeadgear != "") then
|
||||
{
|
||||
_unit addHeadgear _randomHeadgear;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
|
||||
_randomFacewears = selectRandom facewears
|
||||
if (((_randomFacewears) != "") || (!isNull(_randomFacewears))) then
|
||||
_randomFacewears = selectRandom facewears;
|
||||
if (_randomFacewears != "") then
|
||||
{
|
||||
_unit addGoggles _randomFacewears;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
@@ -105,20 +105,20 @@ facewears = [
|
||||
"CUP_G_WristWatch",
|
||||
"G_EyeProtectors_F"
|
||||
];
|
||||
_randomSuit = selectRandom suits
|
||||
if (((_randomSuit) != "") || (!isNull(_randomSuit))) then
|
||||
_randomSuit = selectRandom suits;
|
||||
if (_randomSuit != "") then
|
||||
{
|
||||
_unit forceAddUniform _randomSuit;
|
||||
}; // IF Statement criado por que sim
|
||||
|
||||
_randomHeadgear = selectRandom headgears
|
||||
if (((_randomHeadgear) != "") || (!isNull(_randomHeadgear))) then
|
||||
_randomHeadgear = selectRandom headgears;
|
||||
if (_randomHeadgear != "") then
|
||||
{
|
||||
_unit addHeadgear _randomHeadgear;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
|
||||
_randomFacewears = selectRandom facewears
|
||||
if (((_randomFacewears) != "") || (!isNull(_randomFacewears))) then
|
||||
_randomFacewears = selectRandom facewears;
|
||||
if (_randomFacewears != "") then
|
||||
{
|
||||
_unit addGoggles _randomFacewears;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
Reference in New Issue
Block a user