For example:
I wrote: !msg guys come to sH for cw!
if any member join the game he can see the this message
if its not member he cant see. Thanks
My try:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Members = {50998} addhook("say","_say") function _say(id,txt) 	for _, u in ipairs(Members) do 	 	if player(id,"usgn") == u then 			for id = 1,#Members do 				if txt:sub(1,4) == "!msg" then 					local tx = txt:sub(6) 					parse('hudtxt2 '..id..' 0 "'..tx..'" 500 100 -1') 					return 1 				end 			end 		end 	end end