View Single Post
J_Tanzanite
Senior Member
Join Date: Aug 2018
Location: Norway
Old 11-14-2018 , 11:02   Re: [ANY] SteamID Authenticator (1.0.0, 2018-11-14)
Reply With Quote #11

Quote:
Originally Posted by Ilusion9 View Post
PHP Code:

public OnPluginStart()
{
    if (
SID_CLOCKKillTimer(SID_CLOCK);
    
SID_CLOCK CreateTimer(2.5Timer_SIDVALIDATE_TIMER_REPEAT);

SID_CLOCK is useless in OnPluginStart. The timer will be closed in OnPluginEnd automatically.
use:

PHP Code:

public OnPluginStart()
{
    
CreateTimer(2.5Timer_SIDVALIDATE_TIMER_REPEAT);

Really? I thought they continued forever regardless... Thanks for letting me know ^-^
J_Tanzanite is offline