skip to main |
skip to sidebar
I worked some more on Warrior for Hire. It took some time to get your inventory items to go between locations with you. I think I can figure out a way to make your head face the right way depending which building you exit. Next on the to do list: Fighting! The good stuff at last :) Same link again.
Warrior for Hire
Also check out the new addition! If you look closely you can see some electrical tape on the pickups. They needed a little help staying in place.
I updated the link in the previous post. You can now wear the shades! And lose health by walking over the black box. You can increase your health by drinking sodas. :)
Its a lot more scripting than I thought... for example:
// ||Waxon Script||
this.onEnterFrame = function(){
// character control
if(Key.isDown(Key.LEFT)){
dir = -100
_root.char._x -= 4;
_root.char._xscale = dir;
_root.char.gotoAndStop(2);
} else if(Key.isDown(Key.RIGHT)){
dir = 100
_root.char._x += 4;
_root.char._xscale = dir;
_root.char.gotoAndStop(2);
} else if(Key.isDown(Key.UP)){
_root.char._y -= 4;
_root.char._xscale = dir;
_root.char.gotoAndStop(2);
} else if(Key.isDown(Key.DOWN)){
_root.char._y += 4;
_root.char._xscale = dir;
_root.char.gotoAndStop(2);
} else{
_root.char.gotoAndStop(1); // idle
}
That is just to make the character walk around properly. This is not including when he bumps into stuff and his soon to come attacks.
Also the fonts are wrong and it doesn't always load properly.
More fixes to come!
This weekend I spent some quality time with Flash and ActionScript. I found a really good flash tutorial site a while back and have been thinking of making a game since. Then I saw this video... about Flash animation... and 40 hours later...
this came out
I really wanted you to be able to see the shades on him, but I am a noob. It can be done somehow I know.
Click those blue things in the corner. For fun.
Feel free to comment and critique.
In the future hopefully you will be able to go on quests to fight stuff, gain exp, buy rocket packs and night vision goggles. All that good stuff.
Allison out

Drawing a demon is a good way to perk up your mondays. This guy goes along with a story that's been brewing in my head for a while. He is one of seven demons out to control the living. Because he uses "magic" I didn't want to give him armour, but I still think he looks under-dressed. Just for the record, let it be known that I hate drawing feet.
Allison out.