Error help
#2

change 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;
}
To This
Код:
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;
}
Reply


Messages In This Thread
Error help - by NealPeteros - 15.07.2016, 09:37
Re: Error help - by FuNkYTheGreat - 15.07.2016, 09:40
Re: Error help - by NealPeteros - 15.07.2016, 09:41
Re: Error help - by NealPeteros - 15.07.2016, 09:50
Re: Error help - by Konstantinos - 15.07.2016, 09:54
Re: Error help - by NealPeteros - 15.07.2016, 09:57

Forum Jump:


Users browsing this thread: 1 Guest(s)