[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

MUSHclient scripting

Description of MUSHclient world function: world.GetWorldIdList


Name GetWorldIdList
Type Method
Summary Gets the list of open worlds - returning their world IDs
Prototype VARIANT GetWorldIdList();
Description

Returns a variant array which is a list of the identifiers (IDs) of all open worlds.

This is safer than using GetWorldList because multiple worlds might have the same name.


Note: Available in version 3.39 onwards.


VBscript example
for each id in world.GetWorldIdList
  world.note id
next
Jscript example
worldlist = new VBArray(world.GetworldIdList()).toArray();

if (worldlist)  // if not empty
 for (i = 0; i < worldlist.length; i++)
   Note (worldlist [i]);
PerlScript example
foreach $item (Win32::OLE::in ($world->GetWorldIdList))
 {
 Note ($item);
 }
Python example
worldlist = world.GetworldIdList
if (worldlist ):
  for w in worldlist : world.Note (w)
Lua example
-- --------------------------------------------------
-- Example showing sending a message all worlds
-- --------------------------------------------------

function SendToAllWorlds (message)

  for k, v in pairs (GetWorldIdList ()) do 
    GetWorldById (v):Send (message)
  end
end

SendToAllWorlds ("say Hi there")
Lua notes
See the description for GetWorld for more discussion about using "world" variables in Lua.
Returns If there are no worlds then the return value is empty. Use "IsEmpty" to test for this possibility.

Otherwise, it returns a variant array containing the Ids of all the worlds. Use "ubound" to find the number of worlds in the list. You can then use "GetWorldById" to return a reference to that world.
Introduced in version 3.39

See also ...

Function Description
GetWorldById Gets an object reference to the world given its unique ID
GetWorldList Gets the list of open worlds - returning their world names

Search for script function

Enter a word or phrase in the box below to narrow the list down to those that match.

The function name, prototype, summary, and description are searched.

Search for:   

Leave blank to show all functions.


Return codes

Many functions return a "code" which indicates the success or otherwise of the function.

You can view a list of the return codes


Function prototypes

The "prototype" part of each function description lists exactly how the function is called (what arguments, if any, to pass to it).

You can view a list of the data types used in function prototypes


View all functions

[Back]

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]