for example: !white etc... with commands like
Forum
![>](img/i_next.png)
![>](img/icons/cs2d.png)
![>](img/i_next.png)
![>](img/i_next.png)
How to change color during game
4 replies![To the start](img/i_first.png)
![Previous](img/i_prev.png)
![Next](img/i_next.png)
![To the start](img/i_last.png)
for example: !white etc... with commands like
![user](img/i_friend.png)
@
![user](img/i_friend.png)
e.g.:
![thread](img/i_forum.png)
![cs2d](img/icons/cs2d.png)
![thread](img/i_forum.png)
![cs2d](img/icons/cs2d.png)
just search for something like "chat color"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clr = { user = {}, ["red"] = "255000000", ["green"] = "000255000", ["blue"] = "000000255" } addhook("join","_j") function _j(id) 	clr.user[id] = clr.red end addhook("say","_s") function _s(id,t) 	for k,v in pairs (clr) do 		if t:find(k) then 			clr.user[id] = clr[k] 			return 1 		end 	end 	msg("/169..clr.user[id]..player(id,"name")..t) end
Thx For LUA
![To the start](img/i_first.png)
![Previous](img/i_prev.png)
![Next](img/i_next.png)
![To the start](img/i_last.png)