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
This post has been edited by Adrien.: Jan 3 2012, 02:03 PM