edited 1×, last 29.05.19 12:40:14 pm
Forum
CS2D Scripts :notok::notok:
11 replies 1
1
2
3
4
2
3
4
addhook ("say", "preventsay") function preventsay (id, message) 	return 1 end
edited 1×, last 29.05.19 12:40:22 pm
1
2
3
4
5
2
3
4
5
addhook("say","s",1) function s(id,tx) parse("msg "..tx.."@C") return 1 end
edited 1×, last 29.05.19 12:40:28 pm
1
2
3
4
5
2
3
4
5
addhook("say","s",1) function s(id,txt) parse("msg "..txt.."@C") return 1 end
function s(id,txt)
msg(' '..txt..' @C')
return 1
end
1
2
3
4
5
2
3
4
5
addhook("say","_say") function _say(id,txt) msg(txt.."@C") return 1 end
1