07-17-2015, 03:34 AM
It's not that the cursor is off, but your entire window is off. The cursor is drawn around the items and quantity values with a set margin around them. As I can see, you don't quite have your list of items centered in your gray box area and needs to be shifted about... um... 30 more pixels to the right?
This is the area you need to look at, specifically the super statement.
The super statement defines the basic shape of your window (x-position, y-position, width, height). Try setting it to something like
super(280, 50, 295, 350)
Oh... I can see your confusion. Moghunter makes em quite visual. But his coding is hell to decipher and usually not compatible with other scripts (good luck getting other item scripts to work with it).
You MAY want to do a search in the forum for Moghunter scripts.... posted by ME. I did some script cleaning. ^_^ A lot more instructions... more notes... more to configure at your leisure. But read the instructions.
Code:
##################
# Window_Item_Ex #
##################
class Window_Item_Ex < Window_Selectable
def initialize
super(250, 50, 295, 350)
The super statement defines the basic shape of your window (x-position, y-position, width, height). Try setting it to something like
super(280, 50, 295, 350)
Oh... I can see your confusion. Moghunter makes em quite visual. But his coding is hell to decipher and usually not compatible with other scripts (good luck getting other item scripts to work with it).
You MAY want to do a search in the forum for Moghunter scripts.... posted by ME. I did some script cleaning. ^_^ A lot more instructions... more notes... more to configure at your leisure. But read the instructions.