Crash with Kread's Grathnode Install (Window Cursor)

● ARCHIVED · READ-ONLY
Started by Darangen 2 posts View original ↗
  1. Get a crash when exiting out of Kread's Grathnode Install. If you install a grathnode then back out of the menu, you get this error:





    Disabling the Window Cursor script stops the crash from happening.


    Is this something that can be fixed?


    I can send a demo if needed.
  2. There's a bug in Window_Cursor script itself it seems. Just add this below Window_Cursor Script.

    Code:
    #==============================================================================# ** Window_Selectable#------------------------------------------------------------------------------#  This window class contains cursor movement and scroll functions.#==============================================================================  class Window_Selectable < Window_Base    #--------------------------------------------------------------------------  # new method: update_custom_cursor  #--------------------------------------------------------------------------  def update_custom_cursor    # If Custom Cursor is not nil or disposed    if !@custom_cursor.nil? and !@custom_cursor.disposed?      # Update Custom Cursor      @custom_cursor.update if @custom_cursor    end  endend  #==============================================================================# ** Window_SaveFile#------------------------------------------------------------------------------#  This window displays save files on the save and load screens.#============================================================================== class Window_SaveFile < Window_Base  #--------------------------------------------------------------------------  # new method: update_custom_cursor  #--------------------------------------------------------------------------  def update_custom_cursor    # If Custom Cursor is not nil or disposed    if !@custom_cursor.nil? and !@custom_cursor.disposed?      # Update Custom Cursor      @custom_cursor.update if @custom_cursor    end      end  end