1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
function string.split(t,b)
	local cmd = {}
	local match = "[^%s]+"
	if type(b) == "string" then match = "[^"..b.."]+" end
	for word in string.gmatch(t, match) do table.insert(cmd, word) end
	return cmd
end
function zp_print(c,t)
	print(color[c]..'[ZP] '..t)
end
function zp_hudtxt2(p,s,c,t,x,y,a)
	parse('hudtxt2 '..p..' '..s..' "'..color[c]..''..t..'" '..x..' '..y..' '..a)
end
function zp_hudtxt(s,c,t,x,y,a)
	parse('hudtxt '..s..' "'..color[c]..''..t..'" '..x..' '..y..' '..a)
end
function zp_msg2(p,c,t)
	msg2(p,color[c]..''..t)
end
function zp_msg(c,t)
	msg(color[c]..''..t)
end
function zp_snd2(p,s)
	if (zp_sound > 0) then
		parse('sv_sound2 '..p..' '..snd_dir..''..zp_adv_snd[s]..'.wav')
	end
end
function zp_snd(s)
	if (zp_sound > 0) then
		parse('sv_sound '..snd_dir..''..zp_adv_snd[s]..'.ogg')
	end
end