How would I calculate the start point of writing the text? Each tile is 32x32 so 2 characters should fit in each tile for a max of 26 characters, so what I've come up with:
(26-chars) doesn't really work, the text flies way off screen. I know I probably sound really dumb...
It'd be great if someone could help though.
[edit] Grammar and spelling errors.
[edit 2] Thanks to Keeth and Dever from Chatters, the problem is solved:
var/screen_area=13
var/text_area=length(text)/2
var/base=(screen_area-text_area)/2 //starting X
1 tile = 32x32 pixels