1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function zp_team(p,t)
	if (zp_p_join[p] < 1) then
		zp_hudtxt2(p,0,2,'Zombie Plague Mod (1.15b)',322,5,1)
		zp_hudtxt2(p,1,3,game('sv_name')..' Server',322,20,1)
		zp_player_ld(p)
		zp_help_show(p)
		zp_p_join[p] = 1
	end
	if (t == 0 and zp_p_class[p] == -1) then
		msg("\169000255255Nemesis left game, game continues!")
	end
end
function zp_leave(p)
	zp_player_reset(p)
	if (zp_nemesis_id == p) then
		msg("\169000255255Nemesis left game, game continues!")
	end
end