home *** CD-ROM | disk | FTP | other *** search
- // Bank ATM Menu
-
- menulevel main "consolecmd reset"
-
- headeritem "jcx yt -50 string \"WELCOME MS. SINCLAIR\""
- enditem
-
- menuitem "xl 80 yt -100 string \" WITHDRAW\""
- actionitem "pushmenu sub1"
- selitem "xl 80 yt -100 string2 \"> WITHDRAW\""
- enditem
-
- menuitem "xl 80 yt -130 string \" DEPOSIT\""
- actionitem "pushmenu sub2"
- selitem "xl 80 yt -130 string2 \"> DEPOSIT\""
- enditem
-
- menuitem "xl 80 yt -160 string \" WIRE FUNDS\""
- actionitem "pushmenu sub3"
- selitem "xl 80 yt -160 string2 \"> WIRE FUNDS\""
- enditem
-
- menuitem "xl 80 yt -190 string \" ACCOUNT STATUS\""
- actionitem "pushmenu sub4"
- selitem "xl 80 yt -190 string2 \"> ACCOUNT STATUS\""
- enditem
-
- menuitem "xl 80 yt -220 string \" LOG OFF\""
- actionitem "consolecmd quit"
- selitem "xl 80 yt -220 string2 \"> LOG OFF\""
- enditem
-
- // SUB1 MENU
- menulevel sub1
- headeritem "jcx yt -50 string \"WITHDRAW FUNDS\""
- enditem
- headeritem "jcx yv 0 bstring \"LOCAL TRANSFERS DISABLED DUE\""
- enditem
- headeritem "jcx yv -30 bstring \"TO BANK SECURITY BREACH\""
- enditem
- menuitem "xl 80 yt -300 string \"\""
- actionitem ""
- selitem "xl 80 yt -300 string2 \"\""
- enditem
-
- // SUB2 MENU
- menulevel sub2
- headeritem "jcx yt -50 string \"DEPOSIT FUNDS\""
- enditem
- headeritem "jcx yv 0 bstring \"LOCAL TRANSFERS DISABLED DUE\""
- enditem
- headeritem "jcx yv -30 bstring \"TO BANK SECURITY BREACH\""
- enditem
- menuitem "xl 80 yt -300 string \"\""
- actionitem ""
- selitem "xl 80 yt -300 string2 \"\""
- enditem
-
- // SUB3 MENU
- menulevel sub3 "consolecmd wire"
-
- headeritem "jcx yt -50 string \"WIRE FUNDS\""
- enditem
-
- menuitem "xl 80 yt -300 string \"\""
- actionitem ""
- selitem "xl 80 yt -300 string \"\""
- enditem
-
- // SUB4 MENU
- menulevel sub4 "consolecmd balance"
-
- headeritem "jcx yt -50 string \"ACCOUNT STATUS\""
- enditem
-
- menuitem "xl 80 yt -300 string \"\""
- actionitem ""
- selitem "xl 80 yt -300 string \"\""
- enditem
-
-