Pages: 1
Topic closed
How do you create a jet fighter AI and an enemy missile AI. Also how do you creat a friendly missile. Help will be much appreciated.
Offline
Sorry if this may sound stupid, but what's a friendly missle?
Jet fighter AI: What should it do?
Enemy missle: Just tries to continuously shoot the player, I assume?
<when green flag clicked>
<forever>
<go to[ jet fighter ai
<point towards( player
<repeat until><< <touching[ edge <or> <touching[ player >>
<move( 5 )steps>
<end>
<end>
Offline
thanks that should get me on track, ill just add in velocity so u can actually dodge the missiles. Thanks
P.S a friendly missile is a missile either shot by you or your allie.
Offline
idk
Offline
scratchie1234567890 wrote:
thanks that should get me on track, ill just add in velocity so u can actually dodge the missiles. Thanks
P.S a friendly missile is a missile either shot by you or your allie.
Got it. Then for the friendly missles, programming is easy...
<when green flag clicked>
<forever>
<go to[ player
<point towards( enemy
<repeat until><< <touching[ edge <or> <touching[ enemy >>
<move( 5 )steps>
<end>
<end>
Offline
Topic closed
Pages: 1