Game Development Community

Scoreboard with more data

by Marcus Nielsen · in Torque Game Engine · 02/27/2007 (4:52 pm) · 1 replies

Ive made the scoreboard (when you press F2) take additional parameters, so instead of the old
"Name Score"
I now have
"Name Team Kills Deaths Ranking"

The problem is that I cannot get more than two fields visible per row.

So I get
"Smith Blue"
displayed in the scoreboard.

But the string actually looks OK, containing the three last parameter-numbers.

Can anyone tell me where to find more information about why there is a limit on two visible fields?

I am really stuck here =(

Oh, and sorry for not showing the code, but the code is working just fine and it is split up in 5 different files =)

About the author

Recent Threads

  • Client variables

  • #1
    02/28/2007 (3:30 am)
    Solved by changing

    new GuiTextListCtrl(PlayerListGuiList) {
    ...
    columns = (0 120);
    ...

    to

    ...columns = (0 50 100 150 200);

    I kinda thought 0 and 120 stood for X and Y coords =)

    Well, problem solved anyhow.