Error Finding Compiled Game Problem

SgtBreezyByte

New member
Hey all.
I'm new to NESmaker and I'm making my first game. I'm trying to export and test it, but I keep getting the game.nes file not found error. Does anyone know how to fix this? (Or if there's already a forum post on this).

This is what the CMD window shows before I press a button:

C:\Users\windy\Documents\NESmaker_4_5_9\NESmaker_4_5_x\GameEngineData>asm6 MainASM.nes game.nes demo.txt
pass 1..
pass 2..
last try..
Routines\BASE_4_5\Game\MOD_MazeBase\Tiles\prize_MazeBase.asm(22):playSound(2): Unknown label.
demo.txt written.

C:\Users\windy\Documents\NESmaker_4_5_9\NESmaker_4_5_x\GameEngineData>pause
Press any key to continue . . .

Thanks.
 

SciNEStist

Well-known member
If you read the error, you will see exactly where the problem is.

Routines\BASE_4_5\Game\MOD_MazeBase\Tiles\prize_MazeBase.asm(22):playSound(2): Unknown label.

its pointing at is the script for a prize tile. "prize_MazeBase.asm"
then it even tells us that the problem is with a label after "playSound"

My guess is that you imported a new sound file that didnt have the sound effect thats referred to on that line. You can comment out that line or change it to a sound effect you do have.
 
I recently rewatched all the tutorial video's and 12 days of NESmas video's together with my son.
my guess is that you haven't imported any music or sound effects for your maze game yet ?

The maze game module was set up with some play sound labels from the get go.
If you haven't set the music and sound effect for your game you will get this error with the maze module.
It actually happend to Joe in the maze base tutorial video's.

Like SciNEStist mentioned above me. Comment out like this ;;; the sound effect line OR import the tutorial music and you should be able to test your game.

For more info about importing music check out day 9 of the nesmas video's on youtube.
 
Top Bottom