3de :tellcolumns([justified,] {width-ratios}, {column-titles}, {info}, [{info}...]) A verb to quickly and easily display data in columns. 'column-titles' is a list of the headers to be placed at the top of each column. Each list of 'info' is one line of data. 'justified' sets justification left (1, default), center (2), or right (3). This can also be a string of the form "112312" with one char/column so different columns can get justified in different ways. 'width-ratios' is a list of the relative widths for each column. These ratios will be used to guide the formatting if some columns are too large to fit on the screen. If in doubt, just use {1, 1, 1, ...} 'info' is either a list of strings, one per column, or a single string. If a single string, a line of that string repeated will be drawn. Eg. player:tellcolumns(3, {1, 1, 2}, {"First Column","Second Column","Third Column"}, {player.name, tostr(player), player.home.name}, {#55.name, tostr(#55), #55.home.name}) . 0