Yanfly 6 - Core Engine
Yanfly 6 - Help Window Advance
Yanfly 6 - Item Limit
Yanfly 6 - Message System
Yanfly 6 - Battle Stats
Yanfly 6 - Elemental Amplifiers
Yanfly 6 - Status Menu
Yanfly 6 - Performance Screen
Yanfly 6 - Call Events
Yanfly 6 - Debug Menu Extension
Those are all the ones I am currently using in order.
Here is a bit of code maybe I messed it up..
CODE
#--------------------------------------------------------------------------
# draw_visual_gauge
#--------------------------------------------------------------------------
def draw_visual_gauge(dx, dy, stat)
array = Y6::STATUS::STAT_GAUGE_COLOURS[stat]
gc0 = gauge_back_color
gc1 = Color.new(array[0], array[1], array[2])
gc2 = Color.new(array[3], array[4], array[5])
value = eval("@actor." + stat.to_s)
gh = 22
gy = dy + WLH - 8 - (gh - 6)
gfw = @maximum - @minimum
modifier = (contents.width / 3)
dw = contents.width - 8 - modifier
dw -= 24 if $imported["Y6-Iconview"]
gw = dw * (value - @minimum) / gfw + modifier
contents.fill_rect(dx, gy, gw, gh, gc0)
dx += 1
gy += 1
gh -= 2
gw -= 2
contents.gradient_fill_rect(dx, gy, gw, gh, gc1, gc2)
draw_gauge_icons(dx, dy, stat, gw) if $imported["Y6-Iconview"]
draw_param_names(dx, dy, stat, gw)
draw_param_values(dx, dy, stat, gw)
end
I've also tested it, with only one thing equip on each slot at a time, and it worked fine. It just happens when I have nothing equipped. I will test some more too. Perhaps I will delete it and paste it again.
Thanks with your help so far.
edit: so I deleted and pasted, and it still comes up.
edit2: So the error comes up again but this time I was messing with the atk formula in the battle stats script. So perhaps the problem is in the battle stat script and the menu can't display something; which would explain it having the error, because the syntax on the battle stats are fine.
I have been using " ^ " in my formula. if that helps.
This post has been edited by Xer0: Jan 23 2012, 01:38 PM