Actors not moving or shooting

Well I've been making a game that required one of 4 ships to be selected. They spawn just fine however they wont move or fire.
Move code is
------
Rule: When ALL the following are happening
Recieves a key press: UP is DOWN
Do:
Move: Move in direction 90 relative to ACTOR in an ADDITIVE way, at a speed of 100
------
Same code just modified Key press and direction for different directions.

Firing code is just a simple:
Press key (spacebar)
DO:
EVERY 0.2 seconds
--Spawn actor (REDLASER) in direction 0 relative to SCENE
--Play sound (LASER) [ ]Loop [x]Run to completion, At volume 1, At pitch 1.

Every ship has nearly same coding, main difference is the move speed.

As I said, actors spawn perfectly so far, just don't want to move or fire, and I cant figure out why.
Sign In or Register to comment.