07.01.2016, 22:13
Change this
To this:
Код:
if(FishTime[playerid]) { format(string, sizeof(string), "You need to wait %d more seconds before fishing again.", FishTime[playerid]); SendClientMessage(playerid, COLOR_GREY, string); return 1; }
Код:
if(FishTime[playerid] > 0) { format(string, sizeof(string), "You need to wait %d more seconds before fishing again.", FishTime[playerid]); SendClientMessage(playerid, COLOR_GREY, string); return 1; }