This is about Zombies game mode.
I have a zombie server which players fight against Bots (Zombies). When someone join the survivors team nobody can join it too until the next round. They are only able to join Zombies but the server is for players fight against Zombies (bots) (Im using a script which dont let players join zombies, only bots). Then i tried to fix the problem using this scripts i made :
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
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
addhook("serveraction","k_lol3") function k_lol3(id, action) 	if action == 3 and player(id, 'team')==0 then --This one makes the player join CT with F4 key. 		parse('makect '..id..'') 	end end addhook("join","k_lol2") function k_lol2(id) 	parse('mp_wpndmg Five-Seven 10000') -- Forget about this one 	parse('hudtxt2 '..id..' 2 "©255255255 Press F4 To Join CT!" 240 430') --Tells player F4 Info 	parse('hudtxt2 '..id..' 0 " '..player(id,"score")..'" 0 415') -- Forget about this one end addhook('team','lolteamxd') function lolteamxd(id, team) 	if team == 0 then 		parse('hudtxt2 '..id..' 2 "©255255255 Press F4 to Join CT" 260 85') --Tried to do the same as k_lol2 function 	end end addhook('team','_teamk_') function _teamk_(id, team) 	if team == 1 or 2 then 		parse('hudtxt2 '..id..' 2 "©255255255 " 240 430') --This one deletes the F4 info after player join CT 		parse('hudtxt2 '..id..' 3 "©255255255 " 260 85') 	end end addhook('minute','ssk') function ssk() 	msg('©051255204Press F4 To join ©000000000CT ©051255204=D') --This one tells the F4 info to player who skip the hud info end
The script is too basic, noob and stupid because im not pro at lua yet. YET ^.^
Most of people in my server are newbies and they problably dont read the chat or dont know how to answer or dont know how to press F4 , they stay trying to join CT with the default change team menu of CS2D and they cant.
Hope you can help me, if not anyway thx.
PS:I only can go to PC at weekends then i will only can answer you next 5 days, also i can check with my android mobile.