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
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
addhook("spawn","shoot") function shoot(id) menu(id,"Choose one, Grenadier|Famas,First Recon|Ump45,Overwatch|m249,Sniper|Scout,|Special ops|m4a1") end addhook("menu","mw2") function mw2(id,menu,button) if(menu=="Choose one") then if(button==1) then parse ("setmaxhealth "..id.." 105") parse("setarmor "..id.." 110") return "39,2,51,52"; end if(button==2) then parse ("setmaxhealth "..id.." 110") parse("setarmor "..id.." 120") return "24,6,51,52"; end if(button==3) then parse ("setmaxhealth "..id.." 107") parse("setarmor "..id.." 115") return "40,3,51,53"; end if(button==4) then parse ("setmaxhealth "..id.." 80") parse("setarmor "..id.." 150") return "34,1,52,53"; end if (button==5) then parse ("setmaxhealth "..id.." 110") parse("setarmor "..id.." 105") return "32,5,87,53,56"; end end end