I am really good actionscripter. I already have my own movement, jump, side scrolling engine. And I already have a basic idea of a monster spawning engine.
I am making a RPG. So I am looking for someone who is good at 2/4 legged walking cycle, drawing clothes, eyes, hair, boots.
There is going to be a basic body, with different types of clothes that can go with the body.
This is my example of something I did in 3 minutes:
It is a mouse effect. Have a symbol in the library with a linkage ID of effect.
At work:Example
:onMouseMove = onMouseDown = mCreate;
:function mCreate()
:{
iD = random(9999999);
_root.createEmptyMovieClip("effect"+iD, _root.getNextHighestDepth());
_root["effect"+iD].attachMovie("effect", "effect_mc", this.getNextHighestDepth(), {_x:_xmouse,_y:_ymouse});
_root["effect"+iD].onEnterFrame = function()
{
if(this.gravity == undefined)
{
this.gravity = 0;
}
if(this.jump == undefined)
{
this.jump = -20;
}
this.gravity++;
this._y+=this.gravity;
updateAfterEvent();
if(this._y>200 & this.jump<0)
{
this.gravity = this.jump;
this.jump+=5;
}
if(this.jump == 0)
{
this._alpha-=5;
}
if(this._alpha == 0)
{
this.removeMovieClip();
}
}
:}