Cursor Command Windows
This plug and play script replaces the box command windows with a cursor pointer like in Final Fantasy games.
It uses windowskins in the following form:
I.e. replace the box cursor with a normal cursor, like a hand.
Script
Note: I did not alias the second two because I was editing all lines in the script. I probably should (well, could) have done.
This plug and play script replaces the box command windows with a cursor pointer like in Final Fantasy games.
It uses windowskins in the following form:

I.e. replace the box cursor with a normal cursor, like a hand.
Script
Code:
#=======================================
# cursor command windows
# author: como
# date: 9th June 2010
# version: 1.1 (status window fix)
#=======================================
class Window_Selectable < Window_Base
alias update_cursor_rect_orig update_cursor_rect
def update_cursor_rect
update_cursor_rect_orig
self.cursor_rect.set(x - 16, y, 32, 32)
end
end
class Window_MenuStatus < Window_Selectable
def update_cursor_rect
if @index < 0
self.cursor_rect.empty
else
self.cursor_rect.set(0, @index * 116, 32, 32)
end
end
end
class Window_Target < Window_Selectable
def update_cursor_rect
# Cursor position -1 = all choices, -2 or lower = independent choice
# (meaning the user's own choice)
if @index <= -2
self.cursor_rect.set(0, (@index + 10) * 116, 32, 32)
elsif @index == -1
self.cursor_rect.set(0, 0, 32, 32)
else
self.cursor_rect.set(0, @index * 116, 32, 32)
end
end
end
Note: I did not alias the second two because I was editing all lines in the script. I probably should (well, could) have done.