Hi Leute,
eine Frage bzw ein Problem:
Wie kann ich eine EnumAbfrage um 1 erhöhen? Wieso wird es nicht erhöht?
public paytimer()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i))continue;
if(pInfo[i][eingeloggt]==0)continue;
pInfo[i][paydaytime] = pInfo[i][paydaytime]+1;
if(pInfo[i][paydaytime]==60)
{
pInfo[i][paydaytime]=0;
SendClientMessage(i,COLOR_YELLOW,"Du hast deinen Padyday erhalten und erhälst 400$ Arbeitslosengeld!");
GivePlayerMoney(i, 400);
}
}
return 1;
}
Danke im Vorraus