AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   CSGO Admin tag plugin request (https://forums.alliedmods.net/showthread.php?t=260943)

secondtimesold 04-03-2015 12:45

CSGO Admin tag plugin request
 
This is a private request. I need a plugin similar to this https://forums.alliedmods.net/showthread.php?t=211992 that I can be able to set flags on Admin tags. The plugin in the link I provided cannot be edited so I am requesting someone to make a new plugin that is similar.

If you can do this please pm me with your price in paypal or keys

indungi 04-03-2015 14:43

Re: CSGO Admin tag plugin request
 
Check PM!

raizo11 04-03-2015 15:06

Re: CSGO Admin tag plugin request
 
You have many admins and few tags?

secondtimesold 04-03-2015 21:24

Re: CSGO Admin tag plugin request
 
i would like to be able to edit the tags as i see fit and rename them and assign to certain flags

secondtimesold 04-04-2015 02:05

Re: CSGO Admin tag plugin request
 
closed. thanks TOG

raizo11 04-04-2015 02:20

Re: CSGO Admin tag plugin request
 
Code:

#include <sourcemod>
#include <cstrike>

public Plugin:myinfo =
{
        name = "KNIFE ADMINS",
        description = "ADMIN TAG",
        author = "Your name",
        version = "1.0",
        url = "http://csbest.ro/"
};
public OnPluginStart()
{
        HookEvent("player_team", Event_TagTable);
        HookEvent("player_spawn", Event_TagTable);
}

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

public Action:Event_TagTable(Handle:event, String:name[], bool:dontBroadcast)
{
        new client = GetClientOfUserId(GetEventInt(event, "userid"));
        if (0 < client)
        {
                HandleTag(client);
        }
        return Plugin_Continue;
}

HandleTag(client)

{
    if (GetUserFlagBits(client) & ADMFLAG_ROOT)
    {
        CS_SetClientClanTag(client, "[OWNER KNIFE]");
    }
    else
                if (GetUserFlagBits(client) & ADMFLAG_CUSTOM6)
                {
                        CS_SetClientClanTag(client, "[C-OWNER KNIFE]");
                }
                else
                                if (GetUserFlagBits(client) & ADMFLAG_GENERIC)
                                {
                                        CS_SetClientClanTag(client, "[ADMIN KNIFE]");
                                }
                                else
                                        if (GetUserFlagBits(client) & ADMFLAG_RESERVATION)
                                        {
                                                CS_SetClientClanTag(client, "[VIP KNIFE]");
                                        }                                                                                                       
}


secondtimesold 04-04-2015 02:57

Re: CSGO Admin tag plugin request
 
i compiled your sp and it did work but i wouldnt know how to edit beyond the admin tag to add various users.. i really appreciate your help though

raizo11 04-04-2015 03:31

Re: CSGO Admin tag plugin request
 
HAVE FLAGS HERE : https://wiki.alliedmods.net/Adding_A...28SourceMod%29

example:
Code:

ADMFLAG_KICK , ADMFLAG_UNBAN , ADMFLAG_SLAY , ADMFLAG_ROOT
Code:

}
else
if (GetUserFlagBits(client) & ADMFLAG_BAN)
{
CS_SetClientClanTag(client, "[ADMIN X]");
}


Bejseren 04-04-2015 09:30

Re: CSGO Admin tag plugin request
 
Can you change the ADMIN Tag/flag
From - "B"
To - "S"
???

ThatOneGuy 04-04-2015 13:21

Re: CSGO Admin tag plugin request
 
Quote:

Originally Posted by Bejseren (Post 2281775)
Can you change the ADMIN Tag/flag
From - "B"
To - "S"
???

I built secondtimesold a plugin that is fully customizable and has additional stuff. He said I might as well release it, so I'll get that out sometime soon. It will let you create as many setups and customize the however you want, and supports a ton of options for how they get the flag (steam ID setups, group setups via flag combos, bot setups, and more).

EDIT: https://forums.alliedmods.net/showth...88#post2281988


All times are GMT -4. The time now is 05:37.

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