YANFLY ENGINE ACE - LTP CONDITIONS

RPG Maker VX Ace

Lunatic Targets Package

  • YF
  • 01/02/2012 06:03 PM
  • 1205 views


DL Link

This is a script for Lunatic Targets Package Scopes with conditional themed scopes. These scopes include targeting a group of units whose stats are above or below a certain amount, current HP, MP, or TP is above or below a certain percentage, whether or not they’re affected by a specific state, or whether or not they’re affected by all of the specified states.

Install this script under YEA – Lunatic Targets. Then, proceed to use the proper effects notetags to apply the proper LTP Conditions item desired. Look within the script for more instructions on how to use each effect.



Condition Scope No.1: Current Stat Above

This will select all targets in the specified team whose current HP, MP, or TP is x% or above x%. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes stat above x%>
<custom target: allies stat above x%>
<custom target: every stat above x%>

Replace “stat” with HP, MP, or TP.
Replace x with the number percentage requirement.



Condition Scope No.2: Current Stat Below

This will select all targets in the specified team whose current HP, MP, or TP is x% or below x%. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes stat below x%>
<custom target: allies stat below x%>
<custom target: every stat below x%>

Replace “stat” with HP, MP, or TP.
Replace x with the number percentage requirement.



Condition Scope No.3: Stat Above

This will select all targets in the specified team whose specified stat is x or above x. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes stat above x>
<custom target: allies stat above x>
<custom target: every stat above x>

Replace “stat” with MAXHP, MAXMP, ATK, DEF, MAT, MDF, AGI, or LUK.
Replace x with the number requirement.



Condition Scope No.4: Stat Below

This will select all targets in the specified team whose specified stat is x or below x. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes stat below x>
<custom target: allies stat below x>
<custom target: every stat below x>

Replace “stat” with MAXHP, MAXMP, ATK, DEF, MAT, MDF, AGI, or LUK.
Replace x with the number requirement.



Condition Scope No.5: Any State

This will select all targets in the specified team who is afflicted by any of the listed states. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes any state x>
<custom target: foes any state x, x>
<custom target: allies any state x>
<custom target: allies any state x, x>
<custom target: every any state x>
<custom target: every any state x, x>

Replace x with the state’s ID.



Condition Scope No.6: All States

This will select all targets in the specified team who is afflicted by all of the listed states. Targets will not be re-added if the targets already exist within the current targeting scope.

<custom target: foes all state x, x>
<custom target: allies all state x, x>
<custom target: every all state x, x>

Replace x with the state’s ID.

— And that’s all, folks! —

Original Blog Page