15.07.2016, 09:40
change this
To This
Код:
public 555phone(playerid) { SendClientMessage(playerid, COLOR_YELLOW, "Good day, and thanks for calling LTS. We might have a job for you."); SetTimerEx("555phone1", 10000, false, "i", playerid); return 1; } public 555phone1(playerid) { SendClientMessage(playerid, COLOR_YELLOW, "Perfect! We've got a job available. Please hold on."); return 1; }
Код:
forward 555phone(playerid); public 555phone(playerid) { SendClientMessage(playerid, COLOR_YELLOW, "Good day, and thanks for calling LTS. We might have a job for you."); SetTimerEx("555phone1", 10000, false, "i", playerid); return 1; } forward 555phone1(playerid); public 555phone1(playerid) { SendClientMessage(playerid, COLOR_YELLOW, "Perfect! We've got a job available. Please hold on."); return 1; }