QUOTE (oshakashama @ Nov 12 2012, 04:59 AM)

Also, if anyone can also solve this issue: The script above uses the following to draw the Text for HP, MP, TP, etc.
CODE
draw_text(x, y, 50, line_height, Vocab::tp_a)
When I try to change the line_height, the text just gets cut off, not resized. I'm only looking to do this for the Trance gauge. If anyone can solve this issue too, I'd be grateful.[/size]
As regards this, I can give you a hint.
replace this:
CODE
draw_text(x, y, 50, line_height, Vocab::tp_a)
with this:
CODE
old_font_size = contents.font.size #store previous font size
contents.font.size = 12 #change this number to resize the font
draw_text(x, y, 50, line_height, Vocab::tp_a)
contents.font.size = old_font_size #restores previous font size
Replace that 12 with the desired font size and you should fix that problem

Jens