xboxscene.org forums

Pages: 1 ... 5 6 [7]

Author Topic: Action Menus, Install Discs, And More...  (Read 1266 times)

geniusalz

  • Archived User
  • Hero Member
  • *
  • Posts: 1635
Action Menus, Install Discs, And More...
« Reply #90 on: September 22, 2003, 12:56:00 PM »

Cool!

Thanks for correcting my code biggrin.gif
The labels I was using is more like VB


Now for MXM minigame programming  wink.gif
Logged

BenJeremy

  • Archived User
  • Hero Member
  • *
  • Posts: 5645
Action Menus, Install Discs, And More...
« Reply #91 on: September 22, 2003, 06:32:00 PM »

AARRGGHHHH..... I absolutely HATE debugging in the dark.

Unfortunately, that's EXACTLY what I'm forced to do at the moment. I've written a basic set of scripts to handle initial prep of a hard drive, when MXM is launched on DVD, if the drive isn't formatted.

It "mostly" works, but for some bizarre reason, the format isn't working in the script - but it works from the FTP! Same command.

Anyway, that's the hang up right now... I'm slogging through the code to make sure this thing will work. The bad thing is that there's no debugging involved: I have to run this in release mode, on a CD-RW, in a system that's got a fresh hard drive. The end result is that it takes FOREVER for a debug cycle, and often I get nothing meaningful.

I'm working hard right now, and few new things will be added before I do the "Bug Fix Release" - so it WILL be out shortly after I solve these current issues.
Logged

BenJeremy

  • Archived User
  • Hero Member
  • *
  • Posts: 5645
Action Menus, Install Discs, And More...
« Reply #92 on: September 22, 2003, 08:38:00 PM »

Ugh. Figured out the problem... testing continues. Hopefully, I'll wrap up tomorrow night. New "WIP" Binaries updated.
Logged

vexx22

  • Archived User
  • Newbie
  • *
  • Posts: 42
Action Menus, Install Discs, And More...
« Reply #93 on: September 28, 2003, 07:49:00 AM »

i tried the code with the box but it was wrong i correct it an it runs cool thing :-)

<Action>
SET YY 100
SET XX 100

:BLAH
Input

If %_GP_D_LF% == "1" GOTO LF
If %_GP_D_UP% == "1" GOTO UP
If %_GP_D_DN% == "1" GOTO DN
If %_GP_D_RT% == "1" GOTO RT
If %_GP_A% == "1" GOTO EXIT
Quit

:UP
SUB YY 5
GOTO DRAWIT
:DN
ADD YY 5
GOTO DRAWIT
:LF
SUB XX 5
GOTO DRAWIT
:RT
ADD XX 5
GOTO DRAWIT

:DRAWIT
BEGINDRAW
BOX %XX% %YY% 10 10 Black White
ENDDRAW
GOTO BLAH

:EXIT
QUIT

</Action>
Logged
Pages: 1 ... 5 6 [7]