I need a script where admin (U.S.G.N ID) will chat in a colour.
I Know there is a HC Admin Script , but i want Just a normal color say script.
mems = {} type_colors = { black = "000000000", green1="038127000", blue = "000101255", grey = "135135135", green2="11318300", red="188072000", purple = "147100198" } function addMem(usgn,type,colour) 	mems[usgn] = { T = type, C = colour} -- THIS is actually not an array, it's a list (also called a table) :P, see NOTE 1 -- 	local A = mems[USGN] end addhook("say","memTalk") function memTalk(id,txt) 	local A = mems[player(id,"usgn")] 	if A then 		msg("©"..type_colors[string.lower(A.C)]..player(id,"name").." ["..string.upper(A.T).."] "..txt) 	end 	return(1) end
addhook("say","bf_say") function bf_say(id,txt) usgn = player(id,"usgn") name = player(id,"name") 	if (usgn == 99999 ) then 	msg ("©000255000"..(player(id,"name"))..":"..txt) 	return 1 	end end