http://www.unrealsoftware.de/files_show.php?file=288
i want make use button with ammo what is the initarray for ammo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
addhook("use","usasa") function usasa(id,event,data,x,y) if x == 49 and y == 25 then if event == 100 then menu(id,"Open Door 1,Open For == | 600$") end end end addhook("menu","_menu") function _menu(id,title,key) local money = player(id,"money") if (title == "Open Door 1") then if (key == 1) then if [^^Here^^]>100 then parse("setmoney "..id.." "..(player(id,"money") - 600)) parse("trigger buyme1") end end end end