Key: «4DKX3X8D»
I'm releasing a slightly better version of Smile Hexagon. This update features optimization, as well as general polishing. The game also recieved a tiny bit of balancing.
As always, any feedback is appreciated!
Loading back the file is also very easy! You can use the LOAD command. It follows a very similar syntax...
DIM LOADARR[0] 'AN ARRAY TO LOAD UP THE VARIABLES IN. YOU CAN SET THE SIZE AS 0
LOAD "DAT:<File Name>",LOADARR 'LOAD THE FILE BACK WITH THE SAME NAME YOU SAVED IT WITH
HIGHSCORE=LOADARR[0] 'RETRIEVE ALL THE SAVED VARIABLES
Use the SAVE command. You can save numerical arrays as DAT files by following this syntax...
DIM SAVARR[1] 'DECLARE AN ARRAY WITH THE SIZE BEING THE NUMBER OF VARIABLES YOU WANT TO SAVE
SAVARR[0]=HIGHSCORE 'PLACE ALL THE VARIABLES YOU WANT TO SAVE IN THE ARRAY
SAVE "DAT:<File Name>",SAVARR 'YOU CAN THEN SAVE THE FILE WITH ANY NAME YOU WANT
Well, you have to start by learning the foundations of programming, and then you can move on simple coding, etc. You can start by reading the official e-manual. It is important that you read it in its entirety, no skipping.
http://smilebasic.com/en/e-manual/10.php
Also, this is definitely not the final version. I'm not sure what else I could do besides making more patterns and maybe different difficulties.
If you have any ideas, bug reports, or just feedback in general, make sure to comment!
Also, the game lags a bit on Old 3DS, but it's not too serious. I'll see if I can optimize it a bit.
Key: «D3E8VXK1»
I guess I could share one of my personal projects for once...
It's Smile Hexagon! Obviously inspired by Super Hexagon.
My version could be a bit harder as you can't touch anything at all. It's also just one level, although there are different colors. There's also highscore saving and a not-so-special reward if you can last over 60 seconds.
As always, any feedback is appreciated!
You need to use the commands that start with MP. I think you must first call MPSTART.
I'm sorry if I'm not too helpful, but I haven't been able to test SB's wireless capabilities yet.
That's what the official e-manual is for! Take the time to read through it and you'll be coding in no time! You can find it here...
http://smilebasic.com/en/e-manual/10.php