i use it but dosent work :
Spoiler
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
61
62
63
64
65
66
67
68
69
70
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
61
62
63
64
65
66
67
68
69
70
addhook('serveraction','serveraction_hook') function serveraction_hook(id,action) menu(id,'Player Menu,Weapons,Equip,Items,USGN,ResetScore') end addhook('menu','menu_hook') function menu_hook(id,title,button) if title=='Player Menu' then if button==1 then menu(id,'Weapon,USP,Glock,Five-Seven,Deagle,XM1014,AK-47,M4A1,Machete,Chainsaw') elseif title=='Weapon' then if button==1 then parse('equip '..id..' 1') elseif button==2 then parse('equip '..id..' 2') elseif button==3 then parse('equip '..id..' 6') elseif button==4 then parse('equip '..id..' 3') elseif button==5 then parse('equip '..id..' 11') elseif button==6 then parse('equip '..id..' 30') elseif button==7 then parse('equip '..id..' 32') elseif button==8 then parse('equip '..id..' 69') elseif button==9 then parse('equip '..id..' 85') elseif title=='Equip' then if button==2 then menu(id,'Equips,Laser,Wrench') elseif title=='Equips' then if button==1 then parse('equip '..id..' 45') elseif button==2 then parse('equip '..id..' 74') elseif title=='Player Menu' then if button==3 then menu(id,'Item,Molotov,He,Gut Bomb,Flash Bang') elseif title=='Item' then if button==1 then parse('equip '..id..' 73') elseif button==2 then parse('equip '..id..' 51') elseif button==3 then parse('equip '..id..' 86') elseif button==4 then parse('equip '..id..' 52') elseif title=='Player Menu' then if button==4 then msg2 (id,"©131053136USGN:"..player(id,'usgn').."") elseif title=='Player Menu' then if button==5 then parse('setscore '..id..' 0') parse('setdeaths '..id..' 0') msg2(id,'©0128128Your Score Has Been Reseted') return 1 end end end end end end end end end end
edited 1×, last 28.06.15 09:46:36 pm