by Brayla Sana | Jan 31, 2019 | Agent and Avatar, Functions, LSL, OSSL, Wiki
On land parcels with the damage option enabled, avatars can be damaged and killed (which simply teleports them to their home location, similar to llTeleportAgentHome). The current health of an avatar is...
by Brayla Sana | Oct 14, 2017 | Events, LSL, OSSL, Wiki
dataserver(key queryid, string data) This event handler is triggered when the requested data is returned to the script. Data may be requested using...
by Brayla Sana | Apr 19, 2016 | Flow Control, LSL, OSSL, Wiki
A do-while loop is similar to a while loop, but the order in which the parts are executed is different. Format do { statements } while (condition); Example do { llSay(0, “monkey!”); } while (monkeysRemain()); This code will say...