Aw server world set

From ActiveWiki
Revision as of 17:19, 28 October 2008 by Macavity (talk | contribs) (→‎Arguments)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Minimum requirements
Added in version 3.1
SDKbuild 18
Worldbuild 28


int aw_server_world_set (int id)

Description

Sets the world that subsequent operations will be performed on.

Callback

AW_CALLBACK_ADMIN_WORLD_RESULT

Notes

This method sets the current world to id for an administration mode instance. This is necessary if the application is going to call one of several non-admin methods, including:

Arguments

id
Unique id number of a particular world configuration.

Argument attributes

None

Return values

RC_SUCCESS (1) (2)
RC_NOT_INITIALIZED (1)
RC_NO_INSTANCE (1)
RC_NO_CONNECTION (1)
The connection to the world is down.
RC_UNAUTHORIZED (2)
Only world server administration instances may use this method.
RC_NO_SUCH_WORLD (2)
No world configuration with a matching id was found.

(1) Possible return values when a callback is installed.

(2) Returned by the world server.

Returned attributes

AW_SERVER_ID
AW_SERVER_INSTANCE
AW_SERVER_NAME

Example

See aw_server_world_delete for an example.

See also