Quote:
Originally Posted by DeadNudock
I tried to let the faster code, let easier to understand, more can not, please someone can tell me how I can remove the
without harming the code?
PHP Code:
if (IsGangueGRI(i))
{
if (PlayerInfo[i][pCargo] == 1)
{
if (CofreOrg[GetPlayerOrg(i)][salarioc1] == 0)
{}///
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]);
}
}
if (PlayerInfo[i][pCargo] == 2)
{
if (CofreOrg[GetPlayerOrg(i)][salarioc2] == 0)
{}/////
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc2])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc2];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc2]);
}
}
if (PlayerInfo[i][pCargo] == 3)
{
if (CofreOrg[GetPlayerOrg(i)][salarioc3] == 0)
{}////
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc3])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc3];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc3]);
}
}
if (PlayerInfo[i][pCargo] == 4)
{
if (CofreOrg[GetPlayerOrg(i)][salarioc4] == 0)
{}////
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc4])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc4];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc4]);
}
}
if (PlayerInfo[i][pCargo] == 5)
{
if (CofreOrg[GetPlayerOrg(i)][salarioc5] == 0)
{}///
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= CofreOrg[GetPlayerOrg(i)][salarioc5])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc5];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc5]);
}
}
if (PlayerInfo[i][pCargo] == 6)
{
if (CofreOrg[GetPlayerOrg(i)][Dinheiro] >= 2000) PlayerInfo[i][pSalario] += 2000, SacarGranaOrg(GetPlayerOrg(i), 2000);
}
}
|
PHP Code:
if (CofreOrg[GetPlayerOrg(i)][salarioc1] == 0)
{}///
else if (CofreOrg[GetPlayerOrg(i)][Dinheiro] < CofreOrg[GetPlayerOrg(i)][salarioc1])
{
PlayerInfo[i][pSalario] += CofreOrg[GetPlayerOrg(i)][salarioc1];
SacarGranaOrg(GetPlayerOrg(i), CofreOrg[GetPlayerOrg(i)][salarioc1]);
}
// Change to
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]);
}