Raised This Month: $51 Target: $400
 12% 

Admin Tag please help!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
6godxx
New Member
Join Date: Sep 2017
Old 09-11-2017 , 10:52   Admin Tag please help!
Reply With Quote #1

I'm trying to compile this to .smx can someone please save my life and do it i tried 30 min doesn't work compile gives me error's please.


PHP Code:
#include <sourcemod>
#include <cstrike>

public Plugin:myinfo =
{
    
name "AdminTag",
    
description "Private plugin",
    
author "KeepCalm",
    
version "2.0",
    
url ""
};


public 
OnPluginStart()
{
    
HookEvent("player_team"EventEventHookMode:1);
    
HookEvent("player_spawn"EventEventHookMode:1);
    return 
0;
}

public 
OnClientPutInServer(client)
{
    
HandleTag(client);
    return 
0;
}

public 
Action:Event(Handle:eventString:name[], bool:dontBroadcast)
{
    new 
client GetClientOfUserId(GetEventInt(event"userid"));
    if (
client)
    {
        
HandleTag(client);
    }
    return 
Action:0;
}

HandleTag(client)


    if (
GetUserFlagBits(client) & ADMFLAG_ROOT
    { 
        
CS_SetClientClanTag(client"[Sunucu Sahibi]"); 
    }
    else
        if (
GetUserFlagBits(client) & ADMFLAG_CUSTOM6)
        { 
            
CS_SetClientClanTag(client"[Yardımcı Admin]"); 
        }
        else
                if (
GetUserFlagBits(client) & ADMFLAG_GENERIC)
                { 
                    
CS_SetClientClanTag(client"[Admin]"); 
                }
                else
                    if (
GetUserFlagBits(client) & ADMFLAG_RESERVATION)
                    { 
                        
CS_SetClientClanTag(client"[VIP]"); 
                    }                                                    

6godxx is offline
shanapu
Veteran Member
Join Date: Apr 2015
Location: .de
Old 09-11-2017 , 11:22   Re: Admin Tag please help!
Reply With Quote #2

https://forums.alliedmods.net/showth...77#post2415077
__________________
coding & free software
shanapu is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 15:32.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode