sorry, it's
def draw_item_name(item, x, y)
if item == nil
return
end
bitmap = RPG::Cache.icon(item.icon_name)
self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24))
self.contents.font.color = normal_color
self.contents.draw_text(x + 28, y, 212, 32, item.name)
end
end
the bitmap = RPG::Cache.icon(item.icon_name) is the line that causes the error
the scripts I'm using:
Sthrattoff's Quest Log
Stormtonics CMS Metal Plate Edition
Tons of Addons
Catepillar Script
Letter by Letter Message System
Easy Level Up Notifier, Easy Party Switcher
the error is caused at the end of battle
i just recently switched to Sthratoff's Quest Log from another Quest log system so i have a feeling it might have something to do with that but i dont see why