This site has been archived and made available for preservation purposes. No edits can be made.

CreateTimer

(Difference between revisions)
Return to current revision
  1.  
    Creates a timer.
    [h="2"] Declaration [/h]
    [highlight=cpp]
  2. -
    VAULTSCRIPT vaultmp::Timer (*CreateTimer)(vaultmp::Function, vaultmp::Interval);
  3. +
    VAULTSCRIPT VAULTSPACE Timer (*VAULTAPI(CreateTimer))(VAULTSPACE RawFunction(), VAULTSPACE Interval) _CPP(noexcept);
    [/highlight]
    [highlight=c]
  4.  
    native CreateTimer(const func{}, interval);
    [/highlight]
    [h="2"] Parameters [/h]
    [b][wiki="Function"]vaultmp::Function[/wiki][/b] (C++ only) - the function of the timer
    [b]func[/b] (PAWN only) - the name of the timer's function
    [b][wiki="Interval"]vaultmp::Interval[/wiki][/b] - the timer interval in milliseconds
    [h="2"] Return value [/h]
    Returns a [wiki="Timer"]vaultmp::Timer[/wiki] referring to the newly created timer.
    [h="2"] Usage example (C++) [/h]
    [highlight=cpp]
    vaultmp::Result VAULTSCRIPT MyTimer()
    {
    // Timer function
    return 0;
    }
    vaultmp::Void VAULTSCRIPT exec()
    {
    CreateTimer(&MyTimer, 5000);
    }
    [/highlight]
    [h="2"] Usage example (PAWN) [/h]
    [highlight=c]
    forward MyTimer();
    public MyTimer()
    {
    // Timer function
    return 0;
    }
    main()
    {
    CreateTimer("MyTimer", 5000);
    }
    [/highlight]
    [h="2"] Related pages [/h]
    [list][*][wiki]CreateTimerEx[/wiki]
    [*][wiki]KillTimer[/wiki]
    [/LIST]
    [category]VaultMP interface[/category]
    [category]Scripting functions[/category]
    [category]Misc functions[/category]