Cannot start new Adventure Game in 4.0.11 [SOLVED]

PortableAnswers

New member
Hello, I am trying to bring my adventure game over to 4.0.11.
I created a new project and chose the adventure module but every time I Export and Test, I get the following error.
https://imgur.com/a/9U6wEGE
 

dale_coop

Moderator
Staff member
You need to make a small modification, in the script "Routines\UserScripts\AdventureGame_Base\PowerUpCode\Powerup_IncreaseMoney.asm".
Change that line:
Code:
AddValue #$03, myMoney, #$01
To that:
Code:
AddValue #$03, myMoney, #$01, #$00
It should work.
 
Top Bottom