This AI's strategy focus on dash attacks. He will only do punches when the target is really in the range. Otherwise, he will move away (by walking diagonally). He really likes to use dash attacks
. And that's why he is Deep! If the opponent is too far in the z-axis, he will stop running and walk away again (diagonally).
However there's a problem which I still can't solve
. Sometimes if the target is exactly at the same z-position, he will do NOTHING.
. Will be really glad if someone will actually go through my script to check it up. Well, I have checked it up a few times and am now content with that, ;p . But I wrote the ai's strategy (or logics..) in comments throughout the code to make it easier to understand what I wanted to make.
He's quite strong though if you only use bandit/template. He's the worst AI against ranged moves D: .

However there's a problem which I still can't solve


He's quite strong though if you only use bandit/template. He's the worst AI against ranged moves D: .
Code:
void id(){
A(0,0); //reset keys
D(0,0);
J(0,0);
up(0,0);
down(0,0);
left(0,0);
right(0,0);
for (int i = 0; i < 400; i++){ //target
if (loadTarget(i) == 0 && target.num != self.num && target.hp > 0 && target.id < 100 && target.team != self.team){
break;
}
}
int xdst = self.x-target.x; //useful variables
int ydst = self.y-target.y;
int zdst = self.z-target.z;
int zbgu = self.z-bg_zwidth1;
int zbgb = bg_zwidth2-self.z;
int ztbgu = target.z-bg_zwidth1;
int ztbgb = bg_zwidth2-target.z;
int xbgr = bg_width-self.x;
int xabs = abs(xdst);
int yabs = abs(ydst);
int zabs = abs(zdst);
int sf;
float xzdashratio;
int zrangem = 120;
if(zabs == 0){
xzdashratio = 9999;
}else{
xzdashratio = (xabs+120)/zabs;
}
int xzratiomin = 5;
int punchrange = 50; //settings, important constantd
int punchzrange = 15;
int escapezrange = 100;
int dashattackrange = 120;
int dashrangerundiff = 150;
int dashrangebackrundiff = 40;
int dashattackrangerundiff = 80;
int dashattackrangebackrundiff = 0;
int dashattackrunrange = 200;
int dashingrange = 200;
int switchrange = 180;
int zswitchrange = 50;
int dashlimit;
int dashattacklimit;
if(self.facing == true){ //using the variable sf to read facing
sf = -1;
}else{
sf = 1;
}
if(target.blink == 0 && target.state != 14 && target.id < 100){ //the opponennt vulnerable?
if(xabs < punchrange){ //if he's very close
if(self.state == 2){ //I am running? well, time to do a dash attack..
J(1,0);
A(1,0);
}else if(zabs < punchzrange){ //no? is the opponent close enough in z-axis to punch?
if(sf == 1){ //yeah so check whether I need to switch facing or not, and do the punch
if(xdst < 20){
A(1,0);
}else{
left(1,0);
}
}else{
if(xdst > -20){
A(1,0);
}else{
right(1,0);
}
}
}else{ //not close enough to punch? then I'll move diagonally
if(zdst < 0){ //approach the target in z-axis
down(1,1);
}else{
up(1,1);
}
if(xdst > 0){ //but away from it in x-axis
right(1,1);
}else{
left(1,1);
}
}
}else{ // hmm.. so he's not very close (in x-axis)
if(self.state == 2){ //if I am running
if(target.state == 2 || target.state == 5){ //if the target is running/dashing, adjust range limits accordingly
if(target.facing == self.facing){
dashlimit = dashingrange - dashrangebackrundiff;
dashattacklimit = dashattackrange - dashattackrangebackrundiff;
}
else{
dashlimit = dashingrange + dashrangerundiff;
dashattacklimit = dashattackrange + dashattackrangerundiff;
}
}
else{
dashlimit = dashingrange;
dashattacklimit = dashattackrange;
}
if(xabs < dashlimit){ //if the target is close enough, I will do a dash.
J(1,0);
if(zdst < 0){
down(1,1);
}else{
up(1,1);
}
}else{ //the target isn't close enough. I stick to my zrangem
if(zdst < -zrangem - 1){
down(1,1);
}else if(zdst > -zrangem + 1 && zdst < 0){
up(1,1);
}else if(zdst > 0 && zdst < zrangem - 1){
down(1,1);
}else if(zdst > zrangem + 1){
up(1,1);
}
}
}
if(self.state == 2 || self.state == 5){ //if I can do dash attack
if(xabs < dashattacklimit){ //if he's even closer, I will do a dash attack as well.
A(1,0);
}
}
if(xzdashratio > xzratiomin){ //if I am in position to run
if(xdst > 0){ //I will chase my opponent
left(1,0);
}else{
right(1,0);
}
}else{ //however if we are apart in z-axis too far away,
if(xdst > 0){ //I will run away ;)
right(1,1);
}else{
left(1,1);
}
if(zdst < 0){
down(1,1);
}else{
up(1,1);
}
}
}
}else{ //nooo, the target is invulnerable!! Let's run away!
if(target.x < switchrange){ // I don't want to get cornered at the side, so I will switch sides if I need to.
right(1,1);
}else if(bg_width - target.x < switchrange){
left(1,1);
}else{
if(xdst > 0){
right(1,1);
}else{
left(1,1);
}
}
if(ztbgu < zswitchrange){
down(1,1);
}else if(ztbgb < zswitchrange){
up(1,1);
}else{
if(zdst < 0){
up(1,1);
}else if(zdst >= 0){
down(1,1);
}
}
}
}
TEMPE
Spoiler (Click to View)