H
Hazedge
Guest
As the imagem shows, I'm trying to edit Iguion AI.
I'm trying to remove his Auto-Reflect even with Carbuncle, but everytime I try to remove anything in Counter tab it gives me this error.
The Counter tab had this code:
Code: [Select]
Code:
if (gfStolen != 204) { autostatus(23, 0)}battle.var60 += 1
In Turn tab there was this (gfStolen != 204) too but I could remove it without the error, and now if I try to put it back it gives me the same error.
Is it not possible to remove? Or I need to do something else to make it work?
This is what I did in Turn tab:
Code: [Select]
Code:
if (self.hp >= 8) { if (rand() % 2 == 0) { if (enemy.alive == 2) { target(204) domoveid(2) return } } else { target(201) domoveid(0) return }}if (self.hp > 4) { if (rand() % 2 == 0) { if (enemy.alive == 2) { target(204) domoveid(2) return } } else if (rand() % 2 == 0){ target(201) domoveid(0) target(201) domoveid(0) return } else { target(201) domoveid(0) return }}if (self.hp <= 4) { self.varDC += 1 if (self.varDC >= 3) { target(204) domoveid(1) return } if (rand() % 2 == 0) { if (enemy.alive == 2) { target(204) domoveid(2) return } } else if (rand() % 2 == 0){ target(201) domoveid(0) target(201) domoveid(0) return } else { target(201) domoveid(0) return }}
Last edited: