Event called when a world configuration is deleted.
This event is new in Active Worlds 3.1 and requires at least SDK build 18 and world server build 28.
This event only occurs for administration mode instances.
This event is triggered whenever a world configuration is deleted from the world server by a call to aw_server_world_delete, either by this admin instance or any other admin instance, including other administration applications that may be running at the same time.
The world that was deleted is identified by AW_SERVER_ID. No other attributes are provided by this event.
void handle_world_delete (void)
{
printf ("World %d was just deleted.\n", aw_int (AW_SERVER_ID));
}
aw_event_set (AW_EVENT_ADMIN_WORLD_DELETE, handle_world_delete);
aw_server_admin
aw_server_world_add
aw_server_world_change
aw_server_world_delete
aw_server_world_list
aw_server_world_set
aw_server_world_start
aw_server_world_stop