Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Just move the Cursor of the Item_Scene to the right
#2
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?

Code:
##################
# Window_Item_Ex #
##################
class Window_Item_Ex < Window_Selectable
  def initialize
    super(250, 50, 295, 350)
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.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }


Messages In This Thread
RE: Just move the Cursor of the Item_Scene to the right - by DerVVulfman - 07-17-2015, 03:34 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Permanently modifying move speed Keeroh 5 8,575 05-24-2017, 05:47 AM
Last Post: DerVVulfman
   little Edit of the cursor world map system Djigit 3 5,850 08-24-2014, 02:31 AM
Last Post: Djigit
   Atoa ACBS Target move wrong after move to center Djigit 4 5,792 08-04-2014, 05:16 AM
Last Post: Djigit
   Possible to move battle actors when escaping? NewHope 8 12,361 07-27-2012, 06:14 AM
Last Post: NewHope
   Cursor, Selection, and Scrolling tnsi 7 9,709 01-10-2012, 04:16 AM
Last Post: DerVVulfman



Users browsing this thread: