ID:94541
 
Redundant
Applies to:Dream Maker
Status: Redundant

This feature has already been implemented, or is already achievable with existing methods.
I am suggesting a proc for putting a list in alphabetical order. Objects would be ordered by their name. Numbers will go in numerical order.

var/samplelist = list("Stuff","More Stuff","Even more Stuff")

samplelist.Order()

samplelist = list("Even More Stuff","More Stuff","Stuff")
I suggest samplelist.order().
There are already algorithms u can make that to do this;

but still makes BYOND more easy. ^_^
This would be fairly limited in its usefulness, as sorting alphabetically isn't really that common an operation in most games and writing your own sort proc is a simple operation.