Resource:Scoreboard: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Added getScoreboardColumns)
(Updated TODO)
Line 16: Line 16:


==Issues/TODO==
==Issues/TODO==
*It can't remove columns yet, due to an issue with gridlist themselves ([http://mtasa.com/mantisbt/view.php?id=1918 mantis])
*There's no way to scroll the scoreboard yet
*Columns are not added in the correct order
*Scoreboard data for web listing is being sent all at once, should allow sending of separate chunks
*Scoreboard data for web listing is being sent all at once, should allow sending of separate chunks

Revision as of 23:54, 2 September 2007

The scoreboard displays connected players, teams, pings and other data in a gridlist for players ingame. It also has a javascript-enabled web interface, so it can be viewed from a browser.

When you add a column to the scoreboard, it's linked to the element data field of the same name, so if you add the "score" column, element data in the field "score" will be shown for all players and teams.

Exported serverside functions

You can call them from another resource using call():

call(getResourceFromName("scoreboard"), "addScoreboardColumn", "wanted level")
bool addScoreboardColumn( string columnName )
bool removeScoreboardColumn( string columnName )
bool setScoreboardForced( player thePlayer, bool forced )
table getScoreboardColumns( )

Issues/TODO

  • There's no way to scroll the scoreboard yet
  • Columns are not added in the correct order
  • Scoreboard data for web listing is being sent all at once, should allow sending of separate chunks