Raised This Month: $ Target: $400
 0% 

Simple Chat Processor


Post New Thread Reply   
 
Thread Tools Display Modes
11530
Veteran Member
Join Date: Sep 2011
Location: Underworld
Old 08-20-2012 , 18:48   Re: Simple Chat Processor
Reply With Quote #61

Quote:
Originally Posted by Mr. Man View Post
An error:

Code:
L 08/20/2012 - 17:31:58: [SM] Native "StartMessage" reported: Client 23 is not connected
L 08/20/2012 - 17:31:58: [SM] Displaying call stack trace for plugin "TF2_simplechatprocessor.smx":
L 08/20/2012 - 17:31:58: [SM]   [0]  Line 351, /home/groups/alliedmodders/forums/files/3/6/9/5/4/92887.attach::ResendMessage()
That error's been around from before I joined these forums.
__________________

Last edited by 11530; 08-20-2012 at 18:48.
11530 is offline
Groger
Veteran Member
Join Date: Oct 2009
Location: Belgium
Old 08-22-2012 , 13:28   Re: Simple Chat Processor
Reply With Quote #62

Hi, are you planning on support cs:go?
Groger is offline
zpeedy88
Junior Member
Join Date: Aug 2012
Old 08-24-2012 , 12:54   Re: Simple Chat Processor
Reply With Quote #63

guys it just doesnt work forme.. i just everything and just replaced the admin steam id with mine and put the cfg and the two plug ins the processor and this one and it just wont show up for me why?
zpeedy88 is offline
PlasteR
Senior Member
Join Date: May 2011
Location: Poland
Old 08-24-2012 , 13:42   Re: Simple Chat Processor
Reply With Quote #64

Quote:
Originally Posted by Groger View Post
Hi, are you planning on support cs:go?
https://forums.alliedmods.net/showpo...1&postcount=39 work for CSGO..
__________________
PlasteR is offline
KratosMafia
Senior Member
Join Date: Jul 2012
Old 09-07-2012 , 18:31   Re: Simple Chat Processor
Reply With Quote #65

So it works but I get this


FF3333[Owner] KratosMafia : 0000EEanoying

[code]
"STEAM_1:1:13544022"
{
"tag" "[Owner] "
"namecolor" "#FF3333"
"textcolor" "#0000EE"
}
[code]
KratosMafia is offline
G2KV
BANNED
Join Date: Dec 2010
Old 09-08-2012 , 09:16   Re: Simple Chat Processor
Reply With Quote #66

i got it to work but i get this err:

Code:
L 09/08/2012 - 13:03:19: SourceMod error session started
L 09/08/2012 - 13:03:19: Info (map "de_dust2") (file "errors_20120908.log")
L 09/08/2012 - 13:03:19: [SM] Native "StartMessage" reported: Client 12 is not connected
L 09/08/2012 - 13:03:19: [SM] Displaying call stack trace for plugin "simple-chatprocessor.smx":
L 09/08/2012 - 13:03:19: [SM]   [0]  Line 351, /home/groups/alliedmodders/forums/files/3/6/9/5/4/92887.attach::ResendMessage()
L 09/08/2012 - 13:32:06: Error log file session closed.
can you help me ?

any fix ?
G2KV is offline
Horsedick
AlliedModders Donor
Join Date: Sep 2011
Old 09-09-2012 , 12:38   Re: Simple Chat Processor
Reply With Quote #67

There is a bug with the new color code additions a few months back introduced by Valve...

As you know, SourcePawn uses the color codes ranging from \x01 to \x08, these can be represented via HTML with ASCII codes through (without the space in the middle since it gets converted here of course). When you copy one of the characters from HTML you can paste it in chat, (it looks invisible) type a hex code (or hex+alpha) if using \x07 or \x08 respectively, then your message and it will appear any color you want.

To test, copy the string below, paste it first somewhere like the URL bar to see the actual characters, then paste it again into a TF2 Chat box.


Quote:
OneTwoThreeFourFiveSixFF0000SevenFF000055Eigh t
This is something that has to be fixed as soon as possible as its already being used by regular players when you have color chat usage restricted to Admin or VIP usage only.



Update: Fix found here- Highly suggested to be used if running this to prevent abuse.

https://forums.alliedmods.net/showthread.php?t=196696

Last edited by Horsedick; 09-24-2012 at 13:13.
Horsedick is offline
eric0279
AlliedModders Donor
Join Date: May 2007
Old 09-10-2012 , 17:27   Re: Simple Chat Processor
Reply With Quote #68

Hello,

Quote:
L 09/10/2012 - 2062: [SM] Native "StartMessage" reported: Client 8 is not connected
L 09/10/2012 - 2062: [SM] Displaying call stack trace for plugin "simple-chatprocessor.smx":
L 09/10/2012 - 2062: [SM] [0] Line 351, F:\SRCDS\l4d2\left4dead2\left4dead2\addons\so urcemod\scripting\simple-chatprocessor.sp::ResendMessage()
Thanks for fix
eric0279 is offline
Horsedick
AlliedModders Donor
Join Date: Sep 2011
Old 09-15-2012 , 18:32   Re: Simple Chat Processor
Reply With Quote #69

Quote:
Originally Posted by Horsedick View Post
There is a bug with the new color code additions a few months back introduced by Valve...

As you know, SourcePawn uses the color codes ranging from \x01 to \x08, these can be represented via HTML with ASCII codes through (without the space in the middle since it gets converted here of course). When you copy one of the characters from HTML you can paste it in chat, (it looks invisible) type a hex code (or hex+alpha) if using \x07 or \x08 respectively, then your message and it will appear any color you want.

To test, copy the string below, paste it first somewhere like the URL bar to see the actual characters, then paste it again into a TF2 Chat box.


This is something that has to be fixed as soon as possible as its already being used by regular players when you have color chat usage restricted to Admin or VIP usage only.

Anyone know how to fix this from happening?
Ok this is getting too wide spread of a problem now - which is making having say "Special" access to colors for chatting pointless. Does anyone know how to make this stop?
Horsedick is offline
MPQC
SourceMod Donor
Join Date: Dec 2011
Old 09-15-2012 , 19:24   Re: Simple Chat Processor
Reply With Quote #70

Quote:
Originally Posted by Horsedick View Post
Ok this is getting too wide spread of a problem now - which is making having say "Special" access to colors for chatting pointless. Does anyone know how to make this stop?
In CSS this doesn't happen -> users are given an "this text contains an illegal character" message, and the text is blocked. But, as far as stopping it goes, why not use REGEX, look for something matching that pattern, and remove it?

Edit: Or just remove the color character itself.

Last edited by MPQC; 09-15-2012 at 19:27.
MPQC 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 13:40.


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