1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
addhook("serveraction","_s") function _s(id,ac) if ac==1 then menu(id,"Test,1,2,3") end end addhook("menu","_m") function _m(id,title,button) if title=="Test" then if button==0 then msg2(id,"You cant close the menu") menu(id,"Test,1,2,3") end end end