Jump to content

[C#] Custom Timer - Server & Client 2.1

   (4 reviews)

About This File

With this script you can easily create custom timer.
The file is fully commented and should be easy to understand.

The file in Shared is required - and then use either the file in Server or in Client depending on where you are using it.

You have to use the constructor to create the timer.

Examples:

Examples: 

// Yes, the method can be private //
private void testTimerFunc(Client player, string text)
{
    NAPI.Chat.SendChatMessageToPlayer(player, "[TIMER] " + text);
}

void testTimerFunc()
{
    NAPI.Chat.SendChatMessageToAll("[TIMER2] Hello");
}

[Command("ttimer")]
public void timerTesting(Client player)
{
    // Lamda for parameter //
    new Timer(() => testTimerFunc(player, "hi"), 1000, 1);
    // Normal without parameters //
    new Timer(testTimerFunc, 1000, 1);
    // Without existing method //
    var timer = new Timer(() => { NAPI.Chat.SendChatMessageToPlayer(player, "[TIMER3] Bonus is da best"); }, 1000, 0);
    // Kill the timer //
    timer.Kill();
}

ย 


What's New in Version 1.0.2   See changelog

Released

Added HandleException parameter so you can decide yourself if you want to use try-catch-finally or not.

  • Like 4
  • Mask 1

User Feedback

Create an account or sign in to leave a review

You need to be a member in order to leave a review

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

hubba

   1 of 1 member found this review helpful 1 / 1 member

very nice file,ย 

  • Like 1
Link to review
Kozanoglu

   1 of 2 members found this review helpful 1 / 2 members

I like it. It looks like MTA method.

  • Like 1
  • Confused 1
Link to review
×
×
  • Create New...