Related changes

Jump to navigation Jump to search

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 09:39, 8 April 2025
   
Page name:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

7 April 2025

N    21:26  Aw tick diffhist +1,800 Xan talk contribs (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=...")
N    21:26  Aw random diffhist +3,250 Xan talk contribs (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...")
N    21:25  Aw init bind diffhist +2,155 Xan talk contribs (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...")
N    21:25  Aw term diffhist +2,072 Xan talk contribs (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...")
N    21:24  Reason.h diffhist +5,732 Xan talk contribs (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...")
N    21:24  SDK Reason Codes diffhist +28,005 Xan talk contribs (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>...")
N    21:23  Template:SDK added in diffhist +1,008 Xan talk contribs (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...")
N    21:22  SDK Application Structure diffhist +3,333 Xan talk contribs (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...")