I just replaced all the scripts and started fresh still i cannot change the bar opicity without getting that error, heres the order i put them in
Letter by Letter Text 1.11
Ton's Addons 6.1 P1
Ton's Addons 6.1 P2
Ton's Addons 6.1 P3
Stormtronics HE 5.2b
LvlUp Notifier 2.0
Night And Day 1.53
I've no clue what to do from here. Cannot convert NIL it says. Would that mean it cannot change the opticity to nothing? Its on FULL when i start and i get no problems just when i goes to change it i gets this errror
Script 'Tons Of Addon's 6.1 Part 1' Line 1682: TypeError occured.
cannont convert nil into string
Here's the area is says is causing the problem AND i checked shaded text is set to false.
----------------------------------------------------------------------------
# draw_text
# x2 - x coordinate or rectangle
# y2 - y coordinate or text
# w2 - width or align
# h2 - height
# text2 - the text to be drawn
# a2 - align
# Added additional drawing to make the text look like shaded.
#----------------------------------------------------------------------------
alias draw_text_shaded_later draw_text
def draw_text(x2, y2, w2 = 0, h2 = 0, text2 = '', a2 = 0)
# set coordinates whether x2 is rectangle
if x2.is_a?(Rect)
x, y, w, h, text, a = x2.x, x2.y, x2.width, x2.height, y2, w2
else
x, y, w, h, text, a = x2, y2, w2, h2, text2, a2
end
# if active
if $game_system != nil && $game_system.SHADED_TEXT
# store font color
save_color = self.font.color.clone
# set font color to black
self.font.color =
Color.new(0, 0, 0)
# draw shade
draw_text_shaded_later(x+1, y+1, w, h, text, a)
# restore font color
self.font.color = save_color
end
# draw normal text
draw_text_shaded_later(x, y, w, h, text, a) <<<<<<<THIS LINE>>>>>>>>