home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Aventura
/
pendekar.swf
/
scripts
/
DefineSprite_212
/
frame_1
/
DoAction.as
< prev
Wrap
Text File
|
2006-05-08
|
539b
|
30 lines
this.onEnterFrame = function()
{
tellTarget(_parent)
{
if(inStage())
{
_X = _X + dirValue(speed);
}
else if(!inStage() && _parent.isScroll && dir == 1)
{
_parent.scrollStage(speed);
}
if(attack)
{
attDuck();
}
if(dir == 1)
{
if(!duck || !right)
{
gotoAndStop("fDuckIdle");
}
}
else if(!left || !duck)
{
gotoAndStop("fDuckIdle");
}
}
};