AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved Plugins (https://forums.alliedmods.net/forumdisplay.php?f=109)
-   -   CCC - Tag Changer (https://forums.alliedmods.net/showthread.php?t=284135)

BraveFox 06-19-2016 14:14

CCC - Tag Changer
 
Description:
CCC - Tag Changer is a plugin that I made because I wanted it for alot of time and I think that I am not the only one that want this plugin, this plugin changes your tag by doing a simple command/
Commands:
sm_tag <tag> - Changes your tag
Cvars:
None!
Request:
CCC
How to download:
Just put the ccc_tag_changer.smx file on tf/addons/sourcemod/plugins folder and restart your self or load it by doing sm plugins load ccc_tag_changer.
If that plugin helped you, you can help me by donating to me:

http://i68.tinypic.com/35d5a3d.jpg

BraveFox 06-19-2016 14:28

Re: CCC - Tag Changer
 
Realsed!!

shavit 06-19-2016 16:19

Re: CCC - Tag Changer
 
damn this is a messy plugin

anyways: you should link to CCC and attach an smx file

kelvin31 07-18-2016 05:04

Re: CCC - Tag Changer
 
is it support UTF-8?

BraveFox 08-06-2016 13:06

Re: CCC - Tag Changer
 
Quote:

Originally Posted by kelvin31 (Post 2437406)
is it support UTF-8?

what do you mean?

freakav 10-19-2016 04:16

Re: CCC - Tag Changer
 
Have colors ? Who can use this command ? Everyone or just a flag ?

j1gg 10-19-2016 04:53

Re: CCC - Tag Changer
 
Its possible to add this:
Quote:

if(StrEqual(arg1, "Owner") && !CheckCommandAccess(client, "", ADMFLAG_ROOT))
{
PrintToChat(client, "[CCC Tag Changer]This tag is not allowed");
return Plugin_Handled;
}
if(StrEqual(arg1, "owner") && !CheckCommandAccess(client, "", ADMFLAG_ROOT))
{
PrintToChat(client, "[CCC Tag Changer]This tag is not allowed");
return Plugin_Handled;
}
if(StrEqual(arg1, "Admin") && !CheckCommandAccess(client, "", ADMFLAG_ROOT))
{
PrintToChat(client, "[CCC Tag Changer]This tag is not allowed");
return Plugin_Handled;
}
To .txt file

BraveFox 10-21-2016 04:48

Re: CCC - Tag Changer
 
Quote:

Originally Posted by freakav (Post 2463312)
Have colors ? Who can use this command ? Everyone or just a flag ?

Custom5 flag only.
And it just changes your tag you choose the colors in the custom chat colors config.

BraveFox 10-21-2016 04:48

Re: CCC - Tag Changer
 
Quote:

Originally Posted by j1gg (Post 2463317)
Its possible to add this:
To .txt file

Yes.
It is

StrikeR14 07-23-2017 13:33

Re: CCC - Tag Changer
 
Should change
PHP Code:

if(StrEqual(arg1"Owner") && !CheckCommandAccess(client""ADMFLAG_ROOT)) 

to
PHP Code:

if(StrContains(arg1"owner"false) > -&& !CheckCommandAccess(client""ADMFLAG_ROOT)) 

and every other line including the StrEqual function


All times are GMT -4. The time now is 20:23.

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