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

CSGO Admin tag plugin request


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
secondtimesold
Senior Member
Join Date: Feb 2015
Old 04-03-2015 , 12:45   CSGO Admin tag plugin request
Reply With Quote #1

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
secondtimesold is offline
indungi
Member
Join Date: Oct 2011
Location: Romania
Old 04-03-2015 , 14:43   Re: CSGO Admin tag plugin request
Reply With Quote #2

Check PM!
__________________
indungi is offline
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 04-03-2015 , 15:06   Re: CSGO Admin tag plugin request
Reply With Quote #3

You have many admins and few tags?

Last edited by raizo11; 04-03-2015 at 15:57.
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
secondtimesold
Senior Member
Join Date: Feb 2015
Old 04-03-2015 , 21:24   Re: CSGO Admin tag plugin request
Reply With Quote #4

i would like to be able to edit the tags as i see fit and rename them and assign to certain flags
secondtimesold is offline
secondtimesold
Senior Member
Join Date: Feb 2015
Old 04-04-2015 , 02:05   Re: CSGO Admin tag plugin request
Reply With Quote #5

closed. thanks TOG
__________________
secondtimesold is offline
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 04-04-2015 , 02:20   Re: CSGO Admin tag plugin request
Reply With Quote #6

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]"); 
					}													
}

Last edited by raizo11; 04-04-2015 at 02:28.
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
secondtimesold
Senior Member
Join Date: Feb 2015
Old 04-04-2015 , 02:57   Re: CSGO Admin tag plugin request
Reply With Quote #7

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
__________________

Last edited by secondtimesold; 04-04-2015 at 02:58.
secondtimesold is offline
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 04-04-2015 , 03:31   Re: CSGO Admin tag plugin request
Reply With Quote #8

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]"); 
}
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
Bejseren
New Member
Join Date: Apr 2015
Old 04-04-2015 , 09:30   Re: CSGO Admin tag plugin request
Reply With Quote #9

Can you change the ADMIN Tag/flag
From - "B"
To - "S"
???

Last edited by Bejseren; 04-04-2015 at 09:37.
Bejseren is offline
ThatOneGuy
Veteran Member
Join Date: Jul 2012
Location: Oregon, USA
Old 04-04-2015 , 13:21   Re: CSGO Admin tag plugin request
Reply With Quote #10

Quote:
Originally Posted by Bejseren View Post
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
__________________

Last edited by ThatOneGuy; 04-04-2015 at 20:56. Reason: added edit
ThatOneGuy is offline
Reply


Thread Tools
Display Modes

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 16:17.


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