Difference between revisions of "VX Formula Library"

From HimeWorks
Jump to: navigation, search
(Created page with "Formulas are Ruby expressions that are evaluated at run-time. You can use them in damage formulas to determine how much damage you inflict with a skill, or you can use them in...")
 
 
Line 13: Line 13:
 
* v - game variables (equivalent to $gameVariables)
 
* v - game variables (equivalent to $gameVariables)
  
===Common MV Formulas===
+
===Common VX Formulas===
  
  

Latest revision as of 20:12, 20 February 2016

Formulas are Ruby expressions that are evaluated at run-time. You can use them in damage formulas to determine how much damage you inflict with a skill, or you can use them in script calls to perform certain functions that aren't provided through the event interface by default.

A formula may contain special formula variables that you can use to craft your formulas.

Damage Formulas

Damage formulas by default are used in Skills and Items, and are primarily used to determine how much base damage the action will inflict.

The following formula variables are available:

  • a - user of the action
  • b - target of the action
  • v - game variables (equivalent to $gameVariables)

Common VX Formulas

Related Topics