Script function
world.GetQueue
Read about scripting
Type
Method
Summary
Returns a variant array which is a list of queued commands
Prototype
VARIANT GetQueue();
View list of data type meanings
Description
Returns an array of the currently queued commands (speedwalks etc.).
You might use this if you needed to do something urgently. Retrieve the queue into an array, discard the queue, and then requeue it.
Available in MUSHclient version 3.18 onwards.
VBscript example
dim speedwalkQueue
speedwalkQueue = world.GetQueue
If Not IsEmpty (speedwalkQueue) Then
For Each sw In speedwalkQueue
world.note sw
Next
End If
Jscript example
commandList = new VBArray(world.GetQueue()).toArray();
if (commandList)
for (i = 0; i < commandList.length; i++)
world.note (commandList [i]);
PerlScript example
foreach $item (Win32::OLE::in ($world->GetQueue ()))
{
$world->note($item);
}
Python example
commandList = world.GetQueue
if (commandList):
for c in commandList : world.Note (c)
Lua example
for k, v in pairs (GetQueue()) do
Note (v)
end
Return value
If there are no commands in the queue then the return value is empty. Use "IsEmpty" to test for this possibility.
Otherwise, it returns a variant array containing all queued commands. Use "ubound" to find the number of commands in the list.
See Also ...
Topic
Information
Functions
(Debug) Displays debugging information about the world
(DiscardQueue) Discards the speed walk queue
(EchoInput) A flag to indicate whether we are echoing command input to the output window
(GetConnectDuration) Returns the number of seconds this world has been connected.
(GetEntity) Retrieves the value of an MXP server-defined entity
(GetHostAddress) Returns a list of IP addresses that correspond to a host name on the Internet
(GetHostName) Returns the host name that corresponds to an IP address on the Internet
(GetInfo) Gets information about the current world
(GetInternalCommandsList) Returns a list of the internal MUSHclient command names
(GetLineCount) Gets count of lines received
(GetLineInfo) Gets details about a specified line in the output window
(GetLinesInBufferCount) Returns the number of lines in the output window
(GetMainWindowPosition) Returns the position and size of the main MUSHclient window
(GetNotepadWindowPosition) Returns the position and size of the specified notepad window
(GetNotes) Gets the world's notes
(GetReceivedBytes) Returns the number of bytes received from the world
(GetRecentLines) Assembles a block of text from recent MUD output
(GetSelectionEndColumn) Returns the endling column of the selection in the output window
(GetSelectionEndLine) Returns the last line of the selection in the output window
(GetSelectionStartColumn) Returns the starting column of the selection in the output window
(GetSelectionStartLine) Returns the starting line of the selection in the output window
(GetSentBytes) Returns the number of bytes sent to the world
(GetStyleInfo) Gets details about a specified style run for a specified line in the output window
(GetSysColor) Gets the colour of various windows items
(GetSystemMetrics) Returns selected system information from Windows
(GetWorldID) Returns the 24-character ID of the current world
(GetWorldWindowPosition) Returns the position and size of the current world window
(GetWorldWindowPositionX) Returns the position and size of a specific world window
(GetXMLEntity) Retrieves the value of a standard entity
(IsConnected) Tests to see if the world is connected to the MUD server
(Queue) Queues a command for sending at the "speed walk" rate.
(SetChanged) Sets or clears the "document has changed" flag
(SetEntity) Sets the value of an MXP entity
(SpeedWalkDelay) The number of milliseconds delay between speed walk commands
(UdpPortList) Returns an array of all the UDP ports in use by this world
(Version) Gets the MUSHclient version string.
(WorldAddress) Returns the TCP/IP address of the current world.
(WorldName) Gets the world's name
(WorldPort) Returns the port number of the current world.
(Help topic: function=GetQueue)