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

Simple Chat Colors (Old Version)


Post New Thread Reply   
 
Thread Tools Display Modes
Viper_Vicki
AlliedModders Donor
Join Date: Sep 2005
Location: USA
Old 07-17-2011 , 10:18   Re: Simple Chat Colors
Reply With Quote #391

The plugin works on my empiresmod servers but when i add chat commands to override some work and some still do not like !vote or !kick or !map !pmsay (from another plugin) I am pretty sure there are more but haven't tested all my commands out yet. Can this be fixed?

Thank you
__________________
[VIPER]_Vicki


Last edited by Viper_Vicki; 07-17-2011 at 13:56.
Viper_Vicki is offline
Viper_Vicki
AlliedModders Donor
Join Date: Sep 2005
Location: USA
Old 07-20-2011 , 10:09   Re: Simple Chat Colors
Reply With Quote #392

Is this plugin still being supported?
__________________
[VIPER]_Vicki

Viper_Vicki is offline
talpa
Member
Join Date: Jun 2007
Old 07-24-2011 , 04:39   Re: Simple Chat Colors
Reply With Quote #393

plugin work perfect with all command add new command in the override list and restart server
talpa is offline
Viper_Vicki
AlliedModders Donor
Join Date: Sep 2005
Location: USA
Old 07-24-2011 , 08:01   Re: Simple Chat Colors
Reply With Quote #394

I did that and many commands still do not work:
}
"Overrides"
{
"rank" ""
"testcommand" ""
"rtv" ""
"nominate" ""
"!kick" ""
"/kick" ""
"!admin" ""
"/admin" ""
"!ungrief be" ""
"!ungrief nf" ""
"/ungrief be" ""
"/ungrief nf" ""
"!slay" ""
"/slay" ""
"!map" ""
"/map" ""
"!ban" ""
"/ban" ""
"!setnextmap" ""
"/setnextmap" ""
"!enemyvoice" ""
"/enemyvoice" ""
"!enemychat" ""
"/enemychat" ""
"!talktoserver" ""
"/talktoserver" ""
"!psay" ""
"/psay" ""
"!csay" ""
"/csay" ""
"!msay" ""
"/msay" ""
"!vote" ""
"/vote" ""
"!gravity" ""
"/gravity" ""
"!burn" ""
"/burn" ""
"!slap" ""
"/slap" ""
"!freeze" ""
"/freeze" ""
"!amsay" ""
"/amsay" ""
"!pmsay" ""
"/pmsay" ""
"!explode" ""
"/explode" ""
"!blind" ""
"/blind" ""
"!beacon" ""
"/beacon" ""
"!cvar" ""
"/cvar" ""
"!disco" ""
"/disco" ""
"!tele" ""
"/tele" ""
"!teamswitch" ""
"/teamswitch" ""
"!colorize" ""
"/colorize" ""
"!timebomb" ""
"/timebomb" ""
"!models" ""
"/models" ""
"!firebomb" ""
"/firebomb" ""
"!freezebomb" ""
"/freezebomb" ""
"!drug" ""
"/drug" ""
"!addban" ""
"/addban" ""
"!rename" ""
"/rename" ""
"!rcon" ""
"/rcon" ""
}
}
__________________
[VIPER]_Vicki

Viper_Vicki is offline
Antithasys
Moderator
Join Date: Apr 2008
Old 07-27-2011 , 17:10   Re: Simple Chat Colors
Reply With Quote #395

Quote:
Originally Posted by Viper_Vicki View Post
Is this plugin still being supported?
Hi Vicki-

While this plugin uses older code, it is still fully functional. The problem lies in the other plugin that you are using. There is a way in sourcemod to register the command like !hi or !help or /help. Unfortunately, the plugin does not do this. What it is actually doing is parsing the chat and running code based on the parse (adding overhead unnecessarily). This is not suggested, and is basically improper.

However, because of the amount of plugins that still do this, the overrides was added. So now you know why its there... anyways, you can deal with this issue two ways. One is to use the trigger backup function. That way, the triggers will cause the chat to not be processed, this is for commands with a constant trigger, like ! or /. Second, you can use the overrides section to indicate chat words that do not have triggers, like "rank".

Try setting it up that way.
__________________
[my plugins]

When you think about asking a question... consider what have you tried?
Antithasys is offline
talpa
Member
Join Date: Jun 2007
Old 07-28-2011 , 13:08   Re: Simple Chat Colors
Reply With Quote #396

Quote:
"admin_colors"
{
"admin"
{
"flag" "o"
"tag" "(*Admin*)"
"tagcolor" "{green}"
"namecolor" "{teamcolor}"
"textcolor" "{green}"
}

"Overrides"
{
"votemap" ""
"!facebook" ""
"voteban" ""
"votekick" ""
"rank" ""
"place" ""
"rtv" ""
"session" ""
"nominate" ""
"top" ""
"top10" ""
"votescramble" ""
"votemute" ""
"votealltalk" ""
"bet" ""
"!ts3" ""
"!rpgmenu" ""
"rpgmenu" ""
"!rpg" ""
"rpg" ""
"menu" ""
}
}

work perfect
talpa is offline
ShoxDanger
New Member
Join Date: Jul 2011
Old 07-31-2011 , 12:36   Re: Simple Chat Colors
Reply With Quote #397

cant get it to work on my tf2 server what do i do ?
ShoxDanger is offline
dbmiller5
Senior Member
Join Date: Jun 2011
Old 08-01-2011 , 04:19   Re: Simple Chat Colors
Reply With Quote #398

I cant seem to get this to work for TF2. Compatible with TF2?
dbmiller5 is offline
Viper_Vicki
AlliedModders Donor
Join Date: Sep 2005
Location: USA
Old 08-01-2011 , 15:42   Re: Simple Chat Colors
Reply With Quote #399

Quote:
Originally Posted by Antithasys View Post
Hi Vicki-

anyways, you can deal with this issue two ways. One is to use the trigger backup function. That way, the triggers will cause the chat to not be processed, this is for commands with a constant trigger, like ! or /. Second, you can use the overrides section to indicate chat words that do not have triggers, like "rank".

Try setting it up that way.
Thank you, but forgive my ignorance I do not know what "One is to use the trigger backup function." means Please explain?

Thank you
__________________
[VIPER]_Vicki

Viper_Vicki is offline
Antithasys
Moderator
Join Date: Apr 2008
Old 08-02-2011 , 22:51   Re: Simple Chat Colors
Reply With Quote #400

Quote:
Originally Posted by dbmiller5 View Post
I cant seem to get this to work for TF2. Compatible with TF2?
Since 250+ servers in TF2 run this, I would have to say yes. I do not say that to be mean, simply that I have not personally tested it in the latest TF2 build. For that reason I have to rely on the stats.

Quote:
Originally Posted by Viper_Vicki View Post
Thank you, but forgive my ignorance I do not know what "One is to use the trigger backup function." means Please explain?

Thank you
sm_chatcolors_triggerbackup 1

This would mean that any statement starting with ! or / would be passed in whole to the game code.
__________________
[my plugins]

When you think about asking a question... consider what have you tried?
Antithasys 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 01:04.


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