Page 1 of 1
Menus and Options in TRY
Posted: Fri Nov 04, 2011 6:26 am
by Garoslaw
Wondering if It's possible to change Enemy Ranks in a Try as well.
But I Can't figure out How to make a Option selection in a TRY file exactly, I seem to always mess up the "OPTION" command or something.
I'd like to ask anyone to Explain exactly how it works.
Re: Menus and Options in TRY
Posted: Fri Nov 04, 2011 6:30 am
by Scionox
Genocide Heart wrote:Wondering if It's possible to change Enemy Ranks in a Try as well.
"RANKRATE",0 //to disable autorank
"RANK",x //replace x with number that you need
Genocide Heart wrote:
But I Can't figure out How to make a Option selection in a TRY file exactly, I seem to always mess up the "OPTION" command or something.
:facepalm:
Use "CHOICES" command
Like
"REPEAT", -1
"IF", _stat = 0
"CHOICES", "Start", "Quit"
menuSelect = _stat
"IF", menuSelect = 0
// your code goes here
"ENDIF"
"IF", menuSelect = 1
// your code goes here too, see, i am lazy
"ENDIF"
"ENDIF"
"WAIT",40
"LOOP"
Re: Menus and Options in TRY
Posted: Sat Nov 05, 2011 11:52 am
by Garoslaw
blah. Thanks.