76
Gameplay / Re: FF VIII How to MOD?
« on: 2017-10-14 19:06:49 »
Now he use vampire on it self XD (in the code that you send me =/)
Im trying now just he uses triple, i think its more simple so i did:
1-custom=2 / anim=13
2-magic=4(blizzard) / anim=11
3-magic=34(triple) / anim=11
5-custom=20 (vampire) / anim=14
-----------
INT AI
target(200)
domoveid(5)
-----------
TURN AI
if (self.hp <= 5) {
if (self.varDC == 0) {
self.varDC = 1
target(200)
domoveid(3)
return
}
}
else if (rand() % 3 == 0) {
target(201)
choose(1, 5, 5)
}
else {
target(201)
domoveid(2)
if (self.status == TRIPLE) {
target(201)
domoveid(2)
target(201)
domoveid(2)
}
return
}
-----
But he still crashes the game doing vampire on it self
Im trying now just he uses triple, i think its more simple so i did:
1-custom=2 / anim=13
2-magic=4(blizzard) / anim=11
3-magic=34(triple) / anim=11
5-custom=20 (vampire) / anim=14
-----------
INT AI
target(200)
domoveid(5)
-----------
TURN AI
if (self.hp <= 5) {
if (self.varDC == 0) {
self.varDC = 1
target(200)
domoveid(3)
return
}
}
else if (rand() % 3 == 0) {
target(201)
choose(1, 5, 5)
}
else {
target(201)
domoveid(2)
if (self.status == TRIPLE) {
target(201)
domoveid(2)
target(201)
domoveid(2)
}
return
}
-----
But he still crashes the game doing vampire on it self