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]
| A small collection of procedures to parse information from (certain) websites. |
Version 1 ·
Date Added: 1/16/04
If you wish to download this library for your Linux/Mac installation, enter the following on your command line:
DreamDownload byond://Volte.SiteParsing##version=1
Emulator users, in the BYOND pager go to File | Open Location and enter this URL:
byond://Volte.SiteParsing##version=1
|
| |
This library includes the following procedures...
Procedure Name: LookUp()
Return Value: An associated list containing the information of the specified key
retrieved from the BYOND people page.
Syntax: LookUp(TheKey as text)
Procedure Name: FindAuthor()
Return Value: The author of the specified post ID.
Syntax: FindAuthor(PostID as number)
Procedure Name: FindBody()
Return Value: The body of the post ID specified.
Syntax: FindBody(PostID as number)
Procedure Name: DictionarySearch()
Return Value: An associated list containing number of entries of the specified word, definitions
of the specified word, the suggestion for mis-spelling, and the message telling you if the word
was not found.
Example:
var/list/Defs = DictionarySearch("hot")
if(Defs["Not found"])
src << "Hot not found."
// Or..
src << Defs["Not found"]
src << Defs["Did you mean?"]
else
src << "The first definition found is.."
src << Defs["Definitions"][1]
Syntax: DictionarySearch(Word as text)
Login to post a comment.