#--------------------------------------------------------------------------
# * Draw Icon
# enabled : Enabled flag. When false, draw semi-transparently.
#--------------------------------------------------------------------------
def draw_icon(icon_index, x, y, enabled = true)
bitmap = Cache.system("Iconset")
rect = Rect.new(icon_index % 16 * 24 icon_index 16 / 24, 24, 24)
contents.blt(x, y, bitmap, rect, enabled ? 255 : translucent_alpha)
end
I am using one script, er... core and add-on scripts? It's the EarthBound-ish engine and all of it's add-ons. But thats it. That may be causing the problem? But it was working fine before.