Author Topic: Menu( command in Axe? (SOLVED)  (Read 3779 times)

0 Members and 1 Guest are viewing this topic.

Offline Derf321

  • LV3 Member (Next: 100)
  • ***
  • Posts: 59
  • Rating: +0/-0
    • View Profile
Menu( command in Axe? (SOLVED)
« on: April 19, 2012, 12:53:36 pm »
Is there an alternative or way to make menu( work in Axe programs? Or would I have to use: http://ourl.ca/4129;msg=99195   ?
What are the r1, r2, r3 things in that routine, and where are they located?


Thank you all for your help!
« Last Edit: April 20, 2012, 06:09:30 pm by Derf321 »

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Menu( command in Axe?
« Reply #1 on: April 19, 2012, 12:54:36 pm »
You'd have to make some kin do of costume menu.
EDIT so for example you could download some subroutine.
« Last Edit: April 19, 2012, 12:55:36 pm by Sorunome »

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Derf321

  • LV3 Member (Next: 100)
  • ***
  • Posts: 59
  • Rating: +0/-0
    • View Profile
Re: Menu( command in Axe?
« Reply #2 on: April 19, 2012, 01:00:45 pm »
You'd have to make some kin do of costume menu.
EDIT so for example you could download some subroutine.

What do you mean?

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Menu( command in Axe?
« Reply #3 on: April 19, 2012, 01:03:25 pm »
You could do stuff like this:

Code: [Select]
<program code>
sub("menu")
<program code>
Lbl menu
<your menu program>
Return

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline shmibs

  • しらす丼
  • Administrator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2132
  • Rating: +281/-3
  • try to be ok, ok?
    • View Profile
    • shmibbles.me
Re: Menu( command in Axe?
« Reply #4 on: April 19, 2012, 01:25:38 pm »
there isn't any built in menu function for axe, so yes, you'd have to write your own or use sir's

Offline Derf321

  • LV3 Member (Next: 100)
  • ***
  • Posts: 59
  • Rating: +0/-0
    • View Profile
Re: Menu( command in Axe?
« Reply #5 on: April 19, 2012, 05:32:01 pm »
Thank you all for your replies! I used sirs, works perfect