compilation error on adventure module, any suggestions?

NovaeTerrae

New member
so,
I've started trying to develop this little idea i had a while back into a game during my spare time, and for a while I thought I was making significant progress.....until I tried exporting and testing for the first time. the DOS box doesn't seem to be pointing to a .nes file, and one notable line of text reads "Addvalue<13>: unknown label"...... I'm going to guess it's an error occurring in the default emulator, I'd try to change it to FCEUX but I can't seem to locate a valid .nes file, only .MST......

I'm just a tad bit confused, so any help would be greatly appreciated.
-head@NovaeTerrae
dosbox.PNG
 

dale_coop

Moderator
Staff member
Hi NovaeTerrae, if you are making a new project, you should use the latest version (4.1) which is way different, new tutorial videos to follow too (cf the official www.thenew8bitheroes.com website).
But else, if you really want to use the 4.0.11... your PowerUp_IncreaseMoney script needs to be modified, open it, search for the line:
Code:
	AddValue #$08, myScore, #$01
And add ", #$00" at the end, like that:
Code:
	AddValue #$08, myScore, #$01, #$00
It should fix this error.
 
Top Bottom