So, I know this is monkey code... but this works to show the actor's elemental resistance to Fire (elementID 3):
act = $game_actors[1]$game_variables[5] = act.element_rate(3)... and then I just text out game variable 5 and it shows the correct, combined element rate for that element ID.
what I want is for this to be accessible like hp, agi, luk, etc are:
act.lukI see many of the parameters are in Game_BattlerBase like so:
def luk; param(7); end # LUK LUcKBut when I mashed the keyboard like an ape trying to get my simple code in there, I get nuttin'.
My end goal is to add this in to Yanfly's Status menu... like so:
PROPERTIES_COLUMN1 =[ [:eva, "Evasion"], [:cri, "Critical Hit"], [:cev, "Critical Evade"], ] Thanks in advance...