04-13-2017, 07:06 PM
Hello everyone, as we know. Is there people who do not know what is a timer and how to create it. In this tutorial i will teach how to:
We create the timer
Code:
SetTimer is in where create the timer, "RandomMessage" is the name of the callback. (5000 = Five Seconds)
After, we create the forward which will call the callback:
Code:
You can create more timers using more stuff.. THis is just a basic tutorial. I hope it helps you...
We create the timer
Code:
Quote:public OnGameModeInit()
{
//==========================================================================
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Gamemode");
SetTimer("RandomMessage", 5000, 1);
SetTimer is in where create the timer, "RandomMessage" is the name of the callback. (5000 = Five Seconds)
After, we create the forward which will call the callback:
Code:
Quote:forward RandomMessage(playerid);
public RandomMessage(playerid)
{
SendClientMessage(playerid, 0xFFFFFFFF,"Register at our forum! forum.sa-mp.com");
return 1;
}
You can create more timers using more stuff.. THis is just a basic tutorial. I hope it helps you...