RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

[RESOLVED] Always Escape

Started by MarkDarkness, October 09, 2009, 01:41:08 PM

0 Members and 1 Guest are viewing this topic.

MarkDarkness

Hey there, all... quick question here.

I'm trying to set up a script or do an edit which enables the party to always escape, 100% chance, unless the "Escape Allowed" script is set to off, of course.

Had no luck so far... anybody can help out?

Thanks,

Zylos

#1
Is it that you want the party to always escape 100% regardless of agility just anytime you select the escape button, or only able to escape 100% after some sort of set conditions, like a switch being on or a skill being used?




MarkDarkness

100% escape chance, unconditionally.

Ideally I'd like a variable to control it in percentages, removing the involvement of AGI, but since I didn't find any way to do that, 100% chance will do just fine.

tidloc

That should be quite short, I'll write ut for you, when I get home from work.
Also with the Percentage of successfull escape shouldn't be a problem.  ;D
[...]And they feared him.
He understands that cruelty arises from opportunity![...]

Zylos

Having it always be 100% chance is pretty easy, it's just one line at Scene_Battle 2, line 113. Change it to "success = rand(100) < 50 * 3", and voila, they will always escape if they're allowed to.

OR

If you want it to be percent chance, change that line to "success = rand(100) < $game_variables[5]" with the variable 5 being replaced by the ID of what variable you want to use. It'll select a random number from 0-100, and if that number is lower than your percent variable, you can escape. I hope that's what you meant, anyway.




MarkDarkness

Thanks a whole lot, guys! :) That really helped.