Ashar
-I'm an Actionscripter
-Seeking Animator
-Skill Level: 8 for AS
-Current Work: Look at my games
-Game Info: ?
-Contacts: drkgodz@hotmail.com(IM)
-Flash Version: Adobe CS3
-Deadline: None
I am thinking of makeing a 2D RPG. So I am looking for someone to make a basic human body(walking cycles, attacking motions, different eyes, hair styles, etc). And clothes to fit the basic body(shoes, shirt, etc). I can make weapons but it would be good to have someone else able to make weapons too. And backgrounds will be needed too. Contact me on Hotmail as I am on it alot.
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;
trace(this.gravity);
}
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();
}
}
}
Have a symbol in your library with the Linkage ID of effect. Then paste this in the main frame, voila! It is a mouse effect. I made this in 3 minutes without any mistakes. I really need a good animator.