08-20-2009, 11:57 AM
@CeLLeM
I knew that, I was too busy to give you the full solution, eh, eh... ok...
CTB by Charlie - Windows, line 563, change
into
line 612, change
into
line 618, change
into
lines 854 and 944, change
into
These changes give you 40 more pixels, I guess you can figure out the needed changes if you need more space.
I knew that, I was too busy to give you the full solution, eh, eh... ok...
CTB by Charlie - Windows, line 563, change
Code:
draw_actor_state_bordered_2(actor, actor_x + 330, actor_y+1, 40, 14)
Code:
draw_actor_state_bordered_2(actor, actor_x + 330, actor_y+1, 80, 14)
line 612, change
Code:
self.contents.fill_rect(actor_x + 330, actor_y, 40, 16, Color.new(0,0,0,0)
Code:
self.contents.fill_rect(actor_x + 330, actor_y, 80, 16, Color.new(0,0,0,0))
line 618, change
Code:
draw_actor_state_bordered_2(actor, actor_x + 330, actor_y+1, 40, 14)
Code:
draw_actor_state_bordered_2(actor, actor_x + 330, actor_y+1, 80, 14)
lines 854 and 944, change
Code:
cursor_width = 340
Code:
cursor_width = 380
These changes give you 40 more pixels, I guess you can figure out the needed changes if you need more space.