In than problem?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
addhook("say","sayTeam") function sayTeam(id,txt) if player(id,"team") == 2 then if player(id,"health") > 0 then msg("©202225255"..player(id,"name").."©000000255 [CT]©144238144[LIVING]:©202225255"..txt) elseif player(id,"health") == 0 then msg("©202225255"..player(id,"name").."©000000255 [CT]©255106106[DEAD]:©202225255"..txt) end end if player(id,"team") == 1 then if player(id,"health") > 0 then msg("©202225255"..player(id,"name").."©255000000 [T]©144238144[LIVING]:©202225255"..txt) elseif player(id,"health") == 0 then msg("©202225255"..player(id,"name").."©255000000 [T]©255106106[DEAD]:©202225255"..txt) end end if player(id,"team") == 0 then msg("©202225255"..player(id,"name").."©255255255 [S]©255106106[DEAD]:©202225255"..txt) end return 1 end