HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

MultiLeaderBoard Help Plz

03-24-2004, 09:32 PM#1
Phoenix-Flame
Ok, i have no idea how to make multi leaderboard and hwo to add players to it i always use simple leader board but this time i need it,

Any help is apriciated
And if you could post teh trigger of a small version of it


Thank You. :D
03-25-2004, 04:06 AM#2
zotax
Heres a pretty basic guide. Need anything else?
Code:
Multiboard-Create a multiboard with X rows and X columns titled (Whatever)
Fairly self explanatory, though I dont think mutliboards can be created at Map Intializaton. From there you have several options, you can set display style or set display text. Display style does things like whether it shows icons or hides icons. Note if you set the row or column number to 0 it will affect all the rows. Set text basically just sets what you want the multiboard text to be eg SEFA or Name of Player 1. So a basic multiboard setup would be:
Code:
Create a multiboard with 2 columns and 4 rows
Set display style for row 0 and column 0 to hide icons, show text
Set the text for last created multiboard in column 1 row 1 to Team1Kills
Set the text for last created multiboard in column 1 row 1 to Team2Kills
Set the text for last created multiboard in column 1 row 1 to Team3Kills
Set the text for last created multiboard in column 1 row 1 to Team4Kills
Set the text for last created multiboard in column 2 row 1 to (Convert Integer to String(TeamKills[1]))
Set the text for last created multiboard in column 2 row 2 to (Convert Integer to String(TeamKills[2]))
Set the text for last created multiboard in column 2 row 3 to (Convert Integer to String(TeamKills[3]))
Set the text for last created multiboard in column 2 row 4 to (Convert Integer to String(TeamKills[4]))
Show Last created multbioard
Loops as usual are extremely helpfull for setting up multiboards eg
Code:
For each integer from 1 to 12
--Set the text for last created multiboard in column 1 row (Integer A) to (Convert real to string(Player name of Player(Integer A)).
--Set the text for last created multiboard in column 2 row (Integer A) to (Convert integer to string(PlayerKills(Integer A)).
You can also show multiboards to only 1 player using Local Player. And note that there is also a Set Width function which will basically enforce the size of that row/column to whatever. Someones probably already answered this on msn, but flag i though illd write this anyway. I might as well make this into a psuedo tutorial or something, is there anything else I should add?
03-25-2004, 07:55 PM#3
Phoenix-Flame
Thank You :D
Thats all "I see it clearly now that the rain has gone"