-Exp.Platformer- SWEETLEAF: 1st. DEMO

peteria

New member
I have been working passionately on this game now for a couple months with help from my great friends and collaborators. Now that I have a playable and more stable Demo I would like to present it here ^^ URL: https://www.dropbox.com/s/yqudj2nal2cn81t/game%20-%20Copy.nes?dl=0
It still has lots to fix and change and add yada yada. Feedback, Questions, Recommendations etc. would be fantastic to hear! Thanks to all the people who have helped me with this, especially to Jason. base1.png
 

dale_coop

Moderator
Staff member
Ohhh.... just spent 10 minutes on it (during my lunch time)... but I already see that it's a really great game. I love the mood of it (the graphics, the colors... the music and sounds <3).

I see a few points that could be improved :

- text box, when you press quickly on the B button, it skip the text... I think in your game, the text are important, you should prevent them to be skipped (more important if some of those texts trigger the screen or give an item). Here's a post about how to not skip the texts, if you need: http://nesmakers.com/viewtopic.php?p=11464#p11464

- the "transition" between screens looks "garbage-ish", you could easily fix that, modify the HandleScreenLoads.asm (in your "System" sub-folder), around line 9, replace:
Code:
	LDA #$00
	STA soft2001
with:
Code:
	LDA #$00
    STA $2001 	;; will make the screen transitions cleaner
    STA soft2001
Can't wait to play more

- When you die, sometimes, there is no more music...
You could fix that, commenting out the "StopSound" line in the Player Death script, cf: http://nesmakers.com/viewtopic.php?p=11709#p11709
 

peteria

New member
Thank you so much Dale! You’re always so nice and i’m happy to hear you enjoy it ^^ I don’t think I could’ve figured out how to fix these things without your help either ... I didn’t even know there were ways to fix it heh :D
 

peteria

New member
sorry about misspelling dale as dave in the beginning credits btw, was really tired, ill fix it with the next release of course ^^
 
Top Bottom