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

Simple Chat Responses


Post New Thread Reply   
 
Thread Tools Display Modes
derptestt
Senior Member
Join Date: Jul 2015
Old 07-23-2015 , 18:33   Re: Simple Chat Responses
Reply With Quote #11

Is there anyway to get this plugin working for CS:GO?
derptestt is offline
Danyas1337
Member
Join Date: May 2013
Location: Kyiv, Ukraine
Old 03-05-2016 , 08:10   Re: Simple Chat Responses
Reply With Quote #12

An a Little fix for UTF-8 symbols.
We have that stock in source -

Code:
stock FilterWord(String:word[], maxlength)
{
	new String:sFilter[128];
	for (new x = 0; x < strlen(word); x++)
	{
		decl String:sBuffer[128];
		strcopy(sBuffer, sizeof(sBuffer), sFilter);
		Format(sFilter, sizeof(sFilter), "%s%s", CHAR_FILTER, sBuffer);
	}
	strcopy(word, maxlength, sFilter);
}
If we try to replace word with utf-8 - he couts double. (example: word "биба" replaces as ********)
Fixed code -
Code:
stock FilterWord(String:word[], maxlength)
{
	new String:sFilter[128];
	for (new x = 0; x < strlen(word); x++)
	{
		decl String:sBuffer[128];
		strcopy(sBuffer, sizeof(sBuffer), sFilter);
		Format(sFilter, sizeof(sFilter), "%s%s", CHAR_FILTER, sBuffer);
		if (IsCharMB(word[x]) > 1) x++;
	}
	strcopy(word, maxlength, sFilter);
}
__________________
<3 AM
Danyas1337 is offline
Send a message via Skype™ to Danyas1337
alphaearth
Senior Member
Join Date: Feb 2018
Location: Turkey
Old 04-02-2019 , 19:28   Re: Simple Chat Responses
Reply With Quote #13

Can you add another color support to this plugin?
__________________
alphaearth is offline
Hackmastr
Member
Join Date: Sep 2013
Old 10-14-2019 , 10:26   Re: Simple Chat Responses
Reply With Quote #14

Quote:
Originally Posted by alphaearth View Post
Can you add another color support to this plugin?
What game?
Hackmastr 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 16:55.


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