25.06.2015, 23:57
You could also change the whole thing into a switch statement which would be a lot nicer to read
PHP Code:
if (IsGangueGRI(i))
{
switch(PlayerInfo[i][pCargo]){
case 1:
if (CofreOrg[GetPlayerOrg(i)][salarioc1] != 0 && CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]);
}
case 2:
// next section
case 3:
// etc
}
}