Something like that I need:
Here the code
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
Admins = {1234} addhook("serveraction","adminaction") function adminaction(id,b) if b == 1 then for _, usgn in ipairs(Admins) do if player(id,'usgn') == usgn then menu(id,"Menu Admin,Kill") return 1 end end end end function k(pl) parse("killplayer "..pl) end function exist(a) if player(a,"exists") then return player(a,"name") else return "None" end end addhook("menu","adminmenu") function adminmenu(id,t,b) if t=="Menu Admin" then if b==1 then menu(id,"Kill Page 1@b,"..exist(1)..","..exist(2)..","..exist(3)..","..exist(4)..","..exist(5)..","..exist(6)..","..exist(7)..","..exist(8)..",Next") end elseif t=="Kill Page 1" then if b==1 then k(1) elseif b==2 then k(2) elseif b==3 then k(3) elseif b==4 then k(4) elseif b==5 then k(5) elseif b==6 then k(6) elseif b==7 then k(7) elseif b==8 then k(8) elseif b==9 then menu(id,"Kill Page 2@b,"..exist(9)..","..exist(10)..","..exist(11)..","..exist(12)..","..exist(13)..","..exist(14)..","..exist(15)..","..exist(16)..",Next") end elseif t=="Kill Page 2" then if b==1 then k(9) elseif b==2 then k(10) elseif b==3 then k(11) elseif b==4 then k(12) elseif b==5 then k(13) elseif b==6 then k(14) elseif b==7 then k(15) elseif b==8 then k(16) elseif b==9 then menu(id,"Kill Page 3@b,"..exist(17)..","..exist(18)..","..exist(19)..","..exist(20)..","..exist(21)..","..exist(22)..","..exist(23)..","..exist(24)..",Next") end elseif t=="Kill Page 3" then if b==1 then k(17) elseif b==2 then k(18) elseif b==3 then k(19) elseif b==4 then k(20) elseif b==5 then k(21) elseif b==6 then k(22) elseif b==7 then k(23) elseif b==8 then k(24) elseif b==9 then menu(id,"Kill Page 4@b,"..exist(25)..","..exist(26)..","..exist(27)..","..exist(28)..","..exist(29)..","..exist(30)..","..exist(31)..","..exist(32)) end elseif t=="Kill Page 4" then if b==1 then k(25) elseif b==2 then k(26) elseif b==3 then k(27) elseif b==4 then k(28) elseif b==5 then k(29) elseif b==6 then k(30) elseif b==7 then k(31) elseif b==8 then k(32) end end end
Please Help me