![]() |
Hubby Forum_account |
An easier way to manage BYOND's hub-based features. [More] |
To download this library for your Linux/Mac installation, enter this on your command line:
DreamDownload byond://Forum_account.Hub##version=4 Emulator users, in the BYOND pager go to File | Open Location and enter this URL:byond://Forum_account.Hub##version=4 |
This library provides you with easy ways to manage medals and scores. For example:
// give the player a medal You can specify different operations in the SetScore proc so with a single proc call you can update the score however you'd like. You don't need to handle getting the current score, adding to it, then updating the scoreboard with the new score. That's all taken care of for you. The library also provides you with a way to get information from a hub entry. You can get a list of servers that are publicly available: var/list/servers = world.GetServers("Forumaccount", "AMinerAdventure") This makes it very easy to create an in-game list of servers the player can choose from. Version History Version 4 (posted 06-16-2012)
|
![]() Please support BYOND through Membership or a donation!
|
Related Libraries
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
More Libraries by Forum_account
|
Copyright © 2025 BYOND Software.
All rights reserved.
I just posted an update which improved the world.GetServers proc. Now these three calls are all the same:
I also added a demo called "score-demo" which shows a way to encapsulate the library calls in an object. You define the score's name and data type when you create the object and use its Add(), Max(), Set(), etc. procs to update the score.