Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to create a Timer
#1
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:

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...
#2
This tutorial is unhelpful and is messed up, this code wouldn't even compile neither work. I wouldn't explain what are the issues as you are the tutor and you should know what mistakes you have done.

Thread closed.


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to create a pickup that can be picked-up on-foot and in-vehicle alimaroco 1 4,751 06-11-2022, 10:14 AM
Last Post: dvicelulares

Forum Jump:


Users browsing this thread: 1 Guest(s)