There is a bug in Game_Interpreter.
Before line 750, add
when 4 # Actor
then it works just peachy!
[ edit ] oops, then change line 751 from/to
[ edit again ] just delete that line, it doesn't do anything...
# actor = $game_actors[@parameters[1]]
For clarity, that section of code should look like... (lines 748-752)
when 3 # Item
value = $game_party.item_number($data_items[@params[4]])
when 4 # Actor
actor = $game_actors[@params[4]]
if actor != nil
case @params[5]
when 0 # Level
value = actor.level
etc....
I also copied the Scripts.rvdata file, after saving, back to
C:\Program Files\Enterbrain\RPGVX\System\Data
so I won't have to fix it everytime I start a new project.
Be Well