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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function prefix(n) local x = tonumber(string.len(n)) if string.sub(map("name"),1,x) == n then return true end return false end if prefix("zm_") then 	parse("mp_autoteambalance 0") 	parse("mp_turretdamage 5") 	parse("mp_infammo 1") end addhook("spawn","spawnitem") function spawnitem(id) if prefix("zm_") then if player(id,"team") == 1 then 	parse("equip "..id.." 74") elseif player(id,"team") == 2 then 	parse("equip "..id.." 74") end end end addhook("kill","gre") function gre(id) if prefix("zm_") then if player(id,"team") == 1 then parse("equip "..id.." 72") end end end addhook("startround","start") function start() 	if prefix("zm_") then 		parse("bot_remove_all") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("bot_add_t") 		parse("sv_gm 4") 		parse("mp_autoteambalance 0") 		parse("mp_turretdamage 5") 		parse("mp_infammo 1") 		msg("BOT VS. PLAYER Enabled!@C") 	end end
Any idea what's the problem? Or better fix this :3