Flash rpg part 17: aiming your gun

Watch Flash Rpg Part 17: Aiming Your Gun video clip

CODE: onClipEvent(enterFrame){ if(Key.isDown(Key.DOWN)){ _root.char.gotoAndStop(1); _root.char._rotation +=5; } } onClipEvent(enterFrame){ if(Key.isDown(Key.UP)){ _root.char.gotoAndStop(1); _root.char._rotation -=5; } } onClipEvent(enterFrame){ if(Key.isDown(Key.SPACE)){ _root.char.gotoAndStop(2); } } onClipEvent(load) { speed=7; } onClipEvent(enterFrame) {if(Key.isDown(Key.RIGHT)){ _root.char.gotoAndStop(1); _x+=speed; } if(Key.isDown(Key.LEFT)){ _root.char.gotoAndStop(1); _x-=speed; }}
Video hosted by YouTube

Recommended Videos