All public logs
Jump to navigation
Jump to search
Combined display of all available logs of DeltaWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:29, 7 April 2025 Xan talk contribs created page Category:SDK (Created page with "Meta category holding all documentation related to the SDK. No SDK method or property articles should be categorized in here. Category:Software")
- 21:28, 7 April 2025 Xan talk contribs created page AW AVATAR SESSION (Created page with "{{SDK added in|version=2.1|sort=a|sdk=13|world=|universe=|browser=}} __NOTOC__ {{SUBPAGENAMEE}} ==Type== Integer (read only) ==Description== Session number of a user for which an event or callback was triggered (mostly avatar-related). ==Notes== Every user is assigned a unique session number at login. This session number can be used by SDK applications to track individual users as they move around the scene. Note that a new session number is assigned on every logi...")
- 21:28, 7 April 2025 Xan talk contribs created page AW CALLBACK ADDRESS (Created page with "{{SDK added in|version=2.2|sdk=14|world=21|universe=|browser=303}} __NOTOC__ {{SUBPAGENAMEE}} ==Attributes== ;AW_AVATAR_SESSION:Queried session number; this is useful for determining which callback is for which request if multiple asynchronous calls to aw_address are outstanding. ;AW_AVATAR_ADDRESS (1):Specifies the IP address of the user, in network byte order. '''(1)''' If the reason code is RC_SUCCESS. ==Used by== *a...")
- 21:27, 7 April 2025 Xan talk contribs created page Aw wait (Created page with "{{SDK added in|version=2.1|sdk=13|world=|universe=|browser=}} __NOTOC__ int aw_wait (int <var>milliseconds</var>) ==Description== Processes all queued packets and waits the specified time for more to arrive, calling callback and event handlers. ==Callback== None ==Notes== Placing calls to this method from callback or event handlers should be avoided. The reason for this being that it will in turn call such handlers. Which would cause aw_wait to indirectly call itse...")
- 21:26, 7 April 2025 Xan talk contribs created page Mover Control example code (Created page with "<pre> ----------------------------------------------------------------------------- M o v e r C o n t r o l Copyright 2007 Activeworlds Inc Licensed Material -- Program Property of Activeworlds Inc. -----------------------------------------------------------------------------: #define MAX_MODEL_NAME 64 #define WAIT_TIME 10 // time to wait for SDK packets and events before update #defin...")
- 21:26, 7 April 2025 Xan talk contribs created page Aw tick (Created page with "{{SDK added in|version=4.1|sdk=53|world=|universe=|browser=}} __NOTOC__ unsigned int aw_tick (void) ==Description== Returns the number of milliseconds that have elapsed since the SDK was initialized. ==Callback== None (returns immediately) ==Notes== This method provides a high precision reference time for time critical operations or application timers. The degree of precision depends largely on the operating system being used. :{| border cellpadding=4 cellspacing=...")
- 21:26, 7 April 2025 Xan talk contribs created page Aw random (Created page with "{{SDK added in|version=2.1|sdk=13|world=|universe=|browser=}} __NOTOC__ int aw_random (void) ==Description== Returns a random number. ==Notes== The psuedo-random number generator (PRNG) employed by this method is [http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html Mersenne Twister] (MT) by Matsumoto and Nishimura. It sets new standards for the period, quality and speed of random number generators. The incredible period is 219937 - 1, a number with about 6000 d...")
- 21:25, 7 April 2025 Xan talk contribs created page Aw init bind (Created page with "{{SDK added in|version=4.1|sdk=61|world=|universe=|browser=}} __NOTOC__ int aw_init_bind (int <var>build</var>, unsigned long <var>addr</var>) ==Description== Initializes the SDK and specifies the source IP address for outbound connections. ==Callback== None (returns immediately) ==Notes== Specifying the source IP address is useful when you have multiple network interface cards (NIC) or a single NIC with multiple IP addresses. The source IP address must either matc...")
- 21:25, 7 April 2025 Xan talk contribs created page Aw term (Created page with "{{SDK added in|version=2.1|sdk=13|world=|universe=|browser=}} __NOTOC__ void aw_term (void) ==Description== Terminates use of the SDK. ==Callback== None (returns immediately) ==Notes== This method deallocates any resources used by instances that have been created. Instances are created using aw_create, aw_create_resolved and aw_server_admin. If a call is placed to this method from within a callback or event handler then it cou...")
- 21:24, 7 April 2025 Xan talk contribs created page Reason.h (Created page with " #define RC_SUCCESS 0 #define RC_CITIZENSHIP_EXPIRED 1 #define RC_LAND_LIMIT_EXCEEDED 2 #define RC_NO_SUCH_CITIZEN 3 #define RC_MESSAGE_LENGTH_BAD 4 #define RC_LICENSE_PASSWORD_CONTAINS_SPACE 5 #define RC_LICENSE_PASSWORD_TOO_LONG 6 #define RC_LICENSE_PASSWORD_TOO_SHORT 7 #define RC_LICENSE_RANGE_TOO_LARGE 8 #define RC_LICENSE_RANGE_TOO_SMALL 9 #define RC_LICENSE_USERS_TOO_LARGE 10 #define RC_LICENSE_USERS_TOO_SMALL 11 #define RC_LICENSE_CONTAINS_INVALID_CHAR...")
- 21:24, 7 April 2025 Xan talk contribs created page SDK Reason Codes (Created page with "__TOC__ ==Current version== <table class="sortable" border="border" cellpadding="4" cellspacing="0" width="100%"> <tr><th align="left" width="30%">Reason code</th><th align="left" width="10%">Value</th><th align="left" width="60%">Description</th></tr> <tr> <td id="RC_SUCCESS">RC_SUCCESS</td> <td id="NO_0">0</td> <td><p>''Success'' :<table> <tr><td>Return value from an asynchronous call:</td><td width="20"> </td><td>Request has been sent to the server.</td></tr>...")
- 21:23, 7 April 2025 Xan talk contribs created page Template:SDK added in (Created page with "<table id="toc" style="width:25em; margin:0 0 0.5em 1em; float:right;"> <tr><th align="center" bgcolor="55bbff" colspan="3">Minimum requirements</th></tr> <tr><th align="center" bgcolor="77ddff" colspan="3">Added in version {{{version}}}</th></tr> {{{sdk{{{sdk|}}}|<tr><td align="right" valign="top" width="50%">SDK</td><td align="left" colspan="2" valign="top">build {{{sdk}}}</td></tr>}}} {{{world{{{world|}}}|<tr><td align="right" valign="top" width="50%">World</td><td al...")
- 21:23, 7 April 2025 Xan talk contribs created page Aw init (Created page with "{{SDK added in|version=2.1|sdk=13|world=|universe=|browser=}} __NOTOC__ int aw_init (int <var>build</var>) ==Description== Initializes the SDK. ==Callback== None (returns immediately) ==Notes== This method or aw_init_bind must be called once before any other methods in the API. It will do an implicit aw_term if the SDK has already been successfully initialized. Thus, there is no need to call aw_term for each additional call to this method, as there is n...")
- 21:22, 7 April 2025 Xan talk contribs created page SDK Application Structure (Created page with "A typical SDK application has the following organization: # '''Initialization''' ## Call aw_init to initialize the API ## Call aw_event_set to install event handlers ## Call aw_create to create one or more instances ## Call aw_login for each instance to log that instance into Active Worlds ## Call aw_enter for each instance to enter that instance into a world # '''Event Loop''' ## Call aw_wait and res...")
- 21:20, 7 April 2025 Xan talk contribs created page SDK (Created page with "__NOTOC__ __NOEDITSECTION__ right|frame|Screenshot of the Customs Aide bot in AWGate The Active Worlds Software Development Kit (SDK), first released on September 8th, 1998, is a Client-API (Application Interface for programming client applications) targeted at the programmer community within Activeworlds. It provides an easy way for programmers to develop applications that function within the Active Worlds virtu...") Tag: Visual edit: Switched
- 21:22, 22 October 2024 Xan talk contribs created page Mover (Server Controlled) (Created page with "300px|thumb|A user riding a waypoint mover elevator upwards 300px|thumb|A user riding a waypoint rollercoaster in [[Alphaworld]] The '''Server Controlled Mover''' Type is a mover type which allows you to define a path for the mover to follow, with a maximum of 320 meters on any axis. == Options == frame|Server Controlled Mover Dialog Box === Model === This defines...") Tag: Visual edit: Switched
- 21:20, 22 October 2024 Xan talk contribs created page Category:Places (Created page with "Meta category for categories of (virtual) geographical locations. Do not add articles here. Category:Articles")
- 21:20, 22 October 2024 Xan talk contribs created page Category:Buildings (Created page with "'''Buildings''', also known as '''builds''', of various sizes and purposes. Category:Places")
- 21:19, 22 October 2024 Xan talk contribs created page Category:Buildings and Structures (Created page with "This category describes builds that are structural in nature. Category:Buildings")
- 21:19, 22 October 2024 Xan talk contribs created page Category:Infrastructures (Created page with "Category:Buildings and Structures")
- 21:18, 22 October 2024 Xan talk contribs created page Category:Transportation (Created page with "Category:Infrastructures")
- 21:17, 22 October 2024 Xan talk contribs created page Warp (Created page with "{{feature|N/A|N/A}} The '''warp''' command is similar to the teleport command, except that instead of immediately changing the user's location, it "slides" the user through the world to the new position. The warp command can only be used in the same world (i.e. you cannot warp the user to a different world). ==Usage== '''warp''' [+/-]''north/south coordinate''[N/S] [+/-]''east/west coordinate''[E/W] [+/-][''altitude'' A] [+/-][''direction''] The warp command canno...")
- 21:16, 22 October 2024 Xan talk contribs created page Web (Created page with "{{feature|1010,1336,1400|4.2, simplified in 6.0 and 6.2}} thumb|right|The Activeworlds tutorial on a Web Clip object. The '''Web''' command, also known as '''Web Capture''', allows the user to render a web page onto a picture or sign object. The navigation web window is opened upon clicking an object containing the '''web''' command, and a continuous rendering of it is started. If the web navigation window is closed, the page can still be rendered...")
- 21:16, 22 October 2024 Xan talk contribs created page Skew (Created page with "{{TOCright}} {{feature|1172|5.1}} The ''skew'' command allows you to skew/shear an object. ==Usage== '''skew''' ''x1 [y1 [z1 [x2 [y2 [z2]]'' [name=''name''] [global] ===x1 y1 z1 x2 y2 z2=== :''x2 y2 and z2 may be used for special behavior in later builds'' The ''parameters'' to the [skew] acion command take an angle in degrees each. The valid range for each angle is between -89° to 89°. ===name=== The ''name'' option allows you to apply skewing to one or more obje...")
- 21:15, 22 October 2024 Xan talk contribs created page Shear (Created page with "{{TOCright}} {{feature|1173|5.1}} The '''shear''' command allows you to shear an object, whilst preserving the model's volume. ==Usage== '''shear''' ''x1 [y1 [z1 [x2 [y2 [z2]]'' [name=''ref''] [global] ===x1 y1 z1 x2 y2 z2=== The ''parameters'' to the [shear] action command take number values representing the shear angle each. The valid range for each value is between -5.0 to 5.0. ===name=== The ''name'' option allows you to apply skewing...")
- 21:14, 22 October 2024 Xan talk contribs created page Shadow (Created page with "{{feature|1024|4.2}} The '''shadow''' command renders a shadow for an object. ==Usage== '''shadow''' [''name''] ''flag'' [''global''] ===name=== The optional ''name'' argument specifies the name of the object with will receive the shadow or the shadow will be removed. Object names are assigned via the name command. If omitted, the shadow command applies to this object. ===flag=== The ''flag'' boolean argument is required and specifies...")
- 21:13, 22 October 2024 Xan talk contribs created page Zone (Created page with "300px|thumb|A zone used to create an ominous atmosphere around a temple entrance 300px|thumb|A zone used to give darkness to a cave setting. Zone fog also gives the illusion of a bottomless pit '''Zones''' are 3-dimensional areas in the scene. Within a zone the normal environmental world rules can be changed. The world itself can be thought of as one or two large zones. The primary zone is the main part of the world above the wor...")
- 21:12, 22 October 2024 Xan talk contribs created page Camera Object (Created page with "frame|Camera Properties Dialog Box A '''camera object''' can be placed in the scene to change the user's viewpoint. Cameras are designed to work with zones and have no effect when used alone. To use a camera, it must be given a name, and then the named camera must be set as the camera for one or more zones. When the user enters the zone, their view will switch to a camera object with the same name. When a camera is placed in the scen...")
- 21:12, 22 October 2024 Xan talk contribs created page Camera (Created page with "{{feature|962|4.1}} 250px|thumb|An ''rcube.rwx'' with the camera command targeting a user. The bottom pane shows the view from the new camera object. The '''camera''' command can be used to place the camera within the scene. Note that this command will move the camera, but there is nothing to prevent the user from simply switching back to their desired view. Also, this command does not offer the ability to adjust the field of view. If you need to l...")
- 21:11, 22 October 2024 Xan talk contribs created page Astop (Created page with "{{feature|N/A|N/A}} <blockquote>''Modern usage of this feature has been superseded by Timer.''</blockquote> The '''astop''' command stops a running animation. == Usage == '''astop''' ''[name] [global]'' ===name=== The optional ''name'' argument can be used to specify the name of the object containing the animation to be stopped. Object names are assigned via the name command. ===global=== The optional ''global'' argument will cause triggers to initiate the comman...")
- 21:10, 22 October 2024 Xan talk contribs created page Timer (Created page with "{{TOCright}} {{feature|1162|5.1}} The ''timer'' command creates a '''timer''' in memory that allows a user to activate events after a set amount of time. This trigger was added in version 5.1 in conjunction with the at trigger as an easier and more accessible way for users to create timed events. Previously, builders could only create timed events by a complicated workaround using the depreciated animate command. ==Usage== '''timer'...")
- 21:09, 22 October 2024 Xan talk contribs created page Astart (Created page with "{{feature|N/A|N/A}} <blockquote>''Modern usage of this feature has been superseded by Timer.''</blockquote> The '''astart''' command starts an animation that has been set up using the animate command and sets it in either looping or non-looping mode. The default is for the astart command to start the animation in non-looping mode. ==Usage== '''astart''' ''[name] [looping] [global]'' ===name=== The optional name argument specifies the name of the object contain...")
- 21:09, 22 October 2024 Xan talk contribs created page Alpharef (Created page with "{{feature|1158|5.1}} frame|Differences between transparency rendering states The '''alpharef''' command specifies an object's transparency rendering state. == Background == Alpha testing is used to improve performance when rasterizing objects that are nearly transparent. If the color data being rasterized is more opaque than the color at a given pixel, then the pixel is written. Otherwise, the rasterizer ignores the pixel altogether, saving the pr...")
- 19:39, 22 October 2024 Xan talk contribs created page CEF (Created page with "CEF Chrome Embedded Framework replacing previous web browsers IE and Berkelium since the DW 3D Browser version 6.2")
- 19:05, 22 October 2024 Xan talk contribs created page New Features in 6.2 (Created page with "New Features in 6.0 6.0 Build 1304 - 1380 Release date June 7, 2012 Developers AWI Chrispeg New features Ocean Rendering Reflections Ambient Occlusion SpellChecker Tray Icon Aworld log Chronology Previous 5.2 Next 6.1 Contents 1 Quick Links 2 Build 1380 3 Build 1376 - 1379 4 Build 1375 5 Build 1372 6 Build 1369 7 Build 1367 8 Build 1364 9 Build 1361 10 Build 1360 11 Build 1356 12 Build 1354...")
- 18:57, 7 May 2024 Xan talk contribs created page Citizen (Created page with "thumb|100px|A female citizen visiting the [[AWGate, using a Personal Avatar]] A '''Citizen''' is a user who owns a citizen account. Citizens enjoy the full array of features offered by the browser, some of which are listed below. A citizen is often a user who has upgraded from tourist status. As of June 2013, citizenship in the Active Worlds universe is free. == Advantages == # Can visit all worlds that allow public access. # Ca...")
- 18:56, 7 May 2024 Xan talk contribs created page Automatic Upgrades (Created page with "Occasionally you will start up Delta Worlds and see the following: right You may also receive this message when you are already in Active Worlds. If you click the OK button, the Delta Worlds Browser will automatically download the new version and install it. Once the upgrade is complete, Delta Worlds will automatically restart. If you don't feel like upgrading right now, you can click the skip button instead. You will have a chance to upg...")
- 18:55, 7 May 2024 Xan talk contribs created page Firewall (Created page with "A '''firewall''' is a software or hardware that restrict access into and out of a network. Most home routers and corporate networks have firewalls installed for added security. == Background == Since firewalls block the vast majority of internet traffic, in the past they have often prevented the Active Worlds browser from being able to contact the Active Worlds server, and thus prevented users who are on firewall networks from accessing Active Worlds at all. This has be...")
- 05:41, 14 December 2023 Xan talk contribs uploaded File:Sign3.jpg
- 05:41, 14 December 2023 Xan talk contribs created page File:Sign3.jpg
- 05:41, 14 December 2023 Xan talk contribs uploaded File:Sign2.jpg
- 05:41, 14 December 2023 Xan talk contribs created page File:Sign2.jpg
- 05:41, 14 December 2023 Xan talk contribs created page File:Sign1.jpg
- 05:41, 14 December 2023 Xan talk contribs uploaded File:Sign1.jpg
- 05:40, 14 December 2023 Xan talk contribs created page Sign (Created page with "{{feature|N/A|N/A}} 200px|thumb|The top sign selected 200px|thumb|The middle sign selected 200px|thumb|The bottom sign selected The '''sign''' command renders text on an object with surfaces tagged with the value ''100''. ==Usage== '''sign''' [''text''] [color=''text color''] [bcolor=''background color''] [name=''name''] [face=''face''] [q=''quality''] [i=''italics''] [mip=''mip''] [global] ===text=== ''tex...")
- 21:50, 3 December 2023 Xan talk contribs uploaded File:Envi1.jpg
- 21:50, 3 December 2023 Xan talk contribs created page File:Envi1.jpg
- 21:49, 3 December 2023 Xan talk contribs created page Envi (Created page with "{{feature|971|4.1}} 300px|thumb|The ''envi'' command in use at the [[AWGate]] :''This feature is only supported on the DirectX renderer.'' The '''envi''' command, also known as '''environmental rendering''', renders the scene from an object's perspective to texture. Usages of this command include mirrors and environment maps. == Usage == '''envi''' [type=''type''] [res=''res''] [upd=''upd''] [zoom=''zoom''] [proj=''proj''] [aspect=''aspect''] [clip...")
- 21:45, 3 December 2023 Xan talk contribs uploaded File:Matfx01.jpg
- 21:45, 3 December 2023 Xan talk contribs created page File:Matfx01.jpg