SA-MP Forums Archive
[FilterScript] Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Chat and ID Color Changer ( With RGB Colours 0-255, Released!) (/showthread.php?tid=582423)

Pages: 1 2


Chat and ID Color Changer ( With RGB Colours 0-255, Released! ) - SpikY_ - 20.07.2015

INTRODUCTION:

This Script was made for my Server by me, And now i decided to release this Filterscript on Samp Forum. I Don't think so there is any Filterscript like this Cause i have searched alot for this Filterscript before and i couldn't find it so i Thought to make my own. There are 255 colors codes Which include all the colors maybe.


USAGE:

/Chatcolor - It will Change your Chat Color. ( Example: /chatcolor 255 144 33 )
/IDcolor - It will Change your ID Color. ( Example: /idcolor 255 144 33 )

» Note: RGB colors code should not be Greater Than 255.

BUGS:

- BUG FIXED, Thanks to Affan.

SCREENIES:

First Image.
Second Image.
Third Image.
Fourth Image.


DOWNLOADS:

MediaFire Link UPDATED - (.pwn File)
Pastebin Link UPDATED



Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SecretBoss - 20.07.2015

Like xSF's server, nice idea +REP for you


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 20.07.2015

This type of Script now also used in other servers.
Thanks.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 20.07.2015

Any Feedback?!?


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Jakwob - 20.07.2015

Can you add a pastebin link? This sounds cool.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 20.07.2015

Quote:
Originally Posted by Jakwob
View Post
Can you add a pastebin link? This sounds cool.
Pastebin has been Added in the main Topic.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Younes44 - 20.07.2015

Good Job dude..
+Rep


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 21.07.2015

Quote:
Originally Posted by Younes44
View Post
Good Job dude..
+Rep
Thanks


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Jakwob - 21.07.2015

Nice work mate and thanks for the pastebin link +rep


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 21.07.2015

Thanks mate.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Affan - 22.07.2015

Код:
enum PlayerData
{
        IdColor,
        ChatColor,
        Color
};
new AccInfo[MAX_PLAYERS][PlayerData];

public OnPlayerConnect(playerid)
{
	AccInfo[playerid][IdColor] = 4294967295;
	AccInfo[playerid][ChatColor] = 4294967295;
	new colors[] =
	{
		4294967295, //White
		4294902015, //Yellow
		4278190335, //Red
		65535, //Blue
		1861762303, //Green
		1768516095, //Gray
		4205821695, //Pink
		4258273279, //Gold
		502396415, //Cyan
		3522502143, //Lime Green
		2386452479, //Purple
		2561656831, //Blue Gray
		2147472639, //Aqua
		1867397119 //Brown
	};

	AccInfo[playerid][Color] = colors[random(sizeof(colors))];
	SetPlayerColor(playerid, AccInfo[playerid][Color]);
	return 1;
}
This should fix your problem with the black color.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 22.07.2015

Thread Updated.
-bug has been fixed, Thanks to Affan.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - InCred - 24.07.2015

Awesome work buddy


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 25.07.2015

Thanks and enjoy.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - AbdulBasit - 11.08.2015

Good Job Buddy .. Keep it up


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 12.08.2015

Thanks for your Feedback.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - NoahF - 13.08.2015

Simple and good! I'm sure stunt/freeroam servers will love this.


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - SpikY_ - 14.08.2015

Thanks and Enjoy!


Re: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Trollerz - 18.09.2015

nice


Respuesta: Chat and ID Color Changer ( With RGB Colours 0-255, Released!) - Coringa253 - 18.09.2015

Good Job ! = )