Save-Point
Showing the evade stat in the status screen - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Games Development (https://www.save-point.org/forum-4.html)
+--- Forum: Code Support (https://www.save-point.org/forum-20.html)
+--- Thread: Showing the evade stat in the status screen (/thread-7.html)



Showing the evade stat in the status screen - corpsegirl - 10-25-2010

I was wondering if there was a way of doing this? The only thing I could come up with so far was adding
Code:
when 7
      parameter_name = "Evasion"
      parameter_value = actor.eva
after the rest of the stats in windows_base. that doesn't seem to do the trick.


Showing the evade stat in the status screen - computerwizoo7 - 10-25-2010

parameters
2-dimensional array containing base parameters for each level (Table).

Generally takes the form parameters[kind, level].

kind indicates the parameter type (0: MaxHP, 1: MaxMP, 2: Attack, 3: Defense, 4: Spirit, 5: Agility).

so i dont think so ^^

RPG::Armor
eva
The armor's evasion rate.

basically ur gonna have to get that data from the actors equip.


Showing the evade stat in the status screen - corpsegirl - 10-25-2010

I was wanting to assign it as a passive value to some actors and skills and show it on the screen.