Help - Search - Members - Calendar
Full Version: The posession window will not change?
RPG RPG Revolution Forums > Game Engines > RPG Maker VX Ace Discussion
Adrien.
Ok so from my understanding when you go into a shop, you click buy, select your item - you are then presented with a quanity + cost and a possession window. according to VX ACE under Window_ShopStatus:

CODE
  
def draw_possession(x, y)
    rect = Rect.new(x, y, contents.width - 4 - x, line_height)
    change_color(system_color)
    draw_text(rect, Vocab::Possession)
    change_color(normal_color)
    draw_text(rect, $game_party.item_number(@item), 2)
  end


That's thew code to draw the possession window to say "you have x amount now.
How ever I changed it to:

CODE
  alias adrien_change_width_height_position_draw_posession_a353 draw_possession
  def draw_possession(x, y)
    adrien_change_width_height_position_draw_posession_a353(x, y)
    rect = Rect.new(x-120, y+120, 0, 0)
  end


It still hasn't changed.... I have essentially said, shrink to nothing, move here, line height 0...(im being dramatic in my changes to see if it will change) and NOTHING.....can some one scream at me, what im doing wrong >_>

-- figured it out, thread reported
kaz
Closed by request of the OP
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.