Start with a basic title screen.
Here are instructions:
Locate 13,13
? "(Title)"
WAIT 50
Locate 13,15
? "Created by (name)"
WAIT 50
Locate 13,16
? "Press A to START"
@LOOP
IF A AND #A THEN GOTO @LOP
GOTO @LOOP
@LOP
? is just an easier way to type PRINT. Locate just tells where to put it. A @LOOP Just makes something go somewhere else in a game, like if you press A it will bring you to the second.
I don't have any idea of how to load a map, but i know how to load sprites.
Spset 1,1
Spofs 1,0,0
Spscale 1,1
Spset will set a sprite. The two numbers after it are important. The first one is it's management number. That can be anything you want. It's like the sprites name. The 2nd number is which sprite from the smiletool that you want to place.
Spofs sets a sprites cordinates.
The 1st number..
oh and spscale makes a sprite any size you want.
To play music:
BGMPLAY 1
WAIT 50
BGMSTOP
Bgmplay will play music from the smiletool.
Wait 50 just waits for 50/60 second.
BGMSTOP stops playing music