- Joined
- Jul 10, 2020
- Messages
- 20
- Reaction score
- 1
- First Language
- English
- Primarily Uses
- RMMV
I figure this might be the sort of thing where I should alter one of the manager js files rather than getting a plugin.
So, I want to have a little more control over which enemies are allowed to be escaped successfully or not rather than just disabling escaping in general.
So what I've done is I've got the actors and enemies pretty much relying on 0.5 * $gameParty.agility() / $gameTroop.agility() to define whether escape will be successful or not by having the player AGI locked at 30 through all levels and enemies having 10 AGI to be guaranteed escapes, 30 AGI to be 50/50 escapes, and 99 AGI to be guaranteed fails.
But something is allowing occasional escaping from the 99 AGI enemies when the player should be failing every time. I think the issue could be there is some kind of increase in chances with every failed attempt, and I don't know what to remove to stop it. But I mean, it just could be my own bad with how I set this up.
For those wondering why not just disable the escape outright for these 99 AGI enemies, there is a condition in battle that can be met which will add a state to them that lowers thier AGI to around 30% of what they had, allowing for escape once that happens.
I'm thinking there's gonna be something in one of the main js files that I can simply alter or outright remove to stop this increase in escape success chances so that AGI 99 can can't be escaped until their AGI is lowered by event conditions.
Please let me know what it is I should alter in the js files and where... or if I need to change the system I got. Hopefully I don't need to change it though.
So, I want to have a little more control over which enemies are allowed to be escaped successfully or not rather than just disabling escaping in general.
So what I've done is I've got the actors and enemies pretty much relying on 0.5 * $gameParty.agility() / $gameTroop.agility() to define whether escape will be successful or not by having the player AGI locked at 30 through all levels and enemies having 10 AGI to be guaranteed escapes, 30 AGI to be 50/50 escapes, and 99 AGI to be guaranteed fails.
But something is allowing occasional escaping from the 99 AGI enemies when the player should be failing every time. I think the issue could be there is some kind of increase in chances with every failed attempt, and I don't know what to remove to stop it. But I mean, it just could be my own bad with how I set this up.
For those wondering why not just disable the escape outright for these 99 AGI enemies, there is a condition in battle that can be met which will add a state to them that lowers thier AGI to around 30% of what they had, allowing for escape once that happens.
I'm thinking there's gonna be something in one of the main js files that I can simply alter or outright remove to stop this increase in escape success chances so that AGI 99 can can't be escaped until their AGI is lowered by event conditions.
Please let me know what it is I should alter in the js files and where... or if I need to change the system I got. Hopefully I don't need to change it though.