Just downloaded, and I like it. I really like the battle system, and all the classes (I became an Aura Knight
). Few things:
- After I saved for the first time, it somehow gave me 1200 xp, and thus I gained 4 levels for free.
- It doesn't display the numerical value of ur enemies hp, just the bar.
- I would suggest, although it's alright now, that you make a more graphical menu system, but that's just me. (Menu('s and Lbl's and Goto = :knight:
)
- I'm guessing there isn't a way to get any weapons or armour yet.
- It should tell you whether or not a file has already been saved too, instead of just saving over it.
- I really like the info screens, where you move left or right and it shows a different screen. :thumb:
I haven't looked at the code, so I'll do that so I can give you some optimization tips. All-in-all a very good demo. I can't wait for more!
EDIT: Some optimization tips:
You don't need )'s or "'s before ->
You can change this:
c1-->
CODE |
ec1If ListA(=10c2 |
ec2
to:
c1
-->
ec2
Saves a byte each time (there were a few that I saw like that).
And of corse, try avoiding Lbl-Goto's. You have a few instances that you Goto out of an If-Then, which cause a Memory leak, and cause the game to go slower.