I'm making a small shooter game and i cant find a command that will make a character wait before doing another command and still let the other characters move.
:(
we'll need to see your code to give the appropriate solution... but perhaps a simple "Wait(1);" may work.
SetTimer and IsTimerExpired. Use SetTimer(int timer, # of loops to wait); and then in repeatedly execute:
if(IsTimerExpired(int timer)){
shooting script
}
if you don't understand, look up those commands in the manual.
k ill try it thx.
k It worked thanks.