Quote: "As for the special effects, I know, I was going to whip an explosion up but need to get a grasp on animated sprites first, know any tutorials?"
Na, you don't need a tutorial... it's easy. Have a better on fire character.
This uses the Blox 2.0 character and the attached image:
hide mouse
` Load your character
load image "Mainchar_.png",1,1
` Create the animated sprite (4 frames across 1 frame down using image #2)
create animated sprite 2,"Fire.png",4,1,2
` Create character sprite
sprite 1,0,0,1
` Offset character sprite so it's centered
offset sprite 1,sprite width(1)/2,sprite height(1)/2
` Offset the fire so it's centered on the head
offset sprite 2,sprite width(2)/2,100
` Make the fire a bit transparent
set sprite alpha 2,200
do
` Show the character
sprite 1,mousex(),mousey(),1
` Show the fire
sprite 2,sprite x(1),sprite y(1),2
` Animate the fire (frames 1 to 4 and change frames every 45 milliseconds)
play sprite 2,1,4,45
loop