Waiting List
There are no players on the waiting list yet. Only Windows users can play this game. If you have an emulator, you can join the waiting list to be informed when a new server is ready to play.
[Login to join waiting list]
Latest Version ·
Date Added: 1/02/02
If you wish to download this library for your Linux/Mac installation, enter the following on your command line:
DreamDownload byond://Deadron.List##version=0
Emulator users, in the BYOND pager go to File | Open Location and enter this URL:
byond://Deadron.List##version=0
|
![BYOND Favorite [BYOND Favorite]](/rsc/star14.gif) | BYOND Favorite |
|
| |
dd_sortedObjectList(list/incoming)
This returns a new list with the objects and mobs sorted based on the value each returns in its dd_SortValue() function. Simple lesser-than (<) and greater-than (>) arithmetic is used to compare sort values. By default, objects are sorted by their name. Text values are sorted by case.
If you have a special sorting requirement, then override dd_SortValue() for your mobs/objects to return the value you desire. For example, to sort mobs by their weight, you would have the mob.dd_SortValue() function return the mob's weight:
mob/dd_SortValue()
return weight
dd_sortedtextlist(list/incoming, case_sensitive)
This returns a new list with the items sorted in order of their text value.
dd_sortedTextList(list/incoming)
This returns a new list with the items sorted in order of their text value. The sorting is case-sensitive.
Login to post a comment.