20.03.2013, 12:01
Quote:
|
So you just added a brace and it's not messed up anymore?
The indentation is messed up, script is alright tho . |
pawn Код:
if (GetPlayerScore(playerid) >= 0 && GetPlayerScore(playerid) <= 100)
{
SendClientMessage(playerid, COLOR_RED,"You are Private!");
}
if (GetPlayerScore(playerid) >= 100 && GetPlayerScore(playerid) <= 200)
{
SendClientMessage(playerid, COLOR_RED,"You are Private 2!");
}
pawn Код:
if (GetPlayerScore(playerid) > 0 && GetPlayerScore(playerid) <= 100)
{
SendClientMessage(playerid, COLOR_RED,"You are Private!");
}
if (GetPlayerScore(playerid) > 100 && GetPlayerScore(playerid) <= 200)
{
SendClientMessage(playerid, COLOR_RED,"You are Private 2!");
}



.