home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Aventura
/
pendekar.swf
/
scripts
/
DefineSprite_96
/
frame_1
/
DoAction.as
< prev
Wrap
Text File
|
2006-05-08
|
462b
|
31 lines
this.onEnterFrame = function()
{
tellTarget(_parent)
{
if(right && !duck)
{
moveRight();
}
else if(left && !duck)
{
moveLeft();
}
else if(attack)
{
attCombo(1);
}
else if(jump)
{
jumpUp();
}
else if(duck)
{
duckDown();
}
else if(special)
{
attSpecial();
}
}
};