17.04.2013, 20:49
I can not understand because it gives me these errors:
The code:
Thank!
Код:
error 012: invalid function call, not a valid address warning 215: expression has no effect error 001: expected token: ";", but found ")" fatal error 107: too many error messages on one line
Код:
else if(dialogid == 9999) // SISTEMA POSTALE
{
switch(listitem)
{
case 0:
{
if(StipendioGelataio(playerid) == 1) // ERRORS IN THIS STRING
{
SendClientMessage(playerid, COLOR_YELLOW, "[POSTE:] Devi aspettare il PayDay per poter ritirare il tuo stipendio!");
return 1;
}
else if(StipendioGelataio(playerid) == 2)
{
GivePlayerMoney(playerid, 1600);
SendClientMessage(playerid, COLOR_YELLOW, "[POSTE:] Hai ritirato il tuo stipendio, che equivale a 1600$");
StipendioGelataio(playerid) = 0;
return 1;
}
else
{
SendClientMessage(playerid, COLOR_YELLOW, "[POSTE:] Non hai lavorato, quindi non hai uno stipendio da poter ritirare!");
return 1;
}
}
}
}


