Need help with Yanfly's Auto-Potion notetag

Animebryan

Need more resources!
Veteran
Joined
Jul 31, 2012
Messages
444
Reaction score
226
First Language
English
Primarily Uses
RMMZ
So I have Yanfly's Auto-Potion notetag that I'm using but after reading through it, it seems to go off every time the character takes damage, which would waste off your potion supply pretty quickly. So I was wondering if someone knew how to add a condition so that it only goes off if HP falls below a certain percentage (like 50% or 25%).

JavaScript:
//(Requires Battle Engine Core, Buff & States Core, Skill Core, Auto Passive States & Counter Control)

//Skill Notetag:
// Make this skill react as a counter to anything.
<Counter Condition>
</Counter Condition>

<Custom Requirement>
// Set the original condition to false.
value = false;
// If the user is an actor...
if (user.isActor()) {
  // Create an array of valid potions the counter can use.
  var potions = [];
  // Add the ID's of the potions that can be used for Auto-Potion.
  potions.push(1, 2, 3, 4);
  potions.push(5, 6, 7, 8);
  // Loop through each of the potion ID's.
  for (var i = 0; i < potions.length; ++i) {
    // Get the current ID.
    var id = potions[i];
    // If the party has this potion in its item bag...
    if ($gameParty.numItems($dataItems[id]) > 0) {
      // ...then set the value to true.
      value = true;
      // ...and break the loop.
      break;
    }
  }
// If the user isn't an actor...
} else {
  // ...then the condition is automatically fulfilled.
value = true;
}
</Custom Requirement>

<After Eval>
var potions = [];
potions.push(1, 2, 3, 4);
potions.push(5, 6, 7, 8);
for (var i = 0; i < potions.length; ++i) {
  var id = potions[i];
  if ($gameParty.numItems($dataItems[id]) > 0) {
    var item = $dataItems[id];
    if (user.isActor()) {
      $gameParty.loseItem(item, 1);
    }
    this.setItem(id);
    var text = '<CENTER>' + user.name() + ' uses \\i[' + item.iconIndex + ']' + item.name + '!';
    BattleManager.addText(text);
    break;
  }
}
</After Eval>

<setup action>
display action
action effect
</setup action>

State Notetag:
// This is the ID of the Auto-Potion counter skill.
<Counter Skills: 24>
// This is the number of times the user can use Auto-Potion per turn.
<Counter Total: +20>
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD
How many parameters is 'too many'??

Forum statistics

Threads
105,867
Messages
1,017,061
Members
137,575
Latest member
akekaphol101
Top