View Single Post
SideX
Senior Member
Join Date: Jun 2010
Location: Ukraine, Melitopol.
Old 01-07-2011 , 06:59   Re: help, GetClientAuthString
Reply With Quote #2

PHP Code:
#include <sourcemod>
#include <sdkhooks>
#include <sdktools>

public OnPluginStart()
{
    
HookEvent("round_start"Event_RoundStart);
}


public 
Event_RoundStart(Handle:event, const String:name[], bool:dontBroadcast)
{
    new 
client GetClientOfUserId(GetEventInt(event"userid"));
    
decl String:gAuth[21]
    
GetClientAuthStringclientgAuthsizeofgAuth ) );
    if(!
StrEqual(gAuth"0:0:00000"false))
    {
        
PrintToChatAll("lol");
    }

try this
SideX is offline