- Joined
- Dec 29, 2014
- Messages
- 2
- Reaction score
- 0
- First Language
- English
- Primarily Uses
- RMVXA
So this has been eating at me for about half a year now.
Something I've been trying do in the game I'm working on in RPG Maker VX Ace.
I've almost finshed work on the project but as one final note I want to make it so you see a different title screen background were you to have beaten the game. I'm not sure how to do this.
I've seen plenty of other games do it, so I know it can be done.
Is there some way to set up a global switch of sorts that when loading the main menu, checks if the game's been beaten, swapping out the image it loads.
I am using a different script than the normal for the title screen so it'd have to be something I can simply add to it like the following:
An example:
if (gameCompleted == true)
{backgroundGraphic->Load(bgComplete.png)}
else
{backgroundGraphic->Load(bgNormal.png)}
I've been looking around the internet for ages, seeing if somebody has created a script or a chunk of code that can do this but I found nothing. I'm not even sure if you can really search this kinda thing as it's oddly too specific.
~ArcDargo
Something I've been trying do in the game I'm working on in RPG Maker VX Ace.
I've almost finshed work on the project but as one final note I want to make it so you see a different title screen background were you to have beaten the game. I'm not sure how to do this.
I've seen plenty of other games do it, so I know it can be done.
Is there some way to set up a global switch of sorts that when loading the main menu, checks if the game's been beaten, swapping out the image it loads.
I am using a different script than the normal for the title screen so it'd have to be something I can simply add to it like the following:
An example:
if (gameCompleted == true)
{backgroundGraphic->Load(bgComplete.png)}
else
{backgroundGraphic->Load(bgNormal.png)}
I've been looking around the internet for ages, seeing if somebody has created a script or a chunk of code that can do this but I found nothing. I'm not even sure if you can really search this kinda thing as it's oddly too specific.
~ArcDargo



