09-22-2014, 06:53 PM
It is possible to make the AI character becomes trying to stay away from enemies
?
?
How do I keep the character away from enemies?
|
09-22-2014, 06:53 PM
It is possible to make the AI character becomes trying to stay away from enemies
?
09-23-2014, 12:36 AM
Maybe you write it so if they are facing the enemy they turn the opposite direction and double tap that direction to run away. And if they are facing opposite direction they double tap that direction to keep running that way.
I made a script so the AI runs towards someone if they are a certain distance away. Code: //run after enemy
DBZ LF2 website
![]() DBZ LF2 v0.4.3 - Namek Goku Update Trailer - September 25, 2024 DBZ LF2 mod v0.4.3 (September 28, 2024): Download
09-23-2014, 04:10 PM
It did not work.
![]() Already tried countless codes but I find it quite tricky to accomplish this
09-24-2014, 12:18 AM
(This post was last modified: 09-24-2014, 12:19 AM by eplipswich.)
(09-23-2014, 04:10 PM)LéoSilva Wrote: It did not work. You might want to take a look at this AI: http://lf-empire.de/forum/showthread.php?tid=8016 This is the AI of Annoying Henry, who specializes in keeping away from enemies.
//run after enemy
if (abs(self.x-target.x) > 450) { if (self.x-target.x > 0){ left(1,0); left(1,0); } else if (self.x-target.x < 0){ right(1,0); right(1,0); } } The > I colored red must of course be a < for your code. Try this code: Code: if (self.x-target.x)*((self.facing?1:0)*2-1) < 0 && (self.x-target.x)*((self.facing?1:0)*2-1) < 300){ There might be something wrong the the brackets though (those things: ( ) ), so you might need to fix that if you're using this code. |
« Next Oldest | Next Newest »
|