OpenSimMirror/bin/ScriptSyntax.xml

19154 lines
580 KiB
XML
Raw Normal View History

2018-10-21 16:53:02 +00:00
<llsd><map><key>llsd-lsl-syntax-version</key><integer>2</integer>
2018-10-19 17:35:31 +00:00
<!-- controls -->
<key>controls</key>
<map>
<key>do</key>
<map>
<key>tooltip</key>
<string>do / while loop\ndo {\n...\n} while (&lt;condition&gt;);</string>
</map>
<key>else</key>
<map>
<key>tooltip</key>
<string>if / else block\nif (&lt;condition&gt;) {\n...\n[} else [if (&lt;condition&gt;) {\n...]]\n}</string>
</map>
<key>for</key>
<map>
<key>tooltip</key>
<string>for loop\nfor (&lt;initializer&gt;; &lt;condition&gt;; &lt;post-iteration-statement&gt;)\n{ ...\n}</string>
</map>
<key>if</key>
<map>
<key>tooltip</key>
<string>if / else block\nif (&lt;condition&gt;) {\n...\n[} else [if (&lt;condition&gt;) {\n...]]\n}</string>
</map>
<key>jump</key>
<map>
<key>tooltip</key>
<string>jump statement\njump &lt;label&gt;</string>
</map>
<key>return</key>
<map>
<key>tooltip</key>
<string>Leave current event or function.\nreturn [&lt;variable&gt;];\nOptionally pass back a variable's value, from a function.</string>
</map>
<key>state</key>
<map>
<key>tooltip</key>
<string>state &lt;target&gt;\nIf the target state is not the same as the current one, change to the target state.</string>
</map>
<key>while</key>
<map>
<key>tooltip</key>
<string>while loop\nwhile (&lt;condition&gt;) {\n,,,\n}</string>
</map>
</map>
<!-- types -->
<key>types</key>
<map>
<key>float</key>
<map>
<key>tooltip</key>
<string>32 bit floating point value.\nThe range is 1.175494351E-38 to 3.402823466E+38</string>
</map>
<key>integer</key>
<map>
<key>tooltip</key>
<string>32 bit integer value.\n2,147,483,648 and +2,147,483,647</string>
</map>
<key>key</key>
<map>
<key>tooltip</key>
<string>A 128 bit unique identifier (UUID)</string>
</map>
<key>list</key>
<map>
<key>tooltip</key>
<string>A collection of other data types. e.g. [0, 1, 2, 3, 4] or ["Yes", "No", "Perhaps"].</string>
</map>
<key>rotation</key>
<map>
<key>tooltip</key>
<string>The rotation as quaternion &lt;x, y, z, s&gt;</string>
</map>
<key>string</key>
<map>
<key>tooltip</key>
<string>Text data.\nThe editor accepts UTF-8 encoded text.</string>
</map>
<key>vector</key>
<map>
<key>tooltip</key>
<string>A vector &lt;x, y, z, s&gt;</string>
</map>
</map>
<!-- constants -->
<key>constants</key>
<map>
<key>ACTIVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>Objects in world that are running a script or currently physically moving.</string>
</map>
<key>AGENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Objects in world that are agents.</string>
</map>
<key>AGENT_ALWAYS_RUN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1000</string>
</map>
<key>AGENT_ATTACHMENTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>The agent has attachments.</string>
</map>
<key>AGENT_AUTOPILOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2000</string>
</map>
<key>AGENT_AWAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
</map>
<key>AGENT_BUSY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x800</string>
</map>
<key>AGENT_BY_LEGACY_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
</map>
<key>AGENT_BY_USERNAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>AGENT_CROUCHING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
</map>
<key>AGENT_FLYING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>The agent is flying.</string>
</map>
<key>AGENT_IN_AIR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>AGENT_LIST_PARCEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Agents on the same parcel where the script is running</string>
</map>
<key>AGENT_LIST_PARCEL_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Agents on any parcel in the region where the parcel owner is the same as the owner of the parcel under the scripted object.</string>
</map>
<key>AGENT_LIST_REGION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>All agents in the region</string>
</map>
<key>AGENT_LIST_EXCLUDENPC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000000</string>
<key>tooltip</key>
<string>Exclude NPCs</string>
</map>
<key>AGENT_MALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40000000</string>
</map>
<key>AGENT_MOUSELOOK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
</map>
<key>AGENT_ON_OBJECT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
</map>
<key>AGENT_SCRIPTED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>The agent has scripted attachments</string>
</map>
<key>AGENT_SITTING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>AGENT_TYPING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
</map>
<key>AGENT_WALKING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
</map>
<key>ALL_SIDES</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>ANIM_ON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Texture animation is on.</string>
</map>
<key>ATTACH_AVATAR_CENTER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>40</integer>
<key>tooltip</key>
<string>Attach to the avatar's geometric centre</string>
</map>
<key>ATTACH_BACK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
<key>tooltip</key>
<string>Attach to the avatar's back</string>
</map>
<key>ATTACH_BELLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>28</integer>
<key>tooltip</key>
<string>Attach to the avatar's belly.</string>
</map>
<key>ATTACH_CHEST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Attach to the avatar's chest.</string>
</map>
<key>ATTACH_CHIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
<key>tooltip</key>
<string>Attach to the avatar's chin</string>
</map>
<key>ATTACH_HEAD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Attach to the avatar's head</string>
</map>
<key>ATTACH_HUD_BOTTOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>37</integer>
</map>
<key>ATTACH_HUD_BOTTOM_LEFT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>36</integer>
</map>
<key>ATTACH_HUD_BOTTOM_RIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>38</integer>
</map>
<key>ATTACH_HUD_CENTER_1</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>35</integer>
</map>
<key>ATTACH_HUD_CENTER_2</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>31</integer>
</map>
<key>ATTACH_HUD_TOP_CENTER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>33</integer>
</map>
<key>ATTACH_HUD_TOP_LEFT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>34</integer>
</map>
<key>ATTACH_HUD_TOP_RIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
</map>
<key>ATTACH_LEAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
<key>tooltip</key>
<string>Attach to the avatar's left ear</string>
</map>
<key>ATTACH_LEFT_PEC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
<key>tooltip</key>
<string>Attach to the avatar's left pectoral.</string>
</map>
<key>ATTACH_LEYE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
<key>tooltip</key>
<string>Attach to the avatar's left eye.</string>
</map>
<key>ATTACH_LFOOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>Attach to the avatar's left foot</string>
</map>
<key>ATTACH_LHAND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>Attach to the avatar's left hand.</string>
</map>
<key>ATTACH_LHIP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
<key>tooltip</key>
<string>Attach to the avatar's left hip.</string>
</map>
<key>ATTACH_LLARM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
<key>tooltip</key>
<string>Attach to the avatar's left lower arm</string>
</map>
<key>ATTACH_LLLEG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
<key>tooltip</key>
<string>Attach to the avatar's lower left leg.</string>
</map>
<key>ATTACH_LPEC</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
<key>tooltip</key>
<string>Attach to the avatar's right pectoral. (Deprecated, use ATTACH_RIGHT_PEC)</string>
</map>
<key>ATTACH_LSHOULDER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>Attach to the avatar's left shoulder.</string>
</map>
<key>ATTACH_LUARM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
<key>tooltip</key>
<string>Attach to the avatar's left upper arm</string>
</map>
<key>ATTACH_LULEG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
<key>tooltip</key>
<string>Attach to the avatar's lower upper leg.</string>
</map>
<key>ATTACH_MOUTH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
<key>tooltip</key>
<string>Attach to the avatar's mouth.</string>
</map>
<key>ATTACH_NECK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>39</integer>
<key>tooltip</key>
<string>Attach to the avatar's neck</string>
</map>
<key>ATTACH_NOSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
<key>tooltip</key>
<string>Attach to the avatar's nose.</string>
</map>
<key>ATTACH_PELVIS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>Attach to the avatar's pelvis.</string>
</map>
<key>ATTACH_REAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
<key>tooltip</key>
<string>Attach to the avatar's right ear.</string>
</map>
<key>ATTACH_REYE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
<key>tooltip</key>
<string>Attach to the avatar's right eye</string>
</map>
<key>ATTACH_RFOOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>Attach to the avatar's right foot</string>
</map>
<key>ATTACH_RHAND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>Attach to the avatar's right hand</string>
</map>
<key>ATTACH_RHIP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
<key>tooltip</key>
<string>Attach to the avatar's right hip</string>
</map>
<key>ATTACH_RIGHT_PEC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
<key>tooltip</key>
<string>Attach to the avatar's right pectoral.</string>
</map>
<key>ATTACH_RLARM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
<key>tooltip</key>
<string>Attach to the avatar's right lower arm.</string>
</map>
<key>ATTACH_RLLEG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
<key>tooltip</key>
<string>Attach to the avatar's right lower leg</string>
</map>
<key>ATTACH_RPEC</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
<key>tooltip</key>
<string>Attach to the avatar's left pectoral. (deprecated, use ATTACH_LEFT_PEC)</string>
</map>
<key>ATTACH_RSHOULDER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Attach to the avatar's right shoulder</string>
</map>
<key>ATTACH_RUARM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
<key>tooltip</key>
<string>Attach to the avatar's right upper arm</string>
</map>
<key>ATTACH_RULEG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>23</integer>
<key>tooltip</key>
<string>Attach to the avatar's right upper leg</string>
</map>
<key>ATTACH_LHAND_RING1</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>41</integer>
<key>tooltip</key>
<string>Attach to the avatar's left ring finger</string>
</map>
<key>ATTACH_RHAND_RING1</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>42</integer>
<key>tooltip</key>
<string>Attach to the avatar's right ring finger</string>
</map>
<key>ATTACH_TAIL_BASE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>43</integer>
<key>tooltip</key>
<string>Attach to the avatar's tail base</string>
</map>
<key>ATTACH_TAIL_TIP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>44</integer>
<key>tooltip</key>
<string>Attach to the avatar's tail tip</string>
</map>
<key>ATTACH_LWING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>45</integer>
<key>tooltip</key>
<string>Attach to the avatar's left wing</string>
</map>
<key>ATTACH_RWING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>46</integer>
<key>tooltip</key>
<string>Attach to the avatar's right wing</string>
</map>
<key>ATTACH_FACE_JAW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>47</integer>
<key>tooltip</key>
<string>Attach to the avatar's jaw.</string>
</map>
<key>ATTACH_FACE_LEAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>48</integer>
<key>tooltip</key>
<string>Attach to the avatar's left ear (extended)</string>
</map>
<key>ATTACH_FACE_REAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>49</integer>
<key>tooltip</key>
<string>Attach to the avatar's right ear</string>
</map>
<key>ATTACH_FACE_LEYE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>50</integer>
<key>tooltip</key>
<string>Attach to the avatar's left eye (extended)</string>
</map>
<key>ATTACH_FACE_REYE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>51</integer>
<key>tooltip</key>
<string>Attach to the avatar's right eye (extended)</string>
</map>
<key>ATTACH_FACE_TONGUE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>52</integer>
<key>tooltip</key>
<string>Attach to the avatar's tongue</string>
</map>
<key>ATTACH_GROIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>53</integer>
<key>tooltip</key>
<string>Attach to the avatar's groin</string>
</map>
<key>ATTACH_HIND_LFOOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>54</integer>
<key>tooltip</key>
<string>Attach to the avatar's left hind foot</string>
</map>
<key>ATTACH_HIND_RFOOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>55</integer>
<key>tooltip</key>
<string>Attach to the avatar's right hind foot</string>
</map>
<key>CAMERA_ACTIVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
</map>
<key>CAMERA_BEHINDNESS_ANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>CAMERA_BEHINDNESS_LAG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>CAMERA_DISTANCE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>CAMERA_FOCUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
</map>
<key>CAMERA_FOCUS_X</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
</map>
<key>CAMERA_FOCUS_Y</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
</map>
<key>CAMERA_FOCUS_Z</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
</map>
<key>CAMERA_FOCUS_LAG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>CAMERA_FOCUS_LOCKED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
</map>
<key>CAMERA_FOCUS_OFFSET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>CAMERA_FOCUS_OFFSET_X</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>CAMERA_FOCUS_OFFSET_Y</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>CAMERA_FOCUS_OFFSET_Z</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>CAMERA_FOCUS_THRESHOLD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
</map>
<key>CAMERA_PITCH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>CAMERA_POSITION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
</map>
<key>CAMERA_POSITION_X</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
</map>
<key>CAMERA_POSITION_Y</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
</map>
<key>CAMERA_POSITION_Z</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
</map>
<key>CAMERA_POSITION_LAG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>CAMERA_POSITION_LOCKED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
</map>
<key>CAMERA_POSITION_THRESHOLD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
</map>
<key>CHANGED_ALLOWED_DROP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>The object inventory has changed because an item was added through the llAllowInventoryDrop interface.</string>
</map>
<key>CHANGED_ANIMATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000</string>
<key>tooltip</key>
<string>The set of animations playing on the avatar to whom this object is attached has been changed.</string>
</map>
<key>CHANGED_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>The object color has changed.</string>
</map>
<key>CHANGED_INVENTORY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>The object inventory has changed.</string>
</map>
<key>CHANGED_LINK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>The object has linked or its links were broken.</string>
</map>
<key>CHANGED_MEDIA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x800</string>
</map>
<key>CHANGED_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
</map>
<key>CHANGED_REGION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>CHANGED_REGION_START</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
<key>tooltip</key>
<string>Parameter of changed event handler used to indicate the region has been restarted same as CHANGED_REGION_RESTART.</string>
</map>
<key>CHANGED_REGION_RESTART</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
<key>tooltip</key>
<string>Parameter of changed event handler used to indicate the region has been restarted same as CHANGED_REGION_START.</string>
</map>
<key>CHANGED_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>The object scale (size) has changed.</string>
</map>
<key>CHANGED_SHAPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>The object base shape has changed, e.g., a box to a cylinder.</string>
</map>
<key>CHANGED_TELEPORT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
</map>
<key>CHANGED_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>The texture offset, scale rotation, or simply the object texture has changed.</string>
</map>
<key>CLICK_ACTION_BUY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>When the prim is clicked, the buy dialog is opened.</string>
</map>
<key>CLICK_ACTION_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Performs the default action: when the prim is clicked, touch events are triggered.</string>
</map>
<key>CLICK_ACTION_OPEN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>When the prim is clicked, the object inventory dialog is opened.</string>
</map>
<key>CLICK_ACTION_OPEN_MEDIA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>When the prim is touched, the web media dialog is opened.</string>
</map>
<key>CLICK_ACTION_PAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>When the prim is clicked, the pay dialog is opened.</string>
</map>
<key>CLICK_ACTION_PLAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>When the prim is clicked, html-on-a-prim is enabled?</string>
</map>
<key>CLICK_ACTION_SIT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>When the prim is clicked, the avatar sits upon it.</string>
</map>
<key>CLICK_ACTION_TOUCH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>When the prim is clicked, touch events are triggered.</string>
</map>
<key>CONTENT_TYPE_ATOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>"application/atom+xml"</string>
</map>
<key>CONTENT_TYPE_FORM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>"application/x-www-form-urlencoded"</string>
</map>
<key>CONTENT_TYPE_HTML</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>"text/html", only valid for embedded browsers on content owned by the person viewing. Falls back to "text/plain" otherwise.</string>
</map>
<key>CONTENT_TYPE_JSON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>"application/json"</string>
</map>
<key>CONTENT_TYPE_LLSD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>"application/llsd+xml"</string>
</map>
<key>CONTENT_TYPE_RSS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>"application/rss+xml"</string>
</map>
<key>CONTENT_TYPE_TEXT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>"text/plain"</string>
</map>
<key>CONTENT_TYPE_XHTML</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>"application/xhtml+xml"</string>
</map>
<key>CONTENT_TYPE_XML</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>"application/xml"</string>
</map>
<key>CONTROL_BACK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>Test for the avatar move back control.</string>
</map>
<key>CONTROL_DOWN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>Test for the avatar move down control.</string>
</map>
<key>CONTROL_FWD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Test for the avatar move forward control.</string>
</map>
<key>CONTROL_LBUTTON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10000000</string>
<key>tooltip</key>
<string>Test for the avatar left button control.</string>
</map>
<key>CONTROL_LEFT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>Test for the avatar move left control.</string>
</map>
<key>CONTROL_ML_LBUTTON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40000000</string>
<key>tooltip</key>
<string>Test for the avatar left button control while in mouse look.</string>
</map>
<key>CONTROL_RIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>Test for the avatar move right control.</string>
</map>
<key>CONTROL_ROT_LEFT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
<key>tooltip</key>
<string>Test for the avatar rotate left control.</string>
</map>
<key>CONTROL_ROT_RIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
<key>tooltip</key>
<string>Test for the avatar rotate right control.</string>
</map>
<key>CONTROL_UP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>Test for the avatar move up control.</string>
</map>
<key>DATA_BORN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>The date the agent was born, returned in ISO 8601 format of YYYY-MM-DD.</string>
</map>
<key>DATA_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>The name of the agent.</string>
</map>
<key>DATA_ONLINE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>TRUE for online, FALSE for offline.</string>
</map>
<key>DATA_PAYINFO</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>DATA_SIM_POS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>DATA_SIM_RATING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>DATA_SIM_STATUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>DEBUG_CHANNEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2147483647</integer>
<key>tooltip</key>
<string>DEBUG_CHANNEL is an integer constant that, when passed to llSay, llWhisper, or llShout as a channel parameter, will print text to the Script Warning/Error Window.</string>
</map>
<key>DEG_TO_RAD</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>0.017453293</real>
<key>tooltip</key>
<string>
0.017453293 - Number of radians per degree.
You can use this to convert degrees to radians by multiplying the degrees by this number.
</string>
</map>
<key>DENSITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Used with llSetPhysicsMaterial to enable the density value. Must be between 1.0 and 22587.0 (in Kg/m^3 -- see if you can figure out what 22587 represents)</string>
</map>
<key>EOF</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>\\n\\n\\n</string>
<key>tooltip</key>
<string>Indicates the last line of a notecard was read.</string>
</map>
<key>ERR_GENERIC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>ERR_MALFORMED_PARAMS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-3</integer>
</map>
<key>ERR_PARCEL_PERMISSIONS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-2</integer>
</map>
<key>ERR_RUNTIME_PERMISSIONS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-4</integer>
</map>
<key>ERR_THROTTLED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-5</integer>
</map>
<key>ESTATE_ACCESS_ALLOWED_AGENT_ADD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Add the agent to this estate's Allowed Residents list.</string>
</map>
<key>ESTATE_ACCESS_ALLOWED_AGENT_REMOVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>Remove the agent from this estate's Allowed Residents list.</string>
</map>
<key>ESTATE_ACCESS_ALLOWED_GROUP_ADD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
<key>tooltip</key>
<string>Add the group to this estate's Allowed groups list.</string>
</map>
<key>ESTATE_ACCESS_ALLOWED_GROUP_REMOVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
<key>tooltip</key>
<string>Remove the group from this estate's Allowed groups list.</string>
</map>
<key>ESTATE_ACCESS_BANNED_AGENT_ADD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>64</integer>
<key>tooltip</key>
<string>Add the agent to this estate's Banned residents list.</string>
</map>
<key>ESTATE_ACCESS_BANNED_AGENT_REMOVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>128</integer>
<key>tooltip</key>
<string>Remove the agent from this estate's Banned residents list.</string>
</map>
<key>FALSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>An integer constant for boolean comparisons. Has the value '0'.</string>
</map>
<key>FRICTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Used with llSetPhysicsMaterial to enable the friction value. Must be between 0.0 and 255.0</string>
</map>
<key>GRAVITY_MULTIPLIER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>Used with llSetPhysicsMaterial to enable the gravity multiplier value. Must be between -1.0 and +28.0</string>
</map>
<key>HORIZONTAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>HTTP_BODY_MAXLENGTH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>HTTP_BODY_TRUNCATED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>HTTP_CUSTOM_HEADER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>Add an extra custom HTTP header to the request. The first string is the name of the parameter to change, e.g. "Pragma", and the second string is the value, e.g. "no-cache". Up to 8 custom headers may be configured per request. Note that certain headers, such as the default headers, are blocked for security reasons.</string>
</map>
<key>HTTP_METHOD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>HTTP_MIMETYPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>HTTP_PRAGMA_NO_CACHE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>Allows enabling/disbling of the "Pragma: no-cache" header.\nUsage: [HTTP_PRAGMA_NO_CACHE, integer SendHeader]. When SendHeader is TRUE, the "Pragma: no-cache" header is sent by the script. This matches the default behavior. When SendHeader is FALSE, no "Pragma" header is sent by the script.</string>
</map>
<key>HTTP_VERBOSE_THROTTLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>HTTP_VERIFY_CERT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>INVENTORY_ALL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>INVENTORY_ANIMATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
</map>
<key>INVENTORY_BODYPART</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
</map>
<key>INVENTORY_CLOTHING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>INVENTORY_GESTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
</map>
<key>INVENTORY_LANDMARK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>INVENTORY_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>INVENTORY_NOTECARD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>INVENTORY_OBJECT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>INVENTORY_SCRIPT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
</map>
<key>INVENTORY_SOUND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>INVENTORY_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>JSON_APPEND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>JSON_ARRAY</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD2</string>
</map>
<key>JSON_DELETE</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD8</string>
</map>
<key>JSON_FALSE</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD7</string>
</map>
<key>JSON_INVALID</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD0</string>
</map>
<key>JSON_NULL</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD5</string>
</map>
<key>JSON_NUMBER</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD3</string>
</map>
<key>JSON_OBJECT</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD1</string>
</map>
<key>JSON_STRING</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD4</string>
</map>
<key>JSON_TRUE</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>U+FDD6</string>
</map>
<key>KFM_CMD_PAUSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>For use with KFM_COMMAND.</string>
</map>
<key>KFM_CMD_PLAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>For use with KFM_COMMAND.</string>
</map>
<key>KFM_CMD_STOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>For use with KFM_COMMAND.</string>
</map>
<key>KFM_COMMAND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>KFM_DATA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>KFM_FORWARD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>For use with KFM_MODE.</string>
</map>
<key>KFM_LOOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>For use with KFM_MODE.</string>
</map>
<key>KFM_MODE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>KFM_PING_PONG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>For use with KFM_MODE.</string>
</map>
<key>KFM_REVERSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>For use with KFM_MODE.</string>
</map>
<key>KFM_ROTATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>For use with KFM_DATA.</string>
</map>
<key>KFM_TRANSLATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>For use with KFM_DATA.</string>
</map>
<key>LAND_LARGE_BRUSH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>Use a large brush size.\nNOTE: This value is incorrect, a large brush should be 2.</string>
</map>
<key>LAND_LEVEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Action to level the land.</string>
</map>
<key>LAND_LOWER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Action to lower the land.</string>
</map>
<key>LAND_MEDIUM_BRUSH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Use a medium brush size.\nNOTE: This value is incorrect, a medium brush should be 1.</string>
</map>
<key>LAND_NOISE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>LAND_RAISE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Action to raise the land.</string>
</map>
<key>LAND_REVERT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>LAND_SMALL_BRUSH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Use a small brush size.\nNOTE: This value is incorrect, a small brush should be 0.</string>
</map>
<key>LAND_SMOOTH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>LINK_ALL_CHILDREN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-3</integer>
<key>tooltip</key>
<string>This targets every object except the root in the linked set.</string>
</map>
<key>LINK_ALL_OTHERS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-2</integer>
<key>tooltip</key>
<string>This targets every object in the linked set except the object with the script.</string>
</map>
<key>LINK_ROOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>This targets the root of the linked set.</string>
</map>
<key>LINK_SET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
<key>tooltip</key>
<string>This targets every object in the linked set.</string>
</map>
<key>LINK_THIS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-4</integer>
<key>tooltip</key>
<string>The link number of the prim containing the script.</string>
</map>
<key>LIST_STAT_GEOMETRIC_MEAN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
<key>tooltip</key>
<string>Returns the geometric mean of a list of numbers</string>
</map>
<key>LIST_STAT_HARMONIC_MEAN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>100</integer>
<key>tooltip</key>
<string>Returns the harmonic mean of a list of numbers</string>
</map>
<key>LIST_STAT_MAX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>LIST_STAT_MEAN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>LIST_STAT_MEDIAN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>LIST_STAT_MIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>LIST_STAT_NUM_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>LIST_STAT_RANGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>LIST_STAT_STD_DEV</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>LIST_STAT_SUM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>LIST_STAT_SUM_SQUARES</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>LOOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>Loop the texture animation.</string>
</map>
<key>MASK_BASE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>MASK_EVERYONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>MASK_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>MASK_NEXT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>MASK_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>NPC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
</map>
<key>NULL_KEY</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>00000000-0000-0000-0000-000000000000</uuid>
</map>
<key>OBJECT_ATTACHED_POINT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
<key>tooltip</key>
<string>Gets the attachment point to which the object is attached.\nReturns 0 if the object is not an attachment (or is an avatar, etc).</string>
</map>
<key>OBJECT_BODY_SHAPE_TYPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
<key>tooltip</key>
<string>This is a flag used with llGetObjectDetails to get the body type of the avatar, based on shape data.\nIf no data is available, -1.0 is returned.\nThis is normally between 0 and 1.0, with 0.5 and larger considered 'male'</string>
</map>
<key>OBJECT_CLICK_ACTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>28</integer>
<key>tooltip</key>
<string>This is a flag used with llGetObjectDetails to get the click action.\nThe default is 0</string>
</map>
<key>OBJECT_CREATOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>Gets the object's creator key. If id is an avatar, a NULL_KEY is returned.</string>
</map>
<key>OBJECT_DESC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Gets the object's description. If id is an avatar, an empty string is returned.</string>
</map>
<key>OBJECT_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>Gets the prims's group key. If id is an avatar, a NULL_KEY is returned.</string>
</map>
<key>OBJECT_HOVER_HEIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
<key>tooltip</key>
<string>This is a flag used with llGetObjectDetails to get hover height of the avatar\nIf no data is available, 0.0 is returned.</string>
</map>
<key>OBJECT_LAST_OWNER_ID</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
<key>tooltip</key>
<string>Gets the object's last owner ID.</string>
</map>
<key>OBJECT_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Gets the object's name.</string>
</map>
<key>OBJECT_OMEGA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
<key>tooltip</key>
<string>Gets an object's angular velocity.</string>
</map>
<key>OBJECT_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>Gets an object's owner's key. If id is group owned, a NULL_KEY is returned.</string>
</map>
<key>OBJECT_PRIM_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
<key>tooltip</key>
<string>Gets the prim count of the object. The script and target object must be owned by the same owner</string>
</map>
<key>OBJECT_PHANTOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
<key>tooltip</key>
<string>Returns boolean, detailing if phantom is enabled or disabled on the object.\nIf id is an avatar or attachment, 0 is returned.</string>
</map>
<key>OBJECT_PHYSICS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
<key>tooltip</key>
<string>Returns boolean, detailing if physics is enabled or disabled on the object.\nIf id is an avatar or attachment, 0 is returned.</string>
</map>
<key>OBJECT_PHYSICS_COST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
</map>
<key>OBJECT_POS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>Gets the object's position in region coordinates.</string>
</map>
<key>OBJECT_PRIM_EQUIVALENCE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
</map>
<key>OBJECT_RENDER_WEIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
<key>tooltip</key>
<string>This is a flag used with llGetObjectDetails to get the Avatar_Rendering_Cost of an avatar, based on values reported by nearby viewers.\nIf no data is available, -1 is returned.\nThe maximum render weight stored by the simulator is 500000. When called against an object, 0 is returned.</string>
</map>
<key>OBJECT_RETURN_PARCEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>OBJECT_RETURN_PARCEL_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>OBJECT_RETURN_REGION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>OBJECT_REZZER_KEY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
</map>
<key>OBJECT_ROOT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
<key>tooltip</key>
<string>Gets the id of the root prim of the object requested.\nIf id is an avatar, return the id of the root prim of the linkset the avatar is sitting on (or the avatar's own id if the avatar is not sitting on an object within the region).</string>
</map>
<key>OBJECT_ROT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Gets the object's rotation.</string>
</map>
<key>OBJECT_RUNNING_SCRIPT_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>OBJECT_SCRIPT_MEMORY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
</map>
<key>OBJECT_SCRIPT_TIME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
</map>
<key>OBJECT_SERVER_COST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
</map>
<key>OBJECT_STREAMING_COST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
</map>
<key>OBJECT_TEMP_ON_REZ</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>23</integer>
<key>tooltip</key>
<string>Returns boolean, detailing if temporary is enabled or disabled on the object.</string>
</map>
<key>OBJECT_TOTAL_INVENTORY_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>31</integer>
<key>tooltip</key>
<string>Gets the total inventory count of the object. The script and target object must be owned by the same owner</string>
</map>
<key>OBJECT_TOTAL_SCRIPT_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
</map>
<key>OBJECT_UNKNOWN_DETAIL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>OBJECT_VELOCITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>Gets the object's velocity.</string>
</map>
<key>OS_ATTACH_MSG_ALL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-65535</integer>
<key>tooltip</key>
<string>Send the message to attachments on every point.</string>
</map>
<key>OS_ATTACH_MSG_INVERT_POINTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Invert how the attachment points list should be treated.</string>
</map>
<key>OS_ATTACH_MSG_OBJECT_CREATOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Send only to those have the same CreatorID with host object CreatorID.</string>
</map>
<key>OS_LISTEN_REGEX_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Process name parameter as regex</string>
</map>
<key>OS_LISTEN_REGEX_MESSAGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>Process message parameter as regex</string>
</map>
<key>OS_ATTACH_MSG_SCRIPT_CREATOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Send only to those have the same CreatorID with sender script CreatorID.</string>
</map>
<key>OS_NPC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>Same as NPC</string>
</map>
<key>OS_NPC_FLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>OS_NPC_NO_FLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>OS_NPC_LAND_AT_TARGET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>OS_NPC_SIT_NOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>OS_NPC_CREATOR_OWNED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
</map>
<key>OS_NPC_NOT_OWNED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
</map>
<key>OS_NPC_SENSE_AS_AGENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
</map>
<key>OS_NPC_OBJECT_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
</map>
<key>OS_NPC_RUNNING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>OSTPOBJ_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x0</string>
<key>tooltip</key>
<string>osTeleportObject flag</string>
</map>
<key>OSTPOBJ_STOPATTARRGET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>osTeleportObject flag: object is stopped at destination</string>
</map>
<key>OSTPOBJ_STOPONFAIL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>osTeleportObject flag: object stops at start point if tp fails</string>
</map>
<key>OSTPOBJ_SETROT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>osTeleportObject flag: the rotation is the final object rotation, otherwise is a added rotation</string>
</map>
<key>PARCEL_COUNT_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PARCEL_COUNT_OTHER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PARCEL_COUNT_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PARCEL_COUNT_SELECTED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PARCEL_COUNT_TEMP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PARCEL_COUNT_TOTAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PARCEL_DETAILS_AREA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>The parcel's area, in square meters. (5 chars.).</string>
</map>
<key>PARCEL_DETAILS_CLAIMDATE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>Set parcel claim date.</string>
</map>
<key>PARCEL_DETAILS_DESC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>The description of the parcel. (127 chars).</string>
</map>
<key>PARCEL_DETAILS_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>The parcel group's key. (36 chars.).</string>
</map>
<key>PARCEL_DETAILS_ID</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>The parcel's key. (36 chars.).</string>
</map>
<key>PARCEL_DETAILS_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>The name of the parcel. (63 chars.).</string>
</map>
<key>PARCEL_DETAILS_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>The parcel owner's key. (36 chars.).</string>
</map>
<key>PARCEL_DETAILS_SEE_AVATARS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>The parcel's avatar visibility setting. (1 char.).</string>
</map>
<key>PARCEL_FLAG_ALLOW_ALL_OBJECT_ENTRY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x08000000</string>
</map>
<key>PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000000</string>
</map>
<key>PARCEL_FLAG_ALLOW_CREATE_OBJECTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
</map>
<key>PARCEL_FLAG_ALLOW_DAMAGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
</map>
<key>PARCEL_FLAG_ALLOW_FLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
</map>
<key>PARCEL_FLAG_ALLOW_GROUP_OBJECT_ENTRY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10000000</string>
</map>
<key>PARCEL_FLAG_ALLOW_GROUP_SCRIPTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2000000</string>
</map>
<key>PARCEL_FLAG_ALLOW_LANDMARK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
</map>
<key>PARCEL_FLAG_ALLOW_SCRIPTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
</map>
<key>PARCEL_FLAG_ALLOW_TERRAFORM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>PARCEL_FLAG_LOCAL_SOUND_ONLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8000</string>
</map>
<key>PARCEL_FLAG_RESTRICT_PUSHOBJECT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200000</string>
</map>
<key>PARCEL_FLAG_USE_ACCESS_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>PARCEL_FLAG_USE_ACCESS_LIST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
</map>
<key>PARCEL_FLAG_USE_BAN_LIST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
</map>
<key>PARCEL_FLAG_USE_LAND_PASS_LIST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x800</string>
</map>
<key>PARCEL_MEDIA_COMMAND_AGENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_AUTO_ALIGN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_DESC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
<key>tooltip</key>
<string>Use this to get or set the parcel media description.</string>
</map>
<key>PARCEL_MEDIA_COMMAND_LOOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_LOOP_SET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
<key>tooltip</key>
<string>Used to get or set the parcel's media looping variable.</string>
</map>
<key>PARCEL_MEDIA_COMMAND_PAUSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_PLAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_SIZE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
<key>tooltip</key>
<string>Use this to get or set the parcel media pixel resolution.</string>
</map>
<key>PARCEL_MEDIA_COMMAND_STOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_TIME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_TYPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>Use this to get or set the parcel media MIME type (e.g. "text/html").</string>
</map>
<key>PARCEL_MEDIA_COMMAND_UNLOAD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>PARCEL_MEDIA_COMMAND_URL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PASS_ALWAYS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>1</string>
<key>tooltip</key>
<string>Always pass the event.</string>
</map>
<key>PASS_NEVER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>2</string>
<key>tooltip</key>
<string>Always pass the event.</string>
</map>
<key>PASS_IF_NOT_HANDLED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0</string>
<key>tooltip</key>
<string>Pass the event if there is no script handling the event in the prim.</string>
</map>
<key>PASSIVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>Static in-world objects.</string>
</map>
<key>PAY_DEFAULT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-2</integer>
</map>
<key>PAY_HIDE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>PAYMENT_INFO_ON_FILE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PAYMENT_INFO_USED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PERM_ALL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x7FFFFFFF</string>
</map>
<key>PERM_COPY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8000</string>
</map>
<key>PERM_MODIFY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000</string>
</map>
<key>PERM_MOVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80000</string>
</map>
<key>PERM_TRANSFER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2000</string>
</map>
<key>PERMISSION_ATTACH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>If this permission is enabled, the object can successfully call llAttachToAvatar to attach to the given avatar.</string>
</map>
<key>PERMISSION_CHANGE_LINKS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
<key>tooltip</key>
<string>If this permission is enabled, the object can successfully call llCreateLink, llBreakLink, and llBreakAllLinks to change links to other objects.</string>
</map>
<key>PERMISSION_CHANGE_PERMISSIONS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
<key>tooltip</key>
<string>(not yet implemented)</string>
</map>
<key>PERMISSION_CONTROL_CAMERA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x800</string>
</map>
<key>PERMISSION_DEBIT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>If this permission is enabled, the object can successfully call llGiveMoney or llTransferLindenDollars to debit the owners account.</string>
</map>
<key>PERMISSION_OVERRIDE_ANIMATIONS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8000</string>
<key>tooltip</key>
<string>Permission to override default animations.</string>
</map>
<key>PERMISSION_RELEASE_OWNERSHIP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>(not yet implemented)</string>
</map>
<key>PERMISSION_REMAP_CONTROLS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>(not yet implemented)</string>
</map>
<key>PERMISSION_RETURN_OBJECTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>65536</integer>
</map>
<key>PERMISSION_SILENT_ESTATE_MANAGEMENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000</string>
<key>tooltip</key>
<string>A script with this permission does not notify the object owner when it modifies estate access rules via llManageEstateAccess.</string>
</map>
<key>PERMISSION_TAKE_CONTROLS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>If this permission enabled, the object can successfully call the llTakeControls libray call.</string>
</map>
<key>PERMISSION_TELEPORT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1000</string>
</map>
<key>PERMISSION_TRACK_CAMERA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
</map>
<key>PERMISSION_TRIGGER_ANIMATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>If this permission is enabled, the object can successfully call llStartAnimation for the avatar that owns this.</string>
</map>
<key>PI</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>3.14159265</real>
<key>tooltip</key>
<string>3.14159265 - The number of radians in a semi-circle.</string>
</map>
<key>PI_BY_TWO</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>1.57079633</real>
<key>tooltip</key>
<string>1.57079633 - The number of radians in a quarter circle.</string>
</map>
<key>PING_PONG</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>Play animation going forwards, then backwards.</string>
</map>
<key>PRIM_ALPHA_MODE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>38</integer>
<key>tooltip</key>
<string>Prim parameter for materials using integer face, integer alpha_mode, integer alpha_cutoff.\nDefines how the alpha channel of the diffuse texture should be rendered.\nValid options for alpha_mode are PRIM_ALPHA_MODE_BLEND, _NONE, _MASK, and _EMISSIVE.\nalpha_cutoff is used only for PRIM_ALPHA_MODE_MASK.</string>
</map>
<key>PRIM_ALPHA_MODE_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Prim parameter setting for PRIM_ALPHA_MODE.\nIndicates that the diffuse texture's alpha channel should be ignored.</string>
</map>
<key>PRIM_ALPHA_MODE_BLEND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Prim parameter setting for PRIM_ALPHA_MODE.\nIndicates that the diffuse texture's alpha channel should be rendered as alpha-blended.</string>
</map>
<key>PRIM_ALPHA_MODE_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Prim parameter setting for PRIM_ALPHA_MODE.\nIndicates that the diffuse texture's alpha channel should be rendered as fully opaque for alpha values above alpha_cutoff and fully transparent otherwise.</string>
</map>
<key>PRIM_ALPHA_MODE_EMISSIVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>Prim parameter setting for PRIM_ALPHA_MODE.\nIndicates that the diffuse texture's alpha channel should be rendered as an emissivity mask.</string>
</map>
<key>PRIM_BUMP_BARK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_BUMP_BLOBS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
</map>
<key>PRIM_BUMP_BRICKS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PRIM_BUMP_BRIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_BUMP_CHECKER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>PRIM_BUMP_CONCRETE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PRIM_BUMP_DARK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_BUMP_DISKS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
</map>
<key>PRIM_BUMP_GRAVEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
</map>
<key>PRIM_BUMP_LARGETILE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
</map>
<key>PRIM_BUMP_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_BUMP_SHINY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
</map>
<key>PRIM_BUMP_SIDING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
</map>
<key>PRIM_BUMP_STONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>PRIM_BUMP_STUCCO</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
</map>
<key>PRIM_BUMP_SUCTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
</map>
<key>PRIM_BUMP_TILE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>PRIM_BUMP_WEAVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
</map>
<key>PRIM_BUMP_WOOD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_CAST_SHADOWS</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
</map>
<key>PRIM_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
</map>
<key>PRIM_DESC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>28</integer>
</map>
<key>PRIM_FLEXIBLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
</map>
<key>PRIM_FULLBRIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
</map>
<key>PRIM_GLOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
<key>tooltip</key>
<string>PRIM_GLOW is used to get or set the glow status of the face.</string>
</map>
<key>PRIM_HOLE_CIRCLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>PRIM_HOLE_DEFAULT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x00</string>
</map>
<key>PRIM_HOLE_SQUARE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
</map>
<key>PRIM_HOLE_TRIANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x30</string>
</map>
<key>PRIM_LINK_TARGET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>34</integer>
</map>
<key>PRIM_MATERIAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_MATERIAL_FLESH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_MATERIAL_GLASS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_MATERIAL_LIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PRIM_MATERIAL_METAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_MATERIAL_PLASTIC</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PRIM_MATERIAL_RUBBER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>PRIM_MATERIAL_STONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_MATERIAL_WOOD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_MEDIA_ALT_IMAGE_ENABLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets the default image state (the image that the user sees before a piece of media is active) for the chosen face. The default image is specified by Second Life's server for that media type.</string>
</map>
<key>PRIM_MEDIA_AUTO_LOOP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether auto-looping is enabled.</string>
</map>
<key>PRIM_MEDIA_AUTO_PLAY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether the media auto-plays when a Resident can view it.</string>
</map>
<key>PRIM_MEDIA_AUTO_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether auto-scaling is enabled. Auto-scaling forces the media to the full size of the texture.</string>
</map>
<key>PRIM_MEDIA_AUTO_ZOOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether clicking the media triggers auto-zoom and auto-focus on the media.</string>
</map>
<key>PRIM_MEDIA_CONTROLS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Integer. Gets/Sets the style of controls. Can be either PRIM_MEDIA_CONTROLS_STANDARD or PRIM_MEDIA_CONTROLS_MINI.</string>
</map>
<key>PRIM_MEDIA_CONTROLS_MINI</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Mini web navigation controls; does not include an address bar.</string>
</map>
<key>PRIM_MEDIA_CONTROLS_STANDARD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Standard web navigation controls.</string>
</map>
<key>PRIM_MEDIA_CURRENT_URL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>String. Gets/Sets the current url displayed on the chosen face. Changing this URL causes navigation. 1024 characters Maximum.</string>
</map>
<key>PRIM_MEDIA_FIRST_CLICK_INTERACT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether the first click interaction is enabled.</string>
</map>
<key>PRIM_MEDIA_HEIGHT_PIXELS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>Integer. Gets/Sets the height of the media in pixels.</string>
</map>
<key>PRIM_MEDIA_HOME_URL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>String. Gets/Sets the home URL for the chosen face. 1024 characters maximum.</string>
</map>
<key>PRIM_MEDIA_MAX_HEIGHT_PIXELS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2048</integer>
</map>
<key>PRIM_MEDIA_MAX_URL_LENGTH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1024</integer>
</map>
<key>PRIM_MEDIA_MAX_WHITELIST_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>64</integer>
</map>
<key>PRIM_MEDIA_MAX_WHITELIST_SIZE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1024</integer>
</map>
<key>PRIM_MEDIA_MAX_WIDTH_PIXELS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2048</integer>
</map>
<key>PRIM_MEDIA_PARAM_MAX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
</map>
<key>PRIM_MEDIA_PERM_ANYONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_MEDIA_PERM_GROUP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_MEDIA_PERM_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_MEDIA_PERM_OWNER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_MEDIA_PERMS_CONTROL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
<key>tooltip</key>
<string>Integer. Gets/Sets the permissions mask that control who can see the media control bar above the object:: PRIM_MEDIA_PERM_ANYONE, PRIM_MEDIA_PERM_GROUP, PRIM_MEDIA_PERM_NONE, PRIM_MEDIA_PERM_OWNER</string>
</map>
<key>PRIM_MEDIA_PERMS_INTERACT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
<key>tooltip</key>
<string>Integer. Gets/Sets the permissions mask that control who can interact with the object: PRIM_MEDIA_PERM_ANYONE, PRIM_MEDIA_PERM_GROUP, PRIM_MEDIA_PERM_NONE, PRIM_MEDIA_PERM_OWNER</string>
</map>
<key>PRIM_MEDIA_WHITELIST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
<key>tooltip</key>
<string>String. Gets/Sets the white-list as a string of escaped, comma-separated URLs. This string can hold up to 64 URLs or 1024 characters, whichever comes first.</string>
</map>
<key>PRIM_MEDIA_WHITELIST_ENABLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
<key>tooltip</key>
<string>Boolean. Gets/Sets whether navigation is restricted to URLs in PRIM_MEDIA_WHITELIST.</string>
</map>
<key>PRIM_MEDIA_WIDTH_PIXELS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
<key>tooltip</key>
<string>Integer. Gets/Sets the width of the media in pixels.</string>
</map>
<key>PRIM_NAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
</map>
<key>PRIM_NORMAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>37</integer>
<key>tooltip</key>
<string>Prim parameter for materials using integer face, string texture, vector repeats, vector offsets, float rotation_in_radians</string>
</map>
<key>PRIM_OMEGA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
</map>
<key>PRIM_PHANTOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PRIM_PHYSICS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_PHYSICS_SHAPE_CONVEX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Use the convex hull of the prim shape for physics (this is the default for mesh objects).</string>
</map>
<key>PRIM_PHYSICS_SHAPE_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Ignore this prim in the physics shape. NB: This cannot be applied to the root prim.</string>
</map>
<key>PRIM_PHYSICS_SHAPE_PRIM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Use the normal prim shape for physics (this is the default for all non-mesh objects).</string>
</map>
<key>PRIM_PHYSICS_SHAPE_TYPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
<key>tooltip</key>
<string>
Allows you to set the physics shape type of a prim via lsl. Permitted values are:
PRIM_PHYSICS_SHAPE_NONE, PRIM_PHYSICS_SHAPE_PRIM, PRIM_PHYSICS_SHAPE_CONVEX
</string>
</map>
<key>PRIM_POINT_LIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>23</integer>
</map>
<key>PRIM_POS_LOCAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>33</integer>
</map>
<key>PRIM_POSITION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>PRIM_ROT_LOCAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
</map>
<key>PRIM_ROTATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>PRIM_SCULPT_FLAG_INVERT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>64</integer>
<key>tooltip</key>
<string>Render inside out (inverts the normals).</string>
</map>
<key>PRIM_SCULPT_FLAG_MIRROR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>128</integer>
<key>tooltip</key>
<string>Render an X axis mirror of the sculpty.</string>
</map>
<key>PRIM_SCULPT_TYPE_CYLINDER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_SCULPT_TYPE_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PRIM_SCULPT_TYPE_PLANE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_SCULPT_TYPE_SPHERE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_SCULPT_TYPE_TORUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_SHINY_HIGH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_SHINY_LOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_SHINY_MEDIUM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_SHINY_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_SIZE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PRIM_SLICE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>35</integer>
</map>
<key>PRIM_SPECULAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>36</integer>
<key>tooltip</key>
<string>Prim parameter for materials using integer face, string texture, vector repeats, vector offsets, float rotation_in_radians, vector color, integer glossy, integer environment</string>
</map>
<key>PRIM_TEMP_ON_REZ</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_TEXGEN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
</map>
<key>PRIM_TEXGEN_DEFAULT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_TEXGEN_PLANAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_TEXT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
</map>
<key>PRIM_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
</map>
<key>PRIM_TYPE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>PRIM_TYPE_BOX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PRIM_TYPE_CYLINDER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PRIM_TYPE_PRISM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PRIM_TYPE_RING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>PRIM_TYPE_SCULPT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PRIM_TYPE_SPHERE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PRIM_TYPE_TORUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>PRIM_TYPE_TUBE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PROFILE_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Disables profiling</string>
</map>
<key>PROFILE_SCRIPT_MEMORY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Enables memory profiling</string>
</map>
<key>PSYS_PART_BF_DEST_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>PSYS_PART_BF_ONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>PSYS_PART_BF_ONE_MINUS_DEST_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
<key>PSYS_PART_BF_ONE_MINUS_SOURCE_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>PSYS_PART_BF_ONE_MINUS_SOURCE_ALPHA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>PSYS_PART_BF_SOURCE_ALPHA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>PSYS_PART_BF_SOURCE_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>PSYS_PART_BF_ZERO</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>PSYS_PART_BLEND_FUNC_DEST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
</map>
<key>PSYS_PART_BLEND_FUNC_SOURCE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
</map>
<key>PSYS_PART_BOUNCE_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>Particles bounce off of a plane at the objects Z height.</string>
</map>
<key>PSYS_PART_EMISSIVE_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
<key>tooltip</key>
<string>The particle glows.</string>
</map>
<key>PSYS_PART_END_ALPHA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>A float which determines the ending alpha of the object.</string>
</map>
<key>PSYS_PART_END_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>A vector &lt;r, g, b&gt; which determines the ending color of the object.</string>
</map>
<key>PSYS_PART_END_GLOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
</map>
<key>PSYS_PART_END_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>A vector &lt;sx, sy, z&gt;, which is the ending size of the particle billboard in meters (z is ignored).</string>
</map>
<key>PSYS_PART_FLAGS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Each particle that is emitted by the particle system is simulated based on the following flags. To use multiple flags, bitwise or (|) them together.</string>
</map>
<key>PSYS_PART_FOLLOW_SRC_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>The particle position is relative to the source objects position.</string>
</map>
<key>PSYS_PART_FOLLOW_VELOCITY_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>The particle orientation is rotated so the vertical axis faces towards the particle velocity.</string>
</map>
<key>PSYS_PART_INTERP_COLOR_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Interpolate both the color and alpha from the start value to the end value.</string>
</map>
<key>PSYS_PART_INTERP_SCALE_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>Interpolate the particle scale from the start value to the end value.</string>
</map>
<key>PSYS_PART_MAX_AGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>Age in seconds of a particle at which it dies.</string>
</map>
<key>PSYS_PART_RIBBON_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
<key>PSYS_PART_START_ALPHA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>A float which determines the starting alpha of the object.</string>
</map>
<key>PSYS_PART_START_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>A vector &lt;r.r, g.g, b.b&gt; which determines the starting color of the object.</string>
</map>
<key>PSYS_PART_START_GLOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
</map>
<key>PSYS_PART_START_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>A vector &lt;sx, sy, z&gt;, which is the starting size of the particle billboard in meters (z is ignored).</string>
</map>
<key>PSYS_PART_TARGET_LINEAR_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
</map>
<key>PSYS_PART_TARGET_POS_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>The particle heads towards the location of the target object as defined by PSYS_SRC_TARGET_KEY.</string>
</map>
<key>PSYS_PART_WIND_MASK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>Particles have their velocity damped towards the wind velocity.</string>
</map>
<key>PSYS_SRC_ACCEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>A vector &lt;x, y, z&gt; which is the acceleration to apply on particles.</string>
</map>
<key>PSYS_SRC_ANGLE_BEGIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
<key>tooltip</key>
<string>Area in radians specifying where particles will NOT be created (for ANGLE patterns)</string>
</map>
<key>PSYS_SRC_ANGLE_END</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>23</integer>
<key>tooltip</key>
<string>Area in radians filled with particles (for ANGLE patterns) (if lower than PSYS_SRC_ANGLE_BEGIN, acts as PSYS_SRC_ANGLE_BEGIN itself, and PSYS_SRC_ANGLE_BEGIN acts as PSYS_SRC_ANGLE_END).</string>
</map>
<key>PSYS_SRC_BURST_PART_COUNT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
<key>tooltip</key>
<string>How many particles to release in a burst.</string>
</map>
<key>PSYS_SRC_BURST_RADIUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
<key>tooltip</key>
<string>What distance from the center of the object to create the particles.</string>
</map>
<key>PSYS_SRC_BURST_RATE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
<key>tooltip</key>
<string>How often to release a particle burst (float seconds).</string>
</map>
<key>PSYS_SRC_BURST_SPEED_MAX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
<key>tooltip</key>
<string>Maximum speed that a particle should be moving.</string>
</map>
<key>PSYS_SRC_BURST_SPEED_MIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
<key>tooltip</key>
<string>Minimum speed that a particle should be moving.</string>
</map>
<key>PSYS_SRC_INNERANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>
Specifies the inner angle of the arc created by the PSYS_SRC_PATTERN_ANGLE or PSYS_SRC_PATTERN_ANGLE_CONE source pattern.
The area specified will NOT have particles in it.
</string>
</map>
<key>PSYS_SRC_MAX_AGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
<key>tooltip</key>
<string>How long this particle system should last, 0.0 means forever.</string>
</map>
<key>PSYS_SRC_OMEGA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
<key>tooltip</key>
<string>Sets the angular velocity to rotate the axis that SRC_PATTERN_ANGLE and SRC_PATTERN_ANGLE_CONE use.</string>
</map>
<key>PSYS_SRC_OUTERANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
<key>tooltip</key>
<string>Specifies the outer angle of the arc created by the PSYS_SRC_PATTERN_ANGLE or PSYS_SRC_PATTERN_ANGLE_CONE source pattern.The area between the outer and inner angle will be filled with particles.</string>
</map>
<key>PSYS_SRC_PATTERN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
<key>tooltip</key>
<string>The pattern which is used to generate particles. Use one of the following values: PSYS_SRC_PATTERN Values.</string>
</map>
<key>PSYS_SRC_PATTERN_ANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x04</string>
<key>tooltip</key>
<string>Shoot particles across a 2 dimensional area defined by the arc created from PSYS_SRC_OUTERANGLE. There will be an open area defined by PSYS_SRC_INNERANGLE within the larger arc.</string>
</map>
<key>PSYS_SRC_PATTERN_ANGLE_CONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x08</string>
<key>tooltip</key>
<string>Shoot particles out in a 3 dimensional cone with an outer arc of PSYS_SRC_OUTERANGLE and an inner open area defined by PSYS_SRC_INNERANGLE.</string>
</map>
<key>PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>PSYS_SRC_PATTERN_DROP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x01</string>
<key>tooltip</key>
<string>Drop particles at the source position.</string>
</map>
<key>PSYS_SRC_PATTERN_EXPLODE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x02</string>
<key>tooltip</key>
<string>Shoot particles out in all directions, using the burst parameters.</string>
</map>
<key>PSYS_SRC_TARGET_KEY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
<key>tooltip</key>
<string>The key of a target object to move towards if PSYS_PART_TARGET_POS_MASK is enabled.</string>
</map>
<key>PSYS_SRC_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
<key>tooltip</key>
<string>An asset name for the texture to use for the particles.</string>
</map>
<key>PUBLIC_CHANNEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>PUBLIC_CHANNEL is an integer constant that, when passed to llSay, llWhisper, or llShout as a channel parameter, will print text to the publicly heard chat channel.</string>
</map>
<key>RAD_TO_DEG</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>57.2957795</real>
<key>tooltip</key>
<string>57.2957795 - Number of degrees per radian. You can use this number to convert radians to degrees by multiplying the radians by this number.</string>
</map>
<key>RC_DATA_FLAGS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>RC_DETECT_PHANTOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>RC_GET_LINK_NUM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>RC_GET_NORMAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>RC_GET_ROOT_KEY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>RC_MAX_HITS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>RC_REJECT_AGENTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>RC_REJECT_LAND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>RC_REJECT_NONPHYSICAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>RC_REJECT_PHYSICAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>RC_REJECT_TYPES</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>RCERR_CAST_TIME_EXCEEDED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-3</integer>
</map>
<key>RCERR_SIM_PERF_LOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-2</integer>
</map>
<key>RCERR_UNKNOWN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>-1</integer>
</map>
<key>REGION_FLAG_ALLOW_DAMAGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
</map>
<key>REGION_FLAG_ALLOW_DIRECT_TELEPORT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100000</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
<key>REGION_FLAG_BLOCK_FLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80000</string>
</map>
<key>REGION_FLAG_BLOCK_FLYOVER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8000000</string>
</map>
<key>REGION_FLAG_BLOCK_TERRAFORM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
</map>
<key>REGION_FLAG_DISABLE_COLLISIONS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1000</string>
</map>
<key>REGION_FLAG_DISABLE_PHYSICS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4000</string>
</map>
<key>REGION_FLAG_FIXED_SUN</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
</map>
<key>REGION_FLAG_RESTRICT_PUSHOBJECT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400000</string>
</map>
<key>REGION_FLAG_SANDBOX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>REMOTE_DATA_CHANNEL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>REMOTE_DATA_REPLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>REMOTE_DATA_REQUEST</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>REQUIRE_LINE_OF_SIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Define whether the character needs a line-of-sight to give chase.</string>
</map>
<key>RESTITUTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Used with llSetPhysicsMaterial to enable the density value. Must be between 0.0 and 1.0</string>
</map>
<key>REVERSE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>Play animation in reverse direction.</string>
</map>
<key>ROTATE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>Animate texture rotation.</string>
</map>
<key>SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>Animate the texture scale.</string>
</map>
<key>SCRIPTED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>Scripted in-world objects.</string>
</map>
<key>SMOOTH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>Slide in the X direction, instead of playing separate frames.</string>
</map>
<key>SQRT2</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>1.41421356</real>
<key>tooltip</key>
<string>1.41421356 - The square root of 2.</string>
</map>
<key>STATUS_BLOCK_GRAB</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>Controls whether the object can be grabbed.\nA grab is the default action when in third person, and is available as the hand tool in build mode. This is useful for physical objects that you don't want other people to be able to trivially disturb. The default is FALSE</string>
</map>
<key>STATS_TIME_DILATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>osGetRegionStats Time Dilation</string>
</map>
<key>STATS_SIM_FPS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>osGetRegionStats Sim FPS</string>
</map>
<key>STATS_PHYSICS_FPS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>osGetRegionStats Physics FPS</string>
</map>
<key>STATS_AGENT_UPDATES</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>osGetRegionStats Agent Updates/Sec</string>
</map>
<key>STATS_ROOT_AGENTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>osGetRegionStats Main Agents</string>
</map>
<key>STATS_CHILD_AGENTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>osGetRegionStats Child Agents</string>
</map>
<key>STATS_TOTAL_PRIMS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>osGetRegionStats Objects</string>
</map>
<key>STATS_ACTIVE_PRIMS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
<key>tooltip</key>
<string>osGetRegionStats Active Objects</string>
</map>
<key>STATS_FRAME_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
<key>tooltip</key>
<string>osGetRegionStats Total Frame Time</string>
</map>
<key>STATS_NET_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
<key>tooltip</key>
<string>osGetRegionStats Net Time</string>
</map>
<key>STATS_PHYSICS_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
<key>tooltip</key>
<string>osGetRegionStats Physics Time</string>
</map>
<key>STATS_IMAGE_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
<key>tooltip</key>
<string>osGetRegionStats Image Time</string>
</map>
<key>STATS_OTHER_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
<key>tooltip</key>
<string>osGetRegionStats Other Time</string>
</map>
<key>STATS_IN_PACKETS_PER_SECOND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
<key>tooltip</key>
<string>osGetRegionStats Packets in</string>
</map>
<key>STATS_OUT_PACKETS_PER_SECOND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
<key>tooltip</key>
<string>osGetRegionStats Packets out</string>
</map>
<key>STATS_UNACKED_BYTES</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
<key>tooltip</key>
<string>osGetRegionStats Total Unacked Bytes</string>
</map>
<key>STATS_AGENT_MS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
<key>tooltip</key>
<string>osGetRegionStats Agent Time</string>
</map>
<key>STATS_PENDING_DOWNLOADS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
<key>tooltip</key>
<string>osGetRegionStats Pending Downloads</string>
</map>
<key>STATS_PENDING_UPLOADS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
<key>tooltip</key>
<string>osGetRegionStats Pending Uploads</string>
</map>
<key>STATS_ACTIVE_SCRIPTS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
<key>tooltip</key>
<string>osGetRegionStats Active Scripts</string>
</map>
<key>STATS_SCRIPT_LPS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
<key>tooltip</key>
<string>osGetRegionStats Script Line Per Second</string>
</map>
<key>STATUS_BLOCK_GRAB_OBJECT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x400</string>
<key>tooltip</key>
<string>Prevent click-and-drag movement on all prims in the object.</string>
</map>
<key>STATUS_BOUNDS_ERROR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1002</integer>
<key>tooltip</key>
<string>Argument(s) passed to function had a bounds error.</string>
</map>
<key>STATUS_CAST_SHADOWS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
<key>STATUS_DIE_AT_EDGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
<key>tooltip</key>
<string>Controls whether the object is returned to the owners inventory if it wanders off the edge of the world.\nIt is useful to set this status TRUE for things like bullets or rockets. The default is TRUE</string>
</map>
<key>STATUS_INTERNAL_ERROR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1999</integer>
<key>tooltip</key>
<string>An internal error occurred.</string>
</map>
<key>STATUS_MALFORMED_PARAMS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1000</integer>
<key>tooltip</key>
<string>Function was called with malformed parameters.</string>
</map>
<key>STATUS_NOT_FOUND</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1003</integer>
<key>tooltip</key>
<string>Object or other item was not found.</string>
</map>
<key>STATUS_NOT_SUPPORTED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1004</integer>
<key>tooltip</key>
<string>Feature not supported.</string>
</map>
<key>STATUS_OK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>Result of function call was a success.</string>
</map>
<key>STATUS_PHANTOM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>Controls/indicates whether the object collides or not.\nSetting the value to TRUE makes the object non-colliding with all objects. It is a good idea to use this for most objects that move or rotate, but are non-physical. It is also useful for simulating volumetric lighting. The default is FALSE.</string>
</map>
<key>STATUS_PHYSICS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Controls/indicates whether the object moves physically.\nThis controls the same flag that the UI check-box for Physical controls. The default is FALSE.</string>
</map>
<key>STATUS_RETURN_AT_EDGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>STATUS_ROTATE_X</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>enable (TRUE) or disable (FALSE) rotation around Y axis of physical objects</string>
</map>
<key>STATUS_ROTATE_Y</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>enable (TRUE) or disable (FALSE) rotation around Y axis of physical objects</string>
</map>
<key>STATUS_ROTATE_Z</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>enable (TRUE) or disable (FALSE) rotation around Z axis of physical objects</string>
</map>
<key>STATUS_SANDBOX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>Controls/indicates whether the object can cross region boundaries and move more than 20 meters from its creation point. The default if FALSE.</string>
</map>
<key>STATUS_TYPE_MISMATCH</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1001</integer>
<key>tooltip</key>
<string>Argument(s) passed to function had a type mismatch.</string>
</map>
<key>STATUS_WHITELIST_FAILED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2001</integer>
<key>tooltip</key>
<string>Whitelist Failed.</string>
</map>
<key>STRING_TRIM</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x03</string>
</map>
<key>STRING_TRIM_HEAD</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x01</string>
</map>
<key>STRING_TRIM_TAIL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x02</string>
</map>
<key>TEXTURE_BLANK</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>5748decc-f629-461c-9a36-a35a221fe21f</uuid>
</map>
<key>TEXTURE_DEFAULT</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>89556747-24cb-43ed-920b-47caed15465f</uuid>
</map>
<key>TEXTURE_MEDIA</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>8b5fec65-8d8d-9dc5-cda8-8fdf2716e361</uuid>
</map>
<key>TEXTURE_PLYWOOD</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>89556747-24cb-43ed-920b-47caed15465f</uuid>
</map>
<key>TEXTURE_TRANSPARENT</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<uuid>8dcd4a48-2d37-4909-9f78-f7a9eb4ef903</uuid>
</map>
<key>TOUCH_INVALID_FACE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0xFFFFFFFF</string>
</map>
<key>TOUCH_INVALID_TEXCOORD</key>
<map>
<key>type</key>
<string>vector</string>
<key>value</key>
<string>&lt;-1.0, -1.0, 0.0&gt;</string>
</map>
<key>TOUCH_INVALID_VECTOR</key>
<map>
<key>type</key>
<string>vector</string>
<key>value</key>
<string>&lt;0.0, 0.0, 0.0&gt;</string>
</map>
<key>TRUE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>An integer constant for boolean comparisons. Has the value '1'.</string>
</map>
<key>TWO_PI</key>
<map>
<key>type</key>
<string>float</string>
<key>value</key>
<real>6.28318530</real>
<key>tooltip</key>
<string>6.28318530 - The radians of a circle.</string>
</map>
<key>TYPE_FLOAT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>The list entry is a float.</string>
</map>
<key>TYPE_INTEGER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>The list entry is an integer.</string>
</map>
<key>TYPE_INVALID</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
<key>tooltip</key>
<string>The list entry is invalid.</string>
</map>
<key>TYPE_KEY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>The list entry is a key.</string>
</map>
<key>TYPE_ROTATION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
<key>tooltip</key>
<string>The list entry is a rotation.</string>
</map>
<key>TYPE_STRING</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>The list entry is a string.</string>
</map>
<key>TYPE_VECTOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>The list entry is a vector.</string>
</map>
<key>URL_REQUEST_DENIED</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>URL_REQUEST_DENIED</string>
</map>
<key>URL_REQUEST_GRANTED</key>
<map>
<key>type</key>
<string>string</string>
<key>value</key>
<string>URL_REQUEST_GRANTED</string>
</map>
<key>VEHICLE_ANGULAR_DEFLECTION_EFFICIENCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
<key>tooltip</key>
<string>A slider between minimum (0.0) and maximum (1.0) deflection of angular orientation. That is, its a simple scalar for modulating the strength of angular deflection such that the vehicles preferred axis of motion points toward its real velocity.</string>
</map>
<key>VEHICLE_ANGULAR_DEFLECTION_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>33</integer>
<key>tooltip</key>
<string>The time-scale for exponential success of linear deflection deflection. Its another way to specify the strength of the vehicles tendency to reorient itself so that its preferred axis of motion agrees with its true velocity.</string>
</map>
<key>VEHICLE_ANGULAR_FRICTION_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
<key>tooltip</key>
<string>
A vector of timescales for exponential decay of the vehicles angular velocity about its preferred axes of motion (at, left, up).
Range = [0.07, inf) seconds for each element of the vector.
</string>
</map>
<key>VEHICLE_ANGULAR_MOTOR_DECAY_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>35</integer>
<key>tooltip</key>
<string>The timescale for exponential decay of the angular motors magnitude.</string>
</map>
<key>VEHICLE_ANGULAR_MOTOR_DIRECTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
<key>tooltip</key>
<string>The direction and magnitude (in preferred frame) of the vehicles angular motor.The vehicle will accelerate (or decelerate if necessary) to match its velocity to its motor.</string>
</map>
<key>VEHICLE_ANGULAR_MOTOR_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>34</integer>
<key>tooltip</key>
<string>The timescale for exponential approach to full angular motor velocity.</string>
</map>
<key>VEHICLE_BANKING_EFFICIENCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>38</integer>
<key>tooltip</key>
<string>A slider between anti (-1.0), none (0.0), and maxmum (1.0) banking strength.</string>
</map>
<key>VEHICLE_BANKING_MIX</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>39</integer>
<key>tooltip</key>
<string>A slider between static (0.0) and dynamic (1.0) banking. "Static" means the banking scales only with the angle of roll, whereas "dynamic" is a term that also scales with the vehicles linear speed.</string>
</map>
<key>VEHICLE_BANKING_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>40</integer>
<key>tooltip</key>
<string>The timescale for banking to exponentially approach its maximum effect. This is another way to scale the strength of the banking effect, however it affects the term that is proportional to the difference between what the banking behavior is trying to do, and what the vehicle is actually doing.</string>
</map>
<key>VEHICLE_BUOYANCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
<key>tooltip</key>
<string>A slider between minimum (0.0) and maximum anti-gravity (1.0).</string>
</map>
<key>VEHICLE_FLAG_CAMERA_DECOUPLED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x200</string>
</map>
<key>VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x10</string>
<key>tooltip</key>
<string>Hover at global height.</string>
</map>
<key>VEHICLE_FLAG_HOVER_TERRAIN_ONLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x8</string>
<key>tooltip</key>
<string>Ignore water height when hovering.</string>
</map>
<key>VEHICLE_FLAG_HOVER_UP_ONLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x20</string>
<key>tooltip</key>
<string>Hover does not push down. Use this flag for hovering vehicles that should be able to jump above their hover height.</string>
</map>
<key>VEHICLE_FLAG_HOVER_WATER_ONLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x4</string>
<key>tooltip</key>
<string>Ignore terrain height when hovering.</string>
</map>
<key>VEHICLE_FLAG_LIMIT_MOTOR_UP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x40</string>
<key>tooltip</key>
<string>Prevents ground vehicles from motoring into the sky.</string>
</map>
<key>VEHICLE_FLAG_LIMIT_ROLL_ONLY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x2</string>
<key>tooltip</key>
<string>For vehicles with vertical attractor that want to be able to climb/dive, for instance, aeroplanes that want to use the banking feature.</string>
</map>
<key>VEHICLE_FLAG_MOUSELOOK_BANK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x100</string>
</map>
<key>VEHICLE_FLAG_MOUSELOOK_STEER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x80</string>
</map>
<key>VEHICLE_FLAG_NO_DEFLECTION_UP</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>This flag prevents linear deflection parallel to world z-axis. This is useful for preventing ground vehicles with large linear deflection, like bumper cars, from climbing their linear deflection into the sky.</string>
</map>
<key>VEHICLE_FLAG_NO_FLY_UP</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>type</key>
<string>integer</string>
<key>value</key>
<string>0x1</string>
<key>tooltip</key>
<string>Old, changed to VEHICLE_FLAG_NO_DEFLECTION_UP</string>
</map>
<key>VEHICLE_HOVER_EFFICIENCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
<key>tooltip</key>
<string>A slider between minimum (0.0 = bouncy) and maximum (1.0 = fast as possible) damped motion of the hover behavior. </string>
</map>
<key>VEHICLE_HOVER_HEIGHT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
<key>tooltip</key>
<string>The height (above the terrain or water, or global) at which the vehicle will try to hover.</string>
</map>
<key>VEHICLE_HOVER_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
<key>tooltip</key>
<string>Period of time (in seconds) for the vehicle to achieve its hover height.</string>
</map>
<key>VEHICLE_LINEAR_DEFLECTION_EFFICIENCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>28</integer>
<key>tooltip</key>
<string>A slider between minimum (0.0) and maximum (1.0) deflection of linear velocity. That is, its a simple scalar for modulating the strength of linear deflection.</string>
</map>
<key>VEHICLE_LINEAR_DEFLECTION_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
<key>tooltip</key>
<string>The timescale for exponential success of linear deflection deflection. It is another way to specify how much time it takes for the vehicles linear velocity to be redirected to its preferred axis of motion.</string>
</map>
<key>VEHICLE_LINEAR_FRICTION_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
<key>tooltip</key>
<string>
A vector of timescales for exponential decay of the vehicles linear velocity along its preferred axes of motion (at, left, up).
Range = [0.07, inf) seconds for each element of the vector.
</string>
</map>
<key>VEHICLE_LINEAR_MOTOR_DECAY_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>31</integer>
<key>tooltip</key>
<string>The timescale for exponential decay of the linear motors magnitude.</string>
</map>
<key>VEHICLE_LINEAR_MOTOR_DIRECTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
<key>tooltip</key>
<string>
The direction and magnitude (in preferred frame) of the vehicles linear motor. The vehicle will accelerate (or decelerate if necessary) to match its velocity to its motor.
Range of magnitude = [0, 30] meters/second.
</string>
</map>
<key>VEHICLE_LINEAR_MOTOR_OFFSET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
<key>VEHICLE_LINEAR_MOTOR_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
<key>tooltip</key>
<string>The timescale for exponential approach to full linear motor velocity.</string>
</map>
<key>VEHICLE_REFERENCE_FRAME</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>44</integer>
<key>tooltip</key>
<string>A rotation of the vehicles preferred axes of motion and orientation (at, left, up) with respect to the vehicles local frame (x, y, z).</string>
</map>
<key>VEHICLE_TYPE_AIRPLANE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
<key>tooltip</key>
<string>Uses linear deflection for lift, no hover, and banking to turn.\nSee http://wiki.secondlife.com/wiki/VEHICLE_TYPE_AIRPLANE</string>
</map>
<key>VEHICLE_TYPE_BALLOON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
<key>tooltip</key>
<string>Hover, and friction, but no deflection.\nSee http://wiki.secondlife.com/wiki/VEHICLE_TYPE_BALLOON</string>
</map>
<key>VEHICLE_TYPE_BOAT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
<key>tooltip</key>
<string>Hovers over water with lots of friction and some anglar deflection.\nSee http://wiki.secondlife.com/wiki/VEHICLE_TYPE_BOAT</string>
</map>
<key>VEHICLE_TYPE_CAR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
<key>tooltip</key>
<string>Another vehicle that bounces along the ground but needs the motors to be driven from external controls or timer events.\nSee http://wiki.secondlife.com/wiki/VEHICLE_TYPE_CAR</string>
</map>
<key>VEHICLE_TYPE_NONE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>VEHICLE_TYPE_SLED</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
<key>tooltip</key>
<string>Simple vehicle that bumps along the ground, and likes to move along its local x-axis.\nSee http://wiki.secondlife.com/wiki/VEHICLE_TYPE_SLED</string>
</map>
<key>VEHICLE_VERTICAL_ATTRACTION_EFFICIENCY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>36</integer>
<key>tooltip</key>
<string>A slider between minimum (0.0 = wobbly) and maximum (1.0 = firm as possible) stability of the vehicle to keep itself upright.</string>
</map>
<key>VEHICLE_VERTICAL_ATTRACTION_TIMESCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>37</integer>
<key>tooltip</key>
<string>The period of wobble, or timescale for exponential approach, of the vehicle to rotate such that its preferred "up" axis is oriented along the worlds "up" axis.</string>
</map>
<key>VERTICAL</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
2018-10-19 23:21:40 +00:00
<key>WL_WATER_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>0</integer>
</map>
<key>WL_WATER_FOG_DENSITY_EXPONENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>1</integer>
</map>
<key>WL_UNDERWATER_FOG_MODIFIER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>2</integer>
</map>
<key>WL_REFLECTION_WAVELET_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>3</integer>
</map>
<key>WL_FRESNEL_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>4</integer>
</map>
<key>WL_FRESNEL_OFFSET</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>5</integer>
</map>
<key>WL_REFRACT_SCALE_ABOVE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>6</integer>
</map>
<key>WL_REFRACT_SCALE_BELOW</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>7</integer>
</map>
<key>WL_BLUR_MULTIPLIER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>8</integer>
</map>
<key>WL_BIG_WAVE_DIRECTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>9</integer>
</map>
<key>WL_LITTLE_WAVE_DIRECTION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>10</integer>
</map>
<key>WL_NORMAL_MAP_TEXTURE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>11</integer>
</map>
<key>WL_HORIZON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>12</integer>
</map>
<key>WL_HAZE_HORIZON</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>13</integer>
</map>
<key>WL_BLUE_DENSITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>14</integer>
</map>
<key>WL_HAZE_DENSITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>15</integer>
</map>
<key>WL_DENSITY_MULTIPLIER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>16</integer>
</map>
<key>WL_DISTANCE_MULTIPLIER</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>17</integer>
</map>
<key>WL_MAX_ALTITUDE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>18</integer>
</map>
<key>WL_SUN_MOON_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>19</integer>
</map>
<key>WL_AMBIENT</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>20</integer>
</map>
<key>WL_EAST_ANGLE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>21</integer>
</map>
<key>WL_SUN_GLOW_FOCUS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>22</integer>
</map>
<key>WL_SUN_GLOW_SIZE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>23</integer>
</map>
<key>WL_SCENE_GAMMA</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>24</integer>
</map>
<key>WL_STAR_BRIGHTNESS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>25</integer>
</map>
<key>WL_CLOUD_COLOR</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>26</integer>
</map>
<key>WL_CLOUD_XY_DENSITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>27</integer>
</map>
<key>WL_CLOUD_COVERAGE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>28</integer>
</map>
<key>WL_CLOUD_SCALE</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>29</integer>
</map>
<key>WL_CLOUD_DETAIL_XY_DENSITY</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>30</integer>
</map>
<key>WL_CLOUD_SCROLL_X</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>31</integer>
</map>
<key>WL_CLOUD_SCROLL_Y</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>32</integer>
</map>
<key>WL_CLOUD_SCROLL_Y_LOCK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>33</integer>
</map>
<key>WL_CLOUD_SCROLL_X_LOCK</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>34</integer>
</map>
<key>WL_DRAW_CLASSIC_CLOUDS</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>35</integer>
</map>
<key>WL_SUN_MOON_POSITION</key>
<map>
<key>type</key>
<string>integer</string>
<key>value</key>
<integer>36</integer>
</map>
2018-10-19 17:35:31 +00:00
<key>ZERO_ROTATION</key>
<map>
<key>type</key>
<string>rotation</string>
<key>value</key>
<string>&lt;0.0, 0.0, 0.0, 1.0&gt;</string>
</map>
<key>ZERO_VECTOR</key>
<map>
<key>type</key>
<string>vector</string>
<key>value</key>
<string>&lt;0.0, 0.0, 0.0&gt;</string>
</map>
<key>default</key>
<map>
<key>tooltip</key>
<string>All scripts must have a default state, which is the first state entered when the script starts.\nIf another state is defined before the default state, the compiler will report a syntax error.</string>
</map>
</map>
<key>events</key>
<map>
<key>at_rot_target</key>
<map>
<key>arguments</key>
<array>
<map>
<key>TargetNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>TargetRotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>CurrentRotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is triggered when a script comes within a defined angle of a target rotation. The range and rotation, are set by a call to llRotTarget.</string>
</map>
<key>at_target</key>
<map>
<key>arguments</key>
<array>
<map>
<key>TargetNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>TargetPosition</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>CurrentPosition</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is triggered when the scripted object comes within a defined range of the target position, defined by the llTarget function call.</string>
</map>
<key>attach</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is triggered whenever an object is attached or detached from an avatar. If it is attached, the key of the avatar it is attached to is passed in, otherwise NULL_KEY is.</string>
</map>
<key>changed</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Changed</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered when various events change the object. The change argument will be a bit-field of CHANGED_* constants.</string>
</map>
<key>collision</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfCollisions</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised while another object, or avatar, is colliding with the object the script is attached to.
The number of detected objects is passed to the script. Information on those objects may be gathered via the llDetected* functions.
</string>
</map>
<key>collision_end</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfCollisions</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised when another object, or avatar, stops colliding with the object the script is attached to.
The number of detected objects is passed to the script. Information on those objects may be gathered via the llDetected* library functions.
</string>
</map>
<key>collision_start</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfCollisions</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised when another object, or avatar, starts colliding with the object the script is attached to.
The number of detected objects is passed to the script. Information on those objects may be gathered via the llDetected* library functions.
</string>
</map>
<key>control</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Levels</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Edges</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Once a script has the ability to grab control inputs from the avatar, this event will be used to pass the commands into the script.
The levels and edges are bit-fields of control constants.
</string>
</map>
<key>dataserver</key>
<map>
<key>arguments</key>
<array>
<map>
<key>RequestID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is triggered when the requested data is returned to the script.
Data may be requested by the llRequestAgentData, llRequestInventoryData, and llGetNotecardLine function calls, for example.
</string>
</map>
<key>email</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Time</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Address</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Subject</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Body</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>NumberRemaining</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is triggered when an email sent to this script arrives.
The number remaining tells how many more emails are known to be still pending.
</string>
</map>
<key>http_request</key>
<map>
<key>arguments</key>
<array>
<map>
<key>HTTPRequestID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>HTTPMethod</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Body</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered when task receives an HTTP request.</string>
</map>
<key>http_response</key>
<map>
<key>arguments</key>
<array>
<map>
<key>HTTPRequestID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Status</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Metadata</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Body</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event handler is invoked when an HTTP response is received for a pending llHTTPRequest request or if a pending request fails or times out.</string>
</map>
<key>land_collision</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is raised when the object the script is attached to is colliding with the ground.</string>
</map>
<key>land_collision_end</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is raised when the object the script is attached to stops colliding with the ground.</string>
</map>
<key>land_collision_start</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is raised when the object the script is attached to begins to collide with the ground.</string>
</map>
<key>link_message</key>
<map>
<key>arguments</key>
<array>
<map>
<key>SendersLink</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered when object receives a link message via llMessageLinked function call.</string>
</map>
<key>listen</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised whenever a chat message matching the constraints set in the llListen command is received. The name and ID of the speaker, as well as the message, are passed in as parameters.
Channel 0 is the public chat channel that all avatars see as chat text. Channels 1 through 2,147,483,648 are private channels that are not sent to avatars but other scripts can listen on those channels.
</string>
</map>
<key>money</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Payer</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Amount</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This event is triggered when a resident has given an amount of Linden dollars to the object.</string>
</map>
<key>moving_end</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Triggered whenever an object with this script stops moving.</string>
</map>
<key>moving_start</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Triggered whenever an object with this script starts moving.</string>
</map>
<key>no_sensor</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>This event is raised when sensors are active, via the llSensor function call, but are not sensing anything.</string>
</map>
<key>not_at_rot_target</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>When a target is set via the llRotTarget function call, but the script is outside the specified angle this event is raised.</string>
</map>
<key>not_at_target</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>When a target is set via the llTarget library call, but the script is outside the specified range this event is raised.</string>
</map>
<key>object_rez</key>
<map>
<key>arguments</key>
<array>
<map>
<key>RezzedObjectsID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered when an object rezzes another object from its inventory via the llRezObject, or similar, functions. The id is the globally unique key for the object rezzed.</string>
</map>
<key>on_rez</key>
<map>
<key>arguments</key>
<array>
<map>
<key>StartParameter</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered whenever an object is rezzed from inventory or by another object. The start parameter is passed in from the llRezObject call, or zero if from inventory.</string>
</map>
<key>remote_data</key>
<map>
<key>arguments</key>
<array>
<map>
<key>EventType</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>ChannelID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>MessageID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Sender</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Data</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered by various XML-RPC calls with event_type specifying the type of data.</string>
</map>
<key>run_time_permissions</key>
<map>
<key>arguments</key>
<array>
<map>
<key>PermissionFlags</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Scripts need permission from either the owner or the avatar they wish to act on before they may perform certain functions, such as debiting money from their owners account, triggering an animation on an avatar, or capturing control inputs. The llRequestPermissions library function is used to request these permissions and the various permissions integer constants can be supplied.
The integer returned to this event handler contains the current set of permissions flags, so if permissions equal 0 then no permissions are set.
</string>
</map>
<key>sensor</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberDetected</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised whenever objects matching the constraints of the llSensor command are detected.
The number of detected objects is passed to the script in the parameter. Information on those objects may be gathered via the llDetected* functions.
</string>
</map>
<key>state_entry</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>The state_entry event occurs whenever a new state is entered, including at program start, and is always the first event handled.</string>
</map>
<key>state_exit</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>The state_exit event occurs whenever the state command is used to transition to another state. It is handled before the new states state_entry event.</string>
</map>
<key>timer</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>This event is raised at regular intervals set by the llSetTimerEvent library function.</string>
</map>
<key>touch</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfTouches</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised while a user is touching the object the script is attached to.
The number of touching objects is passed to the script in the parameter.
Information on those objects may be gathered via the llDetected* library functions.
</string>
</map>
<key>touch_end</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfTouches</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised when a user stops touching the object the script is attached to. The number of touches is passed to the script in the parameter.
Information on those objects may be gathered via the llDetected* library functions.
</string>
</map>
<key>touch_start</key>
<map>
<key>arguments</key>
<array>
<map>
<key>NumberOfTouches</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
This event is raised when a user first touches the object the script is attached to. The number of touches is passed to the script in the parameter.
Information on those objects may be gathered via the llDetected() library functions.
</string>
</map>
<key>transaction_result</key>
<map>
<key>arguments</key>
<array>
<map>
<key>RequestID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Success</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Triggered by llTransferMoney() function.</string>
</map>
</map>
<!-- functions -->
<key>functions</key>
<map>
<key>llAbs</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>An integer value.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the absolute (positive) version of Value.</string>
</map>
<key>llAcos</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>A floating-point value.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the arc-cosine of Value, in radians.</string>
</map>
<key>llAddToLandBanList</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Agent UUID to add to ban-list.</string>
</map>
</map>
<map>
<key>Hours</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Period, in hours, to ban the avatar for.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Add avatar ID to the parcel ban list for the specified number of Hours.\nA value of 0 for Hours will add the agent indefinitely.\nThe smallest value that Hours will accept is 0.01; anything smaller will be seen as 0.\nWhen values that small are used, it seems the function bans in approximately 30 second increments (Probably 36 second increments, as 0.01 of an hour is 36 seconds).\nResidents teleporting to a parcel where they are banned will be redirected to a neighbouring parcel.</string>
</map>
<key>llAddToLandPassList</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Agent UUID to add to pass-list.</string>
</map>
</map>
<map>
<key>Hours</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Period, in hours, to allow the avatar for.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Add avatar ID to the land pass list, for a duration of Hours.</string>
</map>
<key>llAdjustSoundVolume</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>The volume to set.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Adjusts the volume (0.0 - 1.0) of the currently playing attached sound.\nThis function has no effect on sounds started with llTriggerSound.</string>
</map>
<key>llAllowInventoryDrop</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Flag</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, If TRUE allows anyone to drop inventory on prim, FALSE revokes.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If Flag == TRUE, users without object modify permissions can still drop inventory items into the object.</string>
</map>
<key>llAngleBetween</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Rot1</key>
<map>
<key>type</key>
<string>rotation</string>
<key>tooltip</key>
<string>First rotation.</string>
</map>
</map>
<map>
<key>Rot2</key>
<map>
<key>type</key>
<string>rotation</string>
<key>tooltip</key>
<string>Second rotation.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the angle, in radians, between rotations Rot1 and Rot2.</string>
</map>
<key>llApplyImpulse</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Force</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Amount of impulse force to apply.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE, force is treated as a local directional vector instead of region directional vector.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Applies impulse to the object.\nIf Local == TRUE, apply the Force in local coordinates; otherwise, apply the Force in global coordinates.\nThis function only works on physical objects.</string>
</map>
<key>llApplyRotationalImpulse</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Force</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Amount of impulse force to apply.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE, uses local axis, if FALSE, uses region axis.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Applies rotational impulse to the object.\nIf Local == TRUE, apply the Force in local coordinates; otherwise, apply the Force in global coordinates.\nThis function only works on physical objects.</string>
</map>
<key>llAsin</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the arc-sine, in radians, of Value.</string>
</map>
<key>llAtan2</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>y</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the arc-tangent2 of y, x.</string>
</map>
<key>llAttachToAvatar</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>AttachmentPoint</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Attach to avatar at point AttachmentPoint.\nRequires the PERMISSION_ATTACH runtime permission.</string>
</map>
<key>llAttachToAvatarTemp</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AttachPoint</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Valid attachment point or ATTACH_* constant.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Follows the same convention as llAttachToAvatar, with the exception that the object will not create new inventory for the user, and will disappear on detach or disconnect.</string>
</map>
<key>llAvatarOnLinkSitTarget</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If an avatar is sitting on the link's sit target, return the avatar's key, NULL_KEY otherwise.\nReturns a key that is the UUID of the user seated on the specified link's prim.</string>
</map>
<key>llAvatarOnSitTarget</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>If an avatar is seated on the sit target, returns the avatar's key, otherwise NULL_KEY.\nThis only will detect avatars sitting on sit targets defined with llSitTarget.</string>
</map>
<key>llAxes2Rot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>Forward</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Forward/Back part of rotation.</string>
</map>
</map>
<map>
<key>Left</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Left/Right part of rotation.</string>
</map>
</map>
<map>
<key>Up</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Up/Down part of rotation.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation represented by coordinate axes Forward, Left, and Up.</string>
</map>
<key>llAxisAngle2Rot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>Axis</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Axis.</string>
</map>
</map>
<map>
<key>Angle</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Angle in radians.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation that is a generated Angle about Axis.</string>
</map>
<key>llBase64ToInteger</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns an integer that is the Text, Base64 decoded as a big endian integer.\nReturns zero if Text is longer then 8 characters. If Text contains fewer then 6 characters, the return value is unpredictable.</string>
</map>
<key>llBase64ToString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Converts a Base64 string to a conventional string.\nIf the conversion creates any unprintable characters, they are converted to question marks.</string>
</map>
<key>llBreakAllLinks</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>De-links all prims in the link set (requires permission PERMISSION_CHANGE_LINKS be set).</string>
</map>
<key>llBreakLink</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>De-links the prim with the given link number (requires permission PERMISSION_CHANGE_LINKS be set).</string>
</map>
<key>llCastRay</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>vector</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Options</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Casts a ray into the physics world from 'start' to 'end' and returns data according to details in Options.\nReports collision data for intersections with objects.\nReturn value: [UUID_1, {link_number_1}, hit_position_1, {hit_normal_1}, UUID_2, {link_number_2}, hit_position_2, {hit_normal_2}, ... , status_code] where {} indicates optional data.</string>
</map>
<key>llCeil</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns smallest integer value &gt;= Value.</string>
</map>
<key>llClearCameraParams</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Resets all camera parameters to default values and turns off scripted camera control.</string>
</map>
<key>llClearLinkMedia</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Link</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Clears (deletes) the media and all parameters from the given Face on the linked prim.\nReturns an integer that is a STATUS_* flag, which details the success/failure of the operation.</string>
</map>
<key>llClearPrimMedia</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Number of side to clear.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Clears (deletes) the media and all parameters from the given Face.\nReturns an integer that is a STATUS_* flag which details the success/failure of the operation.</string>
</map>
<key>llCloseRemoteDataChannel</key>
<map>
<key>sleep</key>
<real>1.0</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ChannelID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Closes the specified XML-RPC channel.</string>
</map>
<key>llCloud</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the cloud density at the object's position + Offset.</string>
</map>
<key>llCollisionFilter</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ObjectName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ObjectID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Accept</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>If TRUE, only accept collisions with ObjectName name AND ObjectID (either is optional), otherwise with objects not ObjectName AND ObjectID.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Specify an empty string or NULL_KEY for Accept, to not filter on the corresponding parameter.</string>
</map>
<key>llCollisionSound</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ImpactSound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ImpactVolume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Suppress default collision sounds, replace default impact sounds with ImpactSound.\nThe ImpactSound must be in the object inventory.\nSupply an empty string to suppress collision sounds.</string>
</map>
<key>llCollisionSprite</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ImpactSprite</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Suppress default collision sprites, replace default impact sprite with ImpactSprite; found in the object inventory (empty string to just suppress).</string>
</map>
<key>llCos</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Theta</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the cosine of Theta (Theta in radians).</string>
</map>
<key>llCreateLink</key>
<map>
<key>sleep</key>
<real>1.0</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>TargetPrim</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Object UUID that is in the same region.</string>
</map>
</map>
<map>
<key>Parent</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>If FALSE, then TargetPrim becomes the root. If TRUE, then the script's object becomes the root.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Attempt to link the object the script is in, to target (requires permission PERMISSION_CHANGE_LINKS be set).\nRequires permission PERMISSION_CHANGE_LINKS be set.</string>
</map>
<key>llCSV2List</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Create a list from a string of comma separated values specified in Text.</string>
</map>
<key>llDeleteSubList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Source</key>
<map>
<key>type</key>
<string>list</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes the slice from start to end and returns the remainder of the list.\nRemove a slice from the list and return the remainder, start and end are inclusive.\nUsing negative numbers for start and/or end causes the index to count backwards from the length of the list, so 0, -1 would delete the entire list.\nIf Start is larger than End the list deleted is the exclusion of the entries; so 6, 4 would delete the entire list except for the 5th. list entry.</string>
</map>
<key>llDeleteSubString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Source</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes the indicated sub-string and returns the result.\nStart and End are inclusive.\nUsing negative numbers for Start and/or End causes the index to count backwards from the length of the string, so 0, -1 would delete the entire string.\nIf Start is larger than End, the sub-string is the exclusion of the entries; so 6, 4 would delete the entire string except for the 5th. character.</string>
</map>
<key>llDetachFromAvatar</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Remove the object containing the script from the avatar.</string>
</map>
<key>llDetectedGrab</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the grab offset of a user touching the object.\nReturns &lt;0.0, 0.0, 0.0&gt; if Number is not a valid object.</string>
</map>
<key>llDetectedGroup</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns TRUE if detected object or agent Number has the same user group active as this object.\nIt will return FALSE if the object or agent is in the group, but the group is not active.</string>
</map>
<key>llDetectedKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the key of detected object or avatar number.\nReturns NULL_KEY if Number is not a valid index.</string>
</map>
<key>llDetectedLinkNumber</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the link position of the triggered event for touches and collisions only.\n0 for a non-linked object, 1 for the root of a linked object, 2 for the first child, etc.</string>
</map>
<key>llDetectedName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the name of detected object or avatar number.\nReturns the name of detected object number.\nReturns empty string if Number is not a valid index.</string>
</map>
<key>llDetectedOwner</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the key of detected object's owner.\nReturns invalid key if Number is not a valid index.</string>
</map>
<key>llDetectedPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the position of detected object or avatar number.\nReturns &lt;0.0, 0.0, 0.0&gt; if Number is not a valid index.</string>
</map>
<key>llDetectedRot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation of detected object or avatar number.\nReturns &lt;0.0, 0.0, 0.0, 1.0&gt; if Number is not a valid offset.</string>
</map>
<key>llDetectedTouchBinormal</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detection information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the surface bi-normal for a triggered touch event.\nReturns a vector that is the surface bi-normal (tangent to the surface) where the touch event was triggered.</string>
</map>
<key>llDetectedTouchFace</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detection information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the index of the face where the avatar clicked in a triggered touch event.</string>
</map>
<key>llDetectedTouchNormal</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detection information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the surface normal for a triggered touch event.\nReturns a vector that is the surface normal (perpendicular to the surface) where the touch event was triggered.</string>
</map>
<key>llDetectedTouchPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detected information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the position, in region coordinates, where the object was touched in a triggered touch event.\nUnless it is a HUD, in which case it returns the position relative to the attach point.</string>
</map>
<key>llDetectedTouchST</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detection information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a vector that is the surface coordinates where the prim was touched.\nThe X and Y vector positions contain the horizontal (S) and vertical (T) face coordinates respectively.\nEach component is in the interval [0.0, 1.0].\nTOUCH_INVALID_TEXCOORD is returned if the surface coordinates cannot be determined (e.g. when the viewer does not support this function).</string>
</map>
<key>llDetectedTouchUV</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index of detection information</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a vector that is the texture coordinates for where the prim was touched.\nThe X and Y vector positions contain the U and V face coordinates respectively.\nTOUCH_INVALID_TEXCOORD is returned if the touch UV coordinates cannot be determined (e.g. when the viewer does not support this function).</string>
</map>
<key>llDetectedType</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the type (AGENT, ACTIVE, PASSIVE, SCRIPTED) of detected object.\nReturns 0 if number is not a valid index.\nNote that number is a bit-field, so comparisons need to be a bitwise checked. e.g.:\ninteger iType = llDetectedType(0);\n{\n // ...do stuff with the agent\n}</string>
</map>
<key>llDetectedVel</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the velocity of the detected object Number.\nReturns&lt;0.0, 0.0, 0.0&gt; if Number is not a valid offset.</string>
</map>
<key>llDialog</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Buttons</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Shows a dialog box on the avatar's screen with the message.\n
Up to 12 strings in the list form buttons.\n
If a button is clicked, the name is chatted on Channel.\nOpens a "notify box" in the given avatars screen displaying the message.\n
Up to twelve buttons can be specified in a list of strings. When the user clicks a button, the name of the button is said on the specified channel.\n
Channels work just like llSay(), so channel 0 can be heard by everyone.\n
The chat originates at the object's position, not the avatar's position, even though it is said as the avatar (uses avatar's UUID and Name etc.).\n
Examples:\n
llDialog(who, "Are you a boy or a girl?", [ "Boy", "Girl" ], -4913);\n
llDialog(who, "This shows only an OK button.", [], -192);\n
llDialog(who, "This chats so you can 'hear' it.", ["Hooray"], 0);
</string>
</map>
<key>llDie</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Delete the object which holds the script.</string>
</map>
<key>llDumpList2String</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Source</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Separator</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the list as a single string, using Separator between the entries.\nWrite the list out as a single string, using Separator between values.</string>
</map>
<key>llEdgeOfWorld</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Direction</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Checks to see whether the border hit by Direction from Position is the edge of the world (has no neighboring region).\nReturns TRUE if the line along Direction from Position hits the edge of the world in the current simulator, returns FALSE if that edge crosses into another simulator.</string>
</map>
<key>llEjectFromLand</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Ejects AvatarID from land that you own.\nEjects AvatarID from land that the object owner (group or resident) owns.</string>
</map>
<key>llEmail</key>
<map>
<key>sleep</key>
<real>20.0</real>
<key>arguments</key>
<array>
<map>
<key>Address</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Subject</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sends email to Address with Subject and Message.\nSends an email to Address with Subject and Message.</string>
</map>
<key>llEscapeURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Returns an escaped/encoded version of url, replacing spaces with %20 etc.\nReturns the string that is the URL-escaped version of URL (replacing spaces with %20, etc.).\n
This function returns the UTF-8 encoded escape codes for selected characters.
</string>
</map>
<key>llEuler2Rot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>Vector</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation representation of the Euler angles.\nReturns the rotation represented by the Euler Angle.</string>
</map>
<key>llFabs</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the positive version of Value.\nReturns the absolute value of Value.</string>
</map>
<key>llFloor</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns largest integer value &lt;= Value.</string>
</map>
<key>llForceMouselook</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Enable</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE when an avatar sits on the prim, the avatar will be forced into mouse-look mode.\nFALSE is the default setting and will undo a previously set TRUE or do nothing.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If Enable is TRUE any avatar that sits on this object is forced into mouse-look mode.\nAfter calling this function with Enable set to TRUE, any agent sitting down on the prim will be forced into mouse-look.\nJust like llSitTarget, this changes a permanent property of the prim (not the object) and needs to be reset by calling this function with Enable set to FALSE in order to disable it.</string>
</map>
<key>llFrand</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Magnitude</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a pseudo random number in the range [0, Magnitude] or [Magnitude, 0].\nReturns a pseudo-random number between [0, Magnitude].</string>
</map>
<key>llGenerateKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Generates a key (SHA-1 hash) using UUID generation to create a unique key.\nAs the UUID produced is versioned, it should never return a value of NULL_KEY.\nThe specific UUID version is an implementation detail that has changed in the past and may change again in the future. Do not depend upon the UUID that is returned to be version 5 SHA-1 hash.</string>
</map>
<key>llGetAccel</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the acceleration of the object relative to the region's axes.\nGets the acceleration of the object.</string>
</map>
<key>llGetAgentInfo</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Returns an integer bit-field containing the agent information about id.\n
Returns AGENT_FLYING, AGENT_ATTACHMENTS, AGENT_SCRIPTED, AGENT_SITTING, AGENT_ON_OBJECT, AGENT_MOUSELOOK, AGENT_AWAY, AGENT_BUSY, AGENT_TYPING, AGENT_CROUCHING, AGENT_ALWAYS_RUN, AGENT_WALKING and/or AGENT_IN_AIR.\nReturns information about the given agent ID as a bit-field of agent info constants.
</string>
</map>
<key>llGetAgentLanguage</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the language code of the preferred interface language of the avatar.\nReturns a string that is the language code of the preferred interface language of the resident.</string>
</map>
<key>llGetAgentList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Scope</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>The scope (region, parcel, parcel same owner) to return agents for.</string>
</map>
</map>
<map>
<key>Options</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List of options to apply. Current unused.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests a list of agents currently in the region, limited by the scope parameter.\nReturns a list [key UUID-0, key UUID-1, ..., key UUID-n] or [string error_msg] - returns avatar keys for all agents in the region limited to the area(s) specified by scope</string>
</map>
<key>llGetAgentSize</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If the avatar is in the same region, returns the size of the bounding box of the requested avatar by id, otherwise returns ZERO_VECTOR.\nIf the agent is in the same region as the object, returns the size of the avatar.</string>
</map>
<key>llGetAlpha</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the alpha value of Face.\nReturns the 'alpha' of the given face. If face is ALL_SIDES the value returned is the mean average of all faces.</string>
</map>
<key>llGetAndResetTime</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the script time in seconds and then resets the script timer to zero.\nGets the time in seconds since starting and resets the time to zero.</string>
</map>
<key>llGetAnimation</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the name of the currently playing locomotion animation for the avatar id.\nReturns the currently playing animation for the specified avatar ID.</string>
</map>
<key>llGetAnimationList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list of keys of playing animations for an avatar.\nReturns a list of keys of all playing animations for the specified avatar ID.</string>
</map>
<key>llGetAnimationOverride</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>AnimationState</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string that is the name of the animation that is used for the specified animation state\nTo use this function the script must obtain either the PERMISSION_OVERRIDE_ANIMATIONS or PERMISSION_TRIGGER_ANIMATION permission (automatically granted to attached objects).</string>
</map>
<key>llGetAttached</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the object's attachment point, or 0 if not attached.</string>
</map>
<key>llGetAttachedList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Avatar to get attachments</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list of keys of all visible (not HUD) attachments on the avatar identified by the ID argument</string>
</map>
<key>llGetBoundingBox</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the bounding box around the object (including any linked prims) relative to its root prim, as a list in the format [ (vector) min_corner, (vector) max_corner ].</string>
</map>
<key>llGetCameraPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current camera position for the agent the task has permissions for.\nReturns the position of the camera, of the user that granted the script PERMISSION_TRACK_CAMERA. If no user has granted the permission, it returns ZERO_VECTOR.</string>
</map>
<key>llGetCameraRot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current camera orientation for the agent the task has permissions for. If no user has granted the PERMISSION_TRACK_CAMERA permission, returns ZERO_ROTATION.</string>
</map>
<key>llGetCenterOfMass</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the prim's centre of mass (unless called from the root prim, where it returns the object's centre of mass).</string>
</map>
<key>llGetColor</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the color on Face.\nReturns the color of Face as a vector of red, green, and blue values between 0 and 1. If face is ALL_SIDES the color returned is the mean average of each channel.</string>
</map>
<key>llGetCreator</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a key for the creator of the prim.\nReturns the key of the object's original creator. Similar to llGetOwner.</string>
</map>
<key>llGetDate</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current date in the UTC time zone in the format YYYY-MM-DD.\nReturns the current UTC date as YYYY-MM-DD.</string>
</map>
<key>llGetDisplayName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Avatar UUID that is in the same region, or is otherwise known to the region.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the display name of an avatar, if the avatar is connected to the current region, or if the name has been cached. Otherwise, returns an empty string. Use llRequestDisplayName if the avatar may be absent from the region.</string>
</map>
<key>llGetEnergy</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns how much energy is in the object as a percentage of maximum.</string>
</map>
<key>llGetEnv</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>DataRequest</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>The type of data to request. Any other string will cause an empty string to be returned.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string with the requested data about the region.</string>
</map>
<key>llGetForce</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the force (if the script is physical).\nReturns the current force if the script is physical.</string>
</map>
<key>llGetFreeMemory</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of free bytes of memory the script can use.\nReturns the available free space for the current script. This is inaccurate with LSO.</string>
</map>
<key>llGetFreeURLs</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of available URLs for the current script.\nReturns an integer that is the number of available URLs.</string>
</map>
<key>llGetGeometricCenter</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the vector that is the geometric center of the object relative to the root prim.</string>
</map>
<key>llGetGMTclock</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the time in seconds since midnight GMT.\nGets the time in seconds since midnight in GMT/UTC.</string>
</map>
<key>llGetHTTPHeader</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>HTTPRequestID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>A valid HTTP request key</string>
</map>
</map>
<map>
<key>Header</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Header value name</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the value for header for request_id.\nReturns a string that is the value of the Header for HTTPRequestID.</string>
</map>
<key>llGetInventoryCreator</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a key for the creator of the inventory item.\nThis function returns the UUID of the creator of item. If item is not found in inventory, the object says "No item named 'name'".</string>
</map>
<key>llGetInventoryKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the key that is the UUID of the inventory named.\nReturns the key of the inventory named.</string>
</map>
<key>llGetInventoryName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>InventoryType</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Inventory item type</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Index number of inventory item.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the name of the inventory item of a given type, specified by index number.\nUse the inventory constants INVENTORY_* to specify the type.</string>
</map>
<key>llGetInventoryNumber</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>InventoryType</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Inventory item type</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the quantity of items of a given type (INVENTORY_* flag) in the prim's inventory.\nUse the inventory constants INVENTORY_* to specify the type.</string>
</map>
<key>llGetInventoryPermMask</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Inventory item name.</string>
</map>
</map>
<map>
<key>BitMask</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>MASK_BASE, MASK_OWNER, MASK_GROUP, MASK_EVERYONE or MASK_NEXT</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the requested permission mask for the inventory item.\nReturns the requested permission mask for the inventory item defined by InventoryItem. If item is not in the object's inventory, llGetInventoryPermMask returns FALSE and causes the object to say "No item named '&lt;item&gt;'", where "&lt;item&gt;" is item.</string>
</map>
<key>llGetInventoryType</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the type of the named inventory item.\nLike all inventory functions, llGetInventoryType is case-sensitive.</string>
</map>
<key>llGetKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the key of the prim the script is attached to.\nGet the key for the object which has this script.</string>
</map>
<key>llGetLandOwnerAt</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the key of the land owner, returns NULL_KEY if public.\nReturns the key of the land owner at Position, or NULL_KEY if public.</string>
</map>
<key>llGetLinkKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the key of the linked prim LinkNumber.\nReturns the key of LinkNumber in the link set.</string>
</map>
<key>llGetLinkMedia</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>The prim's side number</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>A list of PRIM_* property constants to return values of.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Get the media parameters for a particular face on linked prim, given the desired list of parameter names. Returns a list of values in the order requested. Returns an empty list if no media exists on the face.</string>
</map>
<key>llGetLinkName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the name of LinkNumber in a link set.\nReturns the name of LinkNumber the link set.</string>
</map>
<key>llGetLinkNumber</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the link number of the prim containing the script (0 means not linked, 1 the prim is the root, 2 the prim is the first child, etc.).\nReturns the link number of the prim containing the script. 0 means no link, 1 the root, 2 for first child, etc.</string>
</map>
<key>llGetLinkNumberOfSides</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the number of sides of the specified linked prim.\nReturns an integer that is the number of faces (or sides) of the prim link.</string>
</map>
<key>llGetLinkPrimitiveParams</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag.</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>PRIM_* flags.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the list of primitive attributes requested in the Parameters list for LinkNumber.\nPRIM_* flags can be broken into three categories, face flags, prim flags, and object flags.\n* Supplying a prim or object flag will return that flags attributes.\n* Face flags require the user to also supply a face index parameter.</string>
</map>
<key>llGetListEntryType</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the type of the index entry in the list (TYPE_INTEGER, TYPE_FLOAT, TYPE_STRING, TYPE_KEY, TYPE_VECTOR, TYPE_ROTATION, or TYPE_INVALID if index is off list).\nReturns the type of the variable at Index in ListVariable.</string>
</map>
<key>llGetListLength</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the number of elements in the list.\nReturns the number of elements in ListVariable.</string>
</map>
<key>llGetLocalPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the position relative to the root.\nReturns the local position of a child object relative to the root.</string>
</map>
<key>llGetLocalRot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the rotation local to the root.\nReturns the local rotation of a child object relative to the root.</string>
</map>
<key>llGetMass</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the mass of object that the script is attached to.\nReturns the scripted object's mass. When called from a script in a link-set, the parent will return the sum of the link-set weights, while a child will return just its own mass. When called from a script inside an attachment, this function will return the mass of the avatar it's attached to, not its own.</string>
</map>
<key>llGetMassMKS</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Acts as llGetMass(), except that the units of the value returned are Kg.</string>
</map>
<key>llGetMaxScaleFactor</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a float that is the largest scaling factor that can be used with llScaleByFactor to resize the object. This maximum is determined by the Linkability Rules and prim scale limits.</string>
</map>
<key>llGetMemoryLimit</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Get the maximum memory a script can use, in bytes.</string>
</map>
<key>llGetMinScaleFactor</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a float that is the smallest scaling factor that can be used with llScaleByFactor to resize the object. This minimum is determined by the prim scale limits.</string>
</map>
<key>llGetNextEmail</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Address</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Subject</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Fetch the next queued email with that matches the given address and/or subject, via the email event.\nIf the parameters are blank, they are not used for filtering.</string>
</map>
<key>llGetNotecardLine</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>NotecardName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>LineNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns LineNumber from NotecardName via the dataserver event. The line index starts at zero.\nIf the requested line is passed the end of the note-card the dataserver event will return the constant EOF string.\nThe key returned by this function is a unique identifier which will be supplied to the dataserver event in the requested parameter.</string>
</map>
<key>llGetNumberOfNotecardLines</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>NotecardName</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the number of lines contained within a notecard via the dataserver event.\nThe key returned by this function is a query ID for identifying the dataserver reply.</string>
</map>
<key>llGetNumberOfPrims</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of prims in a link set the script is attached to.\nReturns the number of prims in (and avatars seated on) the object the script is in.</string>
</map>
<key>llGetNumberOfSides</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of faces (or sides) of the prim.\nReturns the number of sides of the prim which has the script.</string>
</map>
<key>llGetObjectDesc</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the description of the prim the script is attached to.\nReturns the description of the scripted object/prim. You can set the description using llSetObjectDesc.</string>
</map>
<key>llGetObjectDetails</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Prim or avatar UUID that is in the same region.</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List of OBJECT_* flags.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list of object details specified in the Parameters list for the object or avatar in the region with key ID.\nParameters are specified by the OBJECT_* constants.</string>
</map>
<key>llGetObjectMass</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the mass of the avatar or object in the region.\nGets the mass of the object or avatar corresponding to ID.</string>
</map>
<key>llGetObjectName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the name of the prim which the script is attached to.\nReturns the name of the prim (not object) which contains the script.</string>
</map>
<key>llGetObjectPermMask</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Category</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Category is one of MASK_BASE, MASK_OWNER, MASK_GROUP, MASK_EVERYONE, or MASK_NEXT</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the permission mask of the requested category for the object.</string>
</map>
<key>llGetObjectPrimCount</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ObjectID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the total number of prims for an object in the region.\nReturns the prim count for any object id in the same region.</string>
</map>
<key>llGetOmega</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the rotation velocity in radians per second.\nReturns a vector that is the rotation velocity of the object in radians per second.</string>
</map>
<key>llGetOwner</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the object owner's UUID.\nReturns the key for the owner of the object.</string>
</map>
<key>llGetOwnerKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>ObjectID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the owner of ObjectID.\nReturns the key for the owner of object ObjectID.</string>
</map>
<key>llGetParcelDetails</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Location within the region.</string>
</map>
</map>
<map>
<key>ParcelDetails</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List of details requested for the specified parcel location.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list of parcel details specified in the ParcelDetails list for the parcel at Position.\nParameters is one or more of: PARCEL_DETAILS_NAME, _DESC, _OWNER, _GROUP, _AREA, _ID, _SEE_AVATARS.\nReturns a list that is the parcel details specified in ParcelDetails (in the same order) for the parcel at Position.</string>
</map>
<key>llGetParcelFlags</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a mask of the parcel flags (PARCEL_FLAG_*) for the parcel that includes the point Position.\nReturns a bit-field specifying the parcel flags (PARCEL_FLAG_*) for the parcel at Position.</string>
</map>
<key>llGetParcelMaxPrims</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Region coordinates (z is ignored) of parcel.</string>
</map>
</map>
<map>
<key>SimWide</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean. If FALSE then the return is the maximum prims supported by the parcel. If TRUE then it is the combined number of prims on all parcels in the region owned by the specified parcel's owner.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the maximum number of prims allowed on the parcel at Position for a given scope.\nThe scope may be set to an individual parcel or the combined resources of all parcels with the same ownership in the region.</string>
</map>
<key>llGetParcelMusicURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Gets the streaming audio URL for the parcel object is on.\nThe object owner, avatar or group, must also be the land owner.</string>
</map>
<key>llGetParcelPrimCount</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Region coordinates of parcel to query.</string>
</map>
</map>
<map>
<key>Category</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>A PARCEL_COUNT_* flag.</string>
</map>
</map>
<map>
<key>SimWide</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean. If FALSE then the return is the maximum prims supported by the parcel. If TRUE then it is the combined number of prims on all parcels in the region owned by the specified parcel's owner.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the number of prims on the parcel at Position of the given category.\nCategories: PARCEL_COUNT_TOTAL, _OWNER, _GROUP, _OTHER, _SELECTED, _TEMP.\nReturns the number of prims used on the parcel at Position which are in Category.\nIf SimWide is TRUE, it returns the total number of objects for all parcels with matching ownership in the category specified.\nIf SimWide is FALSE, it returns the number of objects on this specific parcel in the category specified</string>
</map>
<key>llGetParcelPrimOwners</key>
<map>
<key>sleep</key>
<real>2.0</real>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list of up to 100 residents who own objects on the parcel at Position, with per-owner land impact totals.\nRequires owner-like permissions for the parcel, and for the script owner to be present in the region.\nThe list is formatted as [ key agentKey1, integer agentLI1, key agentKey2, integer agentLI2, ... ], sorted by agent key.\nThe integers are the combined land impacts of the objects owned by the corresponding agents.</string>
</map>
<key>llGetPermissions</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns an integer bitmask of the permissions that have been granted to the script. Individual permissions can be determined using a bit-wise "and" operation against the PERMISSION_* constants</string>
</map>
<key>llGetPermissionsKey</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the key of the avatar that last granted or declined permissions to the script.\nReturns NULL_KEY if permissions were never granted or declined.</string>
</map>
<key>llGetPhysicsMaterial</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a list of the form [float gravity_multiplier, float restitution, float friction, float density].</string>
</map>
<key>llGetPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the position of the task in region coordinates.\nReturns the vector position of the task in region coordinates.</string>
</map>
<key>llGetPrimitiveParams</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>PRIM_* flags and face parameters</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the primitive parameters specified in the parameters list.\nReturns primitive parameters specified in the Parameters list.</string>
</map>
<key>llGetPrimMediaParams</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>face number</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>One or more PRIM_MEDIA_* flags</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the media parameters for a particular face on an object, given the desired list of parameter names, in the order requested. Returns an empty list if no media exists on the face.</string>
</map>
<key>llGetRegionAgentCount</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of avatars in the region.\nReturns an integer that is the number of avatars in the region.</string>
</map>
<key>llGetRegionCorner</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a vector, in meters, that is the global location of the south-west corner of the region which the object is in.\nReturns the Region-Corner of the simulator containing the task. The region-corner is a vector (values in meters) representing distance from the first region.</string>
</map>
<key>llGetRegionFlags</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the region flags (REGION_FLAG_*) for the region the object is in.\nReturns a bit-field specifying the region flags (REGION_FLAG_*) for the region the object is in.</string>
</map>
<key>llGetRegionFPS</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the mean region frames per second.</string>
</map>
<key>llGetRegionName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current region name.</string>
</map>
<key>llGetRegionTimeDilation</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current time dilation as a float between 0.0 (full dilation) and 1.0 (no dilation).\nReturns the current time dilation as a float between 0.0 and 1.0.</string>
</map>
<key>llGetRootPosition</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the position (in region coordinates) of the root prim of the object which the script is attached to.\nThis is used to allow a child prim to determine where the root is.</string>
</map>
<key>llGetRootRotation</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the rotation (relative to the region) of the root prim of the object which the script is attached to.\nGets the global rotation of the root object of the object script is attached to.</string>
</map>
<key>llGetRot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the rotation relative to the region's axes.\nReturns the rotation.</string>
</map>
<key>llGetScale</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the scale of the prim.\nReturns a vector that is the scale (dimensions) of the prim.</string>
</map>
<key>llGetScriptName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the name of the script that this function is used in.\nReturns the name of this script.</string>
</map>
<key>llGetScriptState</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ScriptName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns TRUE if the script named is running.\nReturns TRUE if ScriptName is running.</string>
</map>
<key>llGetSimStats</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>StatType</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Statistic type. Currently only SIM_STAT_PCT_CHARS_STEPPED is supported.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a float that is the requested statistic.</string>
</map>
<key>llGetSimulatorHostname</key>
<map>
<key>sleep</key>
<real>10.0</real>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the host-name of the machine which the script is running on.\nFor example, "sim225.agni.lindenlab.com".</string>
</map>
<key>llGetSPMaxMemory</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the maximum used memory for the current script. Only valid after using PROFILE_SCRIPT_MEMORY. Non-mono scripts always use 16k.\nReturns the integer of the most bytes used while llScriptProfiler was last active.</string>
</map>
<key>llGetStartParameter</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns an integer that is the script rez parameter.\nIf the object was rezzed by an agent, this function returns 0.</string>
</map>
<key>llGetStatus</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>StatusFlag</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>A STATUS_* flag</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns boolean value of the specified status (e.g. STATUS_PHANTOM) of the object the script is attached to.</string>
</map>
<key>llGetSubString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>String</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a sub-string from String, in a range specified by the Start and End indicies (inclusive).\nUsing negative numbers for Start and/or End causes the index to count backwards from the length of the string, so 0, -1 would capture the entire string.\nIf Start is greater than End, the sub string is the exclusion of the entries.</string>
</map>
<key>llGetSunDirection</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a normalized vector of the direction of the sun in the region.\nReturns the sun's direction on the simulator.</string>
</map>
<key>llGetTexture</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string that is the texture on face (the inventory name if it is a texture in the prim's inventory, otherwise the key).\nReturns the texture of a face, if it is found in object inventory, its key otherwise.</string>
</map>
<key>llGetTextureOffset</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the texture offset of face in the x and y components of a vector.</string>
</map>
<key>llGetTextureRot</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the texture rotation of side.</string>
</map>
<key>llGetTextureScale</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the texture scale of side in the x and y components of a vector.\nReturns the texture scale of a side in the x and y components of a vector.</string>
</map>
<key>llGetTime</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the time in seconds since the last region reset, script reset, or call to either llResetTime or llGetAndResetTime.</string>
</map>
<key>llGetTimeOfDay</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the time in seconds since Second Life midnight or since region up-time, whichever is smaller.\nThe Second Life day cycle is 4 hours.</string>
</map>
<key>llGetTimestamp</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns a time-stamp (UTC time zone) in the format: YYYY-MM-DDThh:mm:ss.ff..fZ.</string>
</map>
<key>llGetTorque</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the torque (if the script is physical).\nReturns a vector that is the torque (if the script is physical).</string>
</map>
<key>llGetUnixTime</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the number of seconds elapsed since 00:00 hours, Jan 1, 1970 UTC from the system clock.</string>
</map>
<key>llGetUsedMemory</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the current used memory for the current script. Non-mono scripts always use 16K.\nReturns the integer of the number of bytes of memory currently in use by the script. Non-mono scripts always use 16K.</string>
</map>
<key>llGetUsername</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the username of an avatar, if the avatar is connected to the current region, or if the name has been cached. Otherwise, returns an empty string. Use llRequestUsername if the avatar may be absent from the region.</string>
</map>
<key>llGetVel</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the velocity of the object.\nReturns a vector that is the velocity of the object.</string>
</map>
<key>llGetWallclock</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the time in seconds since midnight California Pacific time (PST/PDT).\nReturns the time in seconds since simulator's time-zone midnight (Pacific Time).</string>
</map>
<key>llGiveInventory</key>
<map>
<key>arguments</key>
<array>
<map>
<key>TargetID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Give InventoryItem to destination represented by TargetID, as permitted by the permissions system.\nTargetID may be any agent or an object in the same region.</string>
</map>
<key>llGiveInventoryList</key>
<map>
<key>sleep</key>
<real>3.0</real>
<key>arguments</key>
<array>
<map>
<key>TargetID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>FolderName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>InventoryItems</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Give InventoryItems to destination (represented by TargetID) as a new folder of items, as permitted by the permissions system.\nTargetID may be any agent or an object in the same region. If TargetID is an object, the items are passed directly to the object inventory (no folder is created).</string>
</map>
<key>llGiveMoney</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Amount</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Transfers Amount of L$ from script owner to AvatarID.\nThis call will silently fail if PERMISSION_DEBIT has not been granted.</string>
</map>
<key>llGodLikeRezObject</key>
<map>
<key>god-mode</key>
<boolean>true</boolean>
<key>arguments</key>
<array>
<map>
<key>InventoryItemID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Rez directly off of a UUID if owner has god-bit set.</string>
</map>
<key>llGround</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the ground height at the object position + offset.\nReturns the ground height at the object's position + Offset.</string>
</map>
<key>llGroundContour</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the ground contour direction below the object position + Offset.\nReturns the ground contour at the object's position + Offset.</string>
</map>
<key>llGroundNormal</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the ground normal below the object position + offset.\nReturns the ground contour at the object's position + Offset.</string>
</map>
<key>llGroundRepel</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Height</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Distance above the ground.</string>
</map>
</map>
<map>
<key>Water</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE then hover above water too.</string>
</map>
</map>
<map>
<key>Tau</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Seconds to critically damp in.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>
Critically damps to height if within height * 0.5 of level (either above ground level or above the higher of land and water if water == TRUE).\nCritically damps to fHeight if within fHeight * 0.5 of ground or water level.\n
The height is above ground level if iWater is FALSE or above the higher of land and water if iWater is TRUE.\n
Do not use with vehicles. Only works in physics-enabled objects.
</string>
</map>
<key>llGroundSlope</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the ground slope below the object position + Offset.\nReturns the ground slope at the object position + Offset.</string>
</map>
<key>llHTTPRequest</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>A valid HTTP/HTTPS URL.</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>Configuration parameters, specified as HTTP_* flag-value pairs.</string>
</map>
</map>
<map>
<key>Body</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Contents of the request.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sends an HTTP request to the specified URL with the Body of the request and Parameters.\nReturns a key that is a handle identifying the HTTP request made.</string>
</map>
<key>llHTTPResponse</key>
<map>
<key>arguments</key>
<array>
<map>
<key>HTTPRequestID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>A valid HTTP request key.</string>
</map>
</map>
<map>
<key>Status</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>HTTP Status (200, 400, 404, etc.).</string>
</map>
</map>
<map>
<key>Body</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Contents of the response.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Responds to an incoming HTTP request which was triggerd by an http_request event within the script. HTTPRequestID specifies the request to respond to (this ID is supplied in the http_request event handler). Status and Body specify the status code and message to respond with.</string>
</map>
<key>llInsertString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>TargetVariable</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>SourceVariable</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Inserts SourceVariable into TargetVariable at Position, and returns the result.\nInserts SourceVariable into TargetVariable at Position and returns the result. Note this does not alter TargetVariable.</string>
</map>
<key>llInstantMessage</key>
<map>
<key>sleep</key>
<real>2.0</real>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>IMs Text to the user identified.\nSend Text to the user as an instant message.</string>
</map>
<key>llIntegerToBase64</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string that is a Base64 big endian encode of Value.\nEncodes the Value as an 8-character Base64 string.</string>
</map>
<key>llJson2List</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Converts the top level of the JSON string to a list.</string>
</map>
<key>llJsonGetValue</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Specifiers</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Gets the value indicated by Specifiers from the JSON string.</string>
</map>
<key>llJsonSetValue</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Specifiers</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a new JSON string that is the JSON given with the Value indicated by Specifiers set to Value.</string>
</map>
<key>llJsonValueType</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Specifiers</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the type constant (JSON_*) for the value in JSON indicated by Specifiers.</string>
</map>
<key>llKey2Name</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Avatar or rezzed prim UUID.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the name of the prim or avatar specified by ID. The ID must be a valid rezzed prim or avatar key in the current simulator, otherwise an empty string is returned.\nFor avatars, the returned name is the legacy name</string>
</map>
<key>llLinkParticleSystem</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag</string>
</map>
</map>
<map>
<key>Rules</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>Particle system rules list in the format [ rule1, data1, rule2, data2 . . . ruleN, dataN ]</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Creates a particle system in prim LinkNumber based on Rules. An empty list removes a particle system from object.\nList format is [ rule-1, data-1, rule-2, data-2 ... rule-n, data-n ].\nThis is identical to llParticleSystem except that it applies to a specified linked prim and not just the prim the script is in.</string>
</map>
<key>llLinkSitTarget</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag of the prim.</string>
</map>
</map>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Position for the sit target, relative to the prim's position.</string>
</map>
</map>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
<key>tooltip</key>
<string>Rotation (relative to the prim's rotation) for the avatar.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the sit location for the linked prim(s). If Offset == &lt;0,0,0&gt; clear it.\nSet the sit location for the linked prim(s). The sit location is relative to the prim's position and rotation.</string>
</map>
<key>llList2CSV</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Creates a string of comma separated values from the list.\nCreate a string of comma separated values from the specified list.</string>
</map>
<key>llList2Float</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the float at Index in the list.\nReturns the value at Index in the specified list. If Index describes a location not in the list, or the value cannot be type-cast to a float, then zero is returned.</string>
</map>
<key>llList2Integer</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the integer at Index in the list.\nReturns the value at Index in the specified list. If Index describes a location not in the list, or the value cannot be type-cast to an integer, then zero is returned.</string>
</map>
<key>llList2Json</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>JsonType</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Type is JSON_ARRAY or JSON_OBJECT.</string>
</map>
</map>
<map>
<key>Values</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List of values to convert.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Converts either a strided list of key:value pairs to a JSON_OBJECT, or a list of values to a JSON_ARRAY.</string>
</map>
<key>llList2Key</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the key at Index in the list.\nReturns the value at Index in the specified list. If Index describes a location not in the list, or the value cannot be type-cast to a key, then null string is returned.</string>
</map>
<key>llList2List</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a subset of entries from ListVariable, in a range specified by the Start and End indicies (inclusive).\nUsing negative numbers for Start and/or End causes the index to count backwards from the length of the string, so 0, -1 would capture the entire string.\nIf Start is greater than End, the sub string is the exclusion of the entries.</string>
</map>
<key>llList2ListStrided</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Stride</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the strided slice of the list from Start to End.\nReturns a copy of the strided slice of the specified list from Start to End.</string>
</map>
<key>llList2Rot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the rotation at Index in the list.\nReturns the value at Index in the specified list. If Index describes a location not in the list, or the value cannot be type-cast to rotation, thenZERO_ROTATION is returned.</string>
</map>
<key>llList2String</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the string at Index in the list.\nReturns the value at Index in the specified list as a string. If Index describes a location not in the list then null string is returned.</string>
</map>
<key>llList2Vector</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Copies the vector at Index in the list.\nReturns the value at Index in the specified list. If Index describes a location not in the list, or the value cannot be type-cast to a vector, then ZERO_VECTOR is returned.</string>
</map>
<key>llListen</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>SpeakersName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>SpeakersID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Creates a listen callback for Text on Channel from SpeakersName and SpeakersID (SpeakersName, SpeakersID, and/or Text can be empty) and returns an identifier that can be used to deactivate or remove the listen.\nNon-empty values for SpeakersName, SpeakersID, and Text will filter the results accordingly, while empty strings and NULL_KEY will not filter the results, for string and key parameters respectively.\nPUBLIC_CHANNEL is the public chat channel that all avatars see as chat text. DEBUG_CHANNEL is the script debug channel, and is also visible to nearby avatars. All other channels are are not sent to avatars, but may be used to communicate with scripts.</string>
</map>
<key>llListenControl</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ChannelHandle</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Active</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Makes a listen event callback active or inactive. Pass in the value returned from llListen to the iChannelHandle parameter to specify which listener you are controlling.\nUse boolean values to specify Active</string>
</map>
<key>llListenRemove</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ChannelHandle</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes a listen event callback. Pass in the value returned from llListen to the iChannelHandle parameter to specify which listener to remove.</string>
</map>
<key>llListFindList</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Find</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the index of the first instance of Find in ListVariable. Returns -1 if not found.\nReturns the position of the first instance of the Find list in the ListVariable. Returns -1 if not found.</string>
</map>
<key>llListInsertList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Target</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list that contains all the elements from Target but with the elements from ListVariable inserted at Position start.\nReturns a new list, created by inserting ListVariable into the Target list at Position. Note this does not alter the Target.</string>
</map>
<key>llListRandomize</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Stride</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a version of the input ListVariable which has been randomized by blocks of size Stride.\nIf the remainder from the length of the list, divided by the stride is non-zero, this function does not randomize the list.</string>
</map>
<key>llListReplaceList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Target</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>End</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a list that is Target with Start through End removed and ListVariable inserted at Start.\nReturns a list replacing the slice of the Target list from Start to End with the specified ListVariable. Start and End are inclusive, so 0, 1 would replace the first two entries and 0, 0 would replace only the first list entry.</string>
</map>
<key>llListSort</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List to sort.</string>
</map>
</map>
<map>
<key>Stride</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Stride length.</string>
</map>
</map>
<map>
<key>Ascending</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean. TRUE = result in ascending order, FALSE = result in descending order.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the specified list, sorted into blocks of stride in ascending order (if Ascending is TRUE, otherwise descending). Note that sort only works if the first entry of each block is the same datatype.</string>
</map>
<key>llListStatistics</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Operation</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>One of LIST_STAT_* values</string>
</map>
</map>
<map>
<key>ListVariable</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>Variable to analyze.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Performs a statistical aggregate function, specified by a LIST_STAT_* constant, on ListVariables.\nThis function allows a script to perform a statistical operation as defined by operation on a list composed of integers and floats.</string>
</map>
<key>llLoadURL</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Shows dialog to avatar AvatarID offering to load web page at URL. If user clicks yes, launches their web browser.\nllLoadURL displays a dialogue box to the user, offering to load the specified web page using the default web browser.</string>
</map>
<key>llLog</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the natural logarithm of Value. Returns zero if Value &lt;= 0.\nReturns the base e (natural) logarithm of the specified Value.</string>
</map>
<key>llLog10</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the base 10 logarithm of Value. Returns zero if Value &lt;= 0.\nReturns the base 10 (common) logarithm of the specified Value.</string>
</map>
<key>llLookAt</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Target</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Strength</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Damping</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Cause object name to point its forward axis towards Target, at a force controlled by Strength and Damping.\nGood Strength values are around half the mass of the object and good Damping values are less than 1/10th of the Strength.\nAsymmetrical shapes require smaller Damping. A Strength of 0.0 cancels the look at.</string>
</map>
<key>llLoopSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays specified Sound, looping indefinitely, at Volume (0.0 - 1.0).\nOnly one sound may be attached to an object at a time.\nA second call to llLoopSound with the same key will not restart the sound, but the new volume will be used. This allows control over the volume of already playing sounds.\nSetting the volume to 0 is not the same as calling llStopSound; a sound with 0 volume will continue to loop.\nTo restart the sound from the beginning, call llStopSound before calling llLoopSound again.</string>
</map>
<key>llLoopSoundMaster</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays attached Sound, looping at volume (0.0 - 1.0), and declares it a sync master.\nBehaviour is identical to llLoopSound, with the addition of marking the source as a "Sync Master", causing "Slave" sounds to sync to it. If there are multiple masters within a viewers interest area, the most audible one (a function of both distance and volume) will win out as the master.\nThe use of multiple masters within a small area is unlikely to produce the desired effect.</string>
</map>
<key>llLoopSoundSlave</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays attached sound looping at volume (0.0 - 1.0), synced to most audible sync master.\nBehaviour is identical to llLoopSound, unless there is a "Sync Master" present.\nIf a Sync Master is already playing the Slave sound will begin playing from the same point the master is in its loop synchronizing the loop points of both sounds.\nIf a Sync Master is started when the Slave is already playing, the Slave will skip to the correct position to sync with the Master.</string>
</map>
<key>llManageEstateAccess</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Action</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>One of the ESTATE_ACCESS_ALLOWED_* actions.</string>
</map>
</map>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>UUID of the avatar or group to act upon.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Adds or removes agents from the estate's agent access or ban lists, or groups to the estate's group access list. Action is one of the ESTATE_ACCESS_ALLOWED_* operations to perform.\nReturns an integer representing a boolean, TRUE if the call was successful; FALSE if throttled, invalid action, invalid or null id or object owner is not allowed to manage the estate.\nThe object owner is notified of any changes, unless PERMISSION_SILENT_ESTATE_MANAGEMENT has been granted to the script.</string>
</map>
<key>llMapDestination</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>arguments</key>
<array>
<map>
<key>RegionName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Direction</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Opens world map for avatar who touched is is wearing the script, centred on RegionName with Position highlighted. Only works for scripts attached to avatar, or during touch events.\nDirection currently has no effect.</string>
</map>
<key>llMD5String</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Nonce</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string of 32 hex characters that is an RSA Data Security Inc., MD5 Message-Digest Algorithm of Text with Nonce used as the salt.\nReturns a 32-character hex string. (128-bit in binary.)</string>
</map>
<key>llMessageLinked</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sends Number, Text, and ID to members of the link set identified by LinkNumber.\nLinkNumber is either a linked number (available through llGetLinkNumber) or a LINK_* constant.</string>
</map>
<key>llMinEventDelay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Delay</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the minimum time between events being handled.</string>
</map>
<key>llModifyLand</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Action</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>LAND_LEVEL, LAND_RAISE, LAND_LOWER, LAND_SMOOTH, LAND_NOISE or LAND_REVERT</string>
</map>
</map>
<map>
<key>Area</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>0, 1, 2 (2m x 2m, 4m x 4m, or 8m x 8m)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Modify land with action (LAND_LEVEL, LAND_RAISE, LAND_LOWER, LAND_SMOOTH, LAND_NOISE, LAND_REVERT) on size (0, 1, 2, corresponding to 2m x 2m, 4m x 4m, 8m x 8m).</string>
</map>
<key>llModPow</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Power</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Modulus</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a Value raised to the Power, mod Modulus. ((a**b)%c) b is capped at 0xFFFF (16 bits).\nReturns (Value ^ Power) % Modulus. (Value raised to the Power, Modulus). Value is capped at 0xFFFF (16 bits).</string>
</map>
<key>llMoveToTarget</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Target</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Tau</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Critically damp to Target in Tau seconds (if the script is physical).\nCritically damp to position target in tau-seconds if the script is physical. Good tau-values are greater than 0.2. A tau of 0.0 stops the critical damping.</string>
</map>
<key>llOffsetTexture</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>OffsetS</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>OffsetT</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the texture S and T offsets for the chosen Face.\nIf Face is ALL_SIDES this function sets the texture offsets for all faces.</string>
</map>
<key>llOverMyLand</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns TRUE if id ID over land owned by the script owner, otherwise FALSE.\nReturns TRUE if key ID is over land owned by the object owner, FALSE otherwise.</string>
</map>
<key>llOwnerSay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>says Text to owner only (if owner is in region).\nSays Text to the owner of the object running the script, if the owner has been within the object's simulator since logging into Second Life, regardless of where they may be in-world.</string>
</map>
<key>llParcelMediaCommandList</key>
<map>
<key>sleep</key>
<real>2.0</real>
<key>arguments</key>
<array>
<map>
<key>CommandList</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>A list of PARCEL_MEDIA_COMMAND_* flags and their parameters </string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Controls the playback of multimedia resources on a parcel or for an agent, via one or more PARCEL_MEDIA_COMMAND_* arguments specified in CommandList.</string>
</map>
<key>llParcelMediaQuery</key>
<map>
<key>sleep</key>
<real>2.0</real>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>QueryList</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Queries the media properties of the parcel containing the script, via one or more PARCEL_MEDIA_COMMAND_* arguments specified in CommandList.\nThis function will only work if the script is contained within an object owned by the land-owner (or if the land is owned by a group, only if the object has been deeded to the group).</string>
</map>
<key>llParseString2List</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Separators</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Spacers</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Converts Text into a list, discarding Separators, keeping Spacers (Separators and Spacers must be lists of strings, maximum of 8 each).\nSeparators and Spacers are lists of strings with a maximum of 8 entries each.</string>
</map>
<key>llParseStringKeepNulls</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Separators</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>Spacers</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Breaks Text into a list, discarding separators, keeping spacers, keeping any null values generated. (separators and spacers must be lists of strings, maximum of 8 each).\nllParseStringKeepNulls works almost exactly like llParseString2List, except that if a null is found it will add a null-string instead of discarding it like llParseString2List does.</string>
</map>
<key>llParticleSystem</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Creates a particle system in the prim the script is attached to, based on Parameters. An empty list removes a particle system from object.\nList format is [ rule-1, data-1, rule-2, data-2 ... rule-n, data-n ].</string>
</map>
<key>llPassCollisions</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Pass</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE, collisions are passed from children on to parents.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Configures how collision events are passed to scripts in the linkset.\nIf Pass == TRUE, collisions involving collision-handling scripted child prims are also passed on to the root prim. If Pass == FALSE (default behavior), such collisions will only trigger events in the affected child prim.</string>
</map>
<key>llPassTouches</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Pass</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE, touches are passed from children on to parents.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Configures how touch events are passed to scripts in the linkset.\nIf Pass == TRUE, touches involving touch-handling scripted child prims are also passed on to the root prim. If Pass == FALSE (default behavior), such touches will only trigger events in the affected child prim.</string>
</map>
<key>llPlaySound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays Sound once, at Volume (0.0 - 1.0) and attached to the object.\nOnly one sound may be attached to an object at a time, and attaching a new sound or calling llStopSound will stop the previously attached sound.\nA second call to llPlaySound with the same sound will not restart the sound, but the new volume will be used, which allows control over the volume of already playing sounds.\nTo restart the sound from the beginning, call llStopSound before calling llPlaySound again.</string>
</map>
<key>llPlaySoundSlave</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays attached Sound once, at Volume (0.0 - 1.0), synced to next loop of most audible sync master.\nBehaviour is identical to llPlaySound, unless there is a "Sync Master" present. If a Sync Master is already playing, the Slave sound will not be played until the Master hits its loop point and returns to the beginning.\nllPlaySoundSlave will play the sound exactly once; if it is desired to have the sound play every time the Master loops, either use llLoopSoundSlave with extra silence padded on the end of the sound or ensure that llPlaySoundSlave is called at least once per loop of the Master.</string>
</map>
<key>llPow</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Exponent</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the Value raised to the power Exponent, or returns 0 and triggers Math Error for imaginary results.\nReturns the Value raised to the Exponent.</string>
</map>
<key>llPreloadSound</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Causes nearby viewers to preload the Sound from the object's inventory.\nThis is intended to prevent delays in starting new sounds when called upon.</string>
</map>
<key>llPushObject</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ObjectID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Impulse</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>AngularImpulse</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Applies Impulse and AngularImpulse to ObjectID.\nApplies the supplied impulse and angular impulse to the object specified.</string>
</map>
<key>llRefreshPrimURL</key>
<map>
<key>sleep</key>
<real>20.0</real>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Reloads the web page shown on the sides of the object.</string>
</map>
<key>llRegionSay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Any integer value except zero.</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Message to be transmitted.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Broadcasts Text to entire region on Channel (except for channel 0).</string>
</map>
<key>llRegionSayTo</key>
<map>
<key>arguments</key>
<array>
<map>
<key>TargetID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Avatar or object to say to.</string>
</map>
</map>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Output channel, any integer value.</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Message to be transmitted.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Says Text, on Channel, to avatar or object indicated by TargetID (if within region).\nIf TargetID is an avatar and Channel is nonzero, Text can be heard by any attachment on the avatar.</string>
</map>
<key>llReleaseCamera</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Return camera to agent.\nDeprecated: Use llClearCameraParams instead.</string>
</map>
<key>llReleaseControls</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Stop taking inputs.\nStop taking inputs from the avatar.</string>
</map>
<key>llReleaseURL</key>
<map>
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>URL to release.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Releases the specified URL, which was previously obtained using llRequestURL. Once released, the URL will no longer be usable.</string>
</map>
<key>llRemoteDataReply</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>sleep</key>
<real>3.0</real>
<key>arguments</key>
<array>
<map>
<key>ChannelID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>MessageID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>sData</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>String data to send</string>
</map>
</map>
<map>
<key>iData</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Integer data to send</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Send an XML-RPC reply to MessageID on ChannelID with payload of string sData and integer iData. Deprecated: Use HTTP functions/events instead.\nThe size of sData is limited to 254 characters.</string>
</map>
<key>llRemoteLoadScriptPin</key>
<map>
<key>sleep</key>
<real>3.0</real>
<key>arguments</key>
<array>
<map>
<key>ObjectID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Target prim to attempt copying into.</string>
</map>
</map>
<map>
<key>ScriptName</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Name of the script in current inventory to copy.</string>
</map>
</map>
<map>
<key>PIN</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Integer set on target prim as a Personal Information Number code.</string>
</map>
</map>
<map>
<key>Running</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>If the script should be set running in the target prim.</string>
</map>
</map>
<map>
<key>StartParameter</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Integer. Parameter passed to the script if set to be running.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If the owner of the object containing this script can modify the object identified by the specified object key, and if the PIN matches the PIN previously set using llSetRemoteScriptAccessPin (on the target prim), then the script will be copied into target. Running is a boolean specifying whether the script should be enabled once copied into the target object.</string>
</map>
<key>llRemoveFromLandBanList</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Remove avatar from the land ban list.\nRemove specified avatar from the land parcel ban list.</string>
</map>
<key>llRemoveFromLandPassList</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Remove avatar from the land pass list.\nRemove specified avatar from the land parcel pass list.</string>
</map>
<key>llRemoveInventory</key>
<map>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Remove the named inventory item.\nRemove the named inventory item from the object inventory.</string>
</map>
<key>llRemoveVehicleFlags</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Vehiclelags</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes the enabled bits in 'flags'.\nSets the vehicle flags to FALSE. Valid parameters can be found in the vehicle flags constants section.</string>
</map>
<key>llRequestAgentData</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Data</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests data about AvatarID. When data is available the dataserver event will be raised.\nThis function requests data about an avatar. If and when the information is collected, the dataserver event is triggered with the key returned from this function passed in the requested parameter. See the agent data constants (DATA_*) for details about valid values of data and what each will return in the dataserver event.</string>
</map>
<key>llRequestDisplayName</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Avatar UUID</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests the display name of the agent. When the display name is available the dataserver event will be raised.\nThe avatar identified does not need to be in the same region or online at the time of the request.\nReturns a key that is used to identify the dataserver event when it is raised.</string>
</map>
<key>llRequestInventoryData</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests data for the named InventoryItem.\nWhen data is available, the dataserver event will be raised with the key returned from this function in the requested parameter.\nThe only request currently implemented is to request data from landmarks, where the data returned is in the form "&lt;float, float, float&gt;" which can be cast to a vector. This position is in region local coordinates.</string>
</map>
<key>llRequestPermissions</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>PermissionMask</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Ask AvatarID to allow the script to perform certain actions, specified in the PermissionMask bitmask. PermissionMask should be one or more PERMISSION_* constants. Multiple permissions can be requested simultaneously by ORing the constants together. Many of the permissions requests can only go to object owner.\nThis call will not stop script execution. If the avatar grants the requested permissions, the run_time_permissions event will be called.</string>
</map>
<key>llRequestSecureURL</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Requests one HTTPS:// (SSL) URL for use by this object. The http_request event is triggered with results.\nReturns a key that is the handle used for identifying the request in the http_request event.</string>
</map>
<key>llRequestSimulatorData</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>RegionName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Data</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests the specified Data about RegionName. When the specified data is available, the dataserver event is raised.\nData should use one of the DATA_SIM_* constants.\nReturns a dataserver query ID and triggers the dataserver event when data is found.</string>
</map>
<key>llRequestURL</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Requests one HTTP:// URL for use by this script. The http_request event is triggered with the result of the request.\nReturns a key that is the handle used for identifying the result in the http_request event.</string>
</map>
<key>llRequestUsername</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests single-word user-name of an avatar. When data is available the dataserver event will be raised.\nRequests the user-name of the identified agent. When the user-name is available the dataserver event is raised.\nThe agent identified does not need to be in the same region or online at the time of the request.\nReturns a key that is used to identify the dataserver event when it is raised.</string>
</map>
<key>llResetAnimationOverride</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AnimationState</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Resets the animation of the specified animation state to the default value.\nIf animation state equals "ALL", then all animation states are reset.</string>
</map>
<key>llResetLandBanList</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Removes all residents from the land ban list.</string>
</map>
<key>llResetLandPassList</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Removes all residents from the land access/pass list.</string>
</map>
<key>llResetOtherScript</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ScriptName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Resets the named script.</string>
</map>
<key>llResetScript</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Resets the script.</string>
</map>
<key>llResetTime</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Sets the time to zero.\nSets the internal timer to zero.</string>
</map>
<key>llReturnObjectsByID</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ObjectIDs</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>List of object UUIDs to be returned.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Return objects using their UUIDs.\nRequires the PERMISSION_RETURN_OBJECTS permission and that the script owner owns the parcel the returned objects are in, or is an estate manager or region owner.</string>
</map>
<key>llReturnObjectsByOwner</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Object owner's UUID.</string>
</map>
</map>
<map>
<key>Scope</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Return objects based upon their owner and a scope of parcel, parcel owner, or region.\nRequires the PERMISSION_RETURN_OBJECTS permission and that the script owner owns the parcel the returned objects are in, or is an estate manager or region owner.</string>
</map>
<key>llRezAtRoot</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Velocity</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>StartParameter</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Instantiate owner's InventoryItem at Position with Velocity, Rotation and with StartParameter. The last selected root object's location will be set to Position.\nCreates object's inventory item at the given Position, with Velocity, Rotation, and StartParameter.</string>
</map>
<key>llRezObject</key>
<map>
<key>sleep</key>
<real>0.1</real>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Velocity</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>StartParameter</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Instantiate owners InventoryItem at Position with Velocity, Rotation and with start StartParameter.\nCreates object's inventory item at Position with Velocity and Rotation supplied. The StartParameter value will be available to the newly created object in the on_rez event or through the llGetStartParameter function.\nThe Velocity parameter is ignored if the rezzed object is not physical.</string>
</map>
<key>llRot2Angle</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation angle represented by Rotation.\nReturns the angle represented by the Rotation.</string>
</map>
<key>llRot2Axis</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation axis represented by Rotation.\nReturns the axis represented by the Rotation.</string>
</map>
<key>llRot2Euler</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the Euler representation (roll, pitch, yaw) of Rotation.\nReturns the Euler Angle representation of the Rotation.</string>
</map>
<key>llRot2Fwd</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the forward vector defined by Rotation.\nReturns the forward axis represented by the Rotation.</string>
</map>
<key>llRot2Left</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the left vector defined by Rotation.\nReturns the left axis represented by the Rotation.</string>
</map>
<key>llRot2Up</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the up vector defined by Rotation.\nReturns the up axis represented by the Rotation.</string>
</map>
<key>llRotateTexture</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>Radians</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the texture rotation for the specified Face to angle Radians.\nIf Face is ALL_SIDES, rotates the texture of all sides.</string>
</map>
<key>llRotBetween</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>Vector1</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Vector2</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the rotation to rotate Vector1 to Vector2.\nReturns the rotation needed to rotate Vector1 to Vector2.</string>
</map>
<key>llRotLookAt</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>Strength</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Damping</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Cause object to rotate to Rotation, with a force function defined by Strength and Damping parameters. Good strength values are around half the mass of the object and good damping values are less than 1/10th of the strength.\nAsymmetrical shapes require smaller damping.\nA strength of 0.0 cancels the look at.</string>
</map>
<key>llRotTarget</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>LeeWay</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set rotations with error of LeeWay radians as a rotational target, and return an ID for the rotational target.\nThe returned number is a handle that can be used in at_rot_target and llRotTargetRemove.</string>
</map>
<key>llRotTargetRemove</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Handle</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes rotational target number.\nRemove rotational target indicated by the handle.</string>
</map>
<key>llRound</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns Value rounded to the nearest integer.\nReturns the Value rounded to the nearest integer.</string>
</map>
<key>llSameGroup</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns TRUE if avatar ID is in the same region and has the same active group, otherwise FALSE.\nReturns TRUE if the object or agent identified is in the same simulator and has the same active group as this object. Otherwise, returns FALSE.</string>
</map>
<key>llSay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Channel to use to say text on.</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Text to say.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Says Text on Channel.\nThis chat method has a range of 20m radius.\nPUBLIC_CHANNEL is the public chat channel that all avatars see as chat text. DEBUG_CHANNEL is the script debug channel, and is also visible to nearby avatars. All other channels are are not sent to avatars, but may be used to communicate with scripts.</string>
</map>
<key>llScaleByFactor</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>ScalingFactor</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>The multiplier to be used with the prim sizes and their local positions.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Attempts to resize the entire object by ScalingFactor, maintaining the size-position ratios of the prims.\n\nResizing is subject to prim scale limits and linkability limits. This function can not resize the object if the linkset is physical, a pathfinding character, in a keyframed motion, or if resizing would cause the parcel to overflow.\nReturns a boolean (an integer) TRUE if it succeeds, FALSE if it fails.</string>
</map>
<key>llScaleTexture</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>Horizontal</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Vertical</key>
<map>
<key>type</key>
<string>float</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the diffuse texture Horizontal and Vertical repeats on Face of the prim the script is attached to.\nIf Face == ALL_SIDES, all sides are set in one call.\nNegative values for horizontal and vertical will flip the texture.</string>
</map>
<key>llScriptDanger</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns TRUE if Position is over public land, sandbox land, land that doesn't allow everyone to edit and build, or land that doesn't allow outside scripts.\nReturns true if the position is over public land, land that doesn't allow everyone to edit and build, or land that doesn't allow outside scripts.</string>
</map>
<key>llScriptProfiler</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>State</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>PROFILE_NONE or PROFILE_SCRIPT_MEMORY flags to control the state.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Enables or disables script profiling options. Currently only supports PROFILE_SCRIPT_MEMORY (Mono only) and PROFILE_NONE.\nMay significantly reduce script performance.</string>
</map>
<key>llSendRemoteData</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>sleep</key>
<real>3.0</real>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>ChannelID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Destination</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: use HTTP functions and events instead.\nSends an XML-RPC request to Destination through ChannelID with payload of ChannelID (in a string), integer Value and string Text.\nReturns a key that is the message_id for the resulting remote_data events.</string>
</map>
<key>llSensor</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Name</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Object or avatar name.</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Object or avatar UUID.</string>
</map>
</map>
<map>
<key>Type</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Bit-field mask of AGENT, AGENT_BY_LEGACY_NAME, AGENT_BY_USERNAME, ACTIVE, PASSIVE, and/or SCRIPTED</string>
</map>
</map>
<map>
<key>Range</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Distance to scan. 0.0 - 96.0m.</string>
</map>
</map>
<map>
<key>Arc</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Angle, in radians, from the local x-axis of the prim to scan.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Performs a single scan for Name and ID with Type (AGENT, ACTIVE, PASSIVE, and/or SCRIPTED) within Range meters and Arc radians of forward vector.\nSpecifying a blank Name, 0 Type, or NULL_KEY ID will prevent filtering results based on that parameter. A range of 0.0 does not perform a scan.\nResults are returned in the sensor and no_sensor events.</string>
</map>
<key>llSensorRemove</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>removes sensor.\nRemoves the sensor set by llSensorRepeat.</string>
</map>
<key>llSensorRepeat</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Name</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Object or avatar name.</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>Object or avatar UUID.</string>
</map>
</map>
<map>
<key>Type</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Bit-field mask of AGENT, AGENT_BY_LEGACY_NAME, AGENT_BY_USERNAME, ACTIVE, PASSIVE, and/or SCRIPTED</string>
</map>
</map>
<map>
<key>Range</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Distance to scan. 0.0 - 96.0m.</string>
</map>
</map>
<map>
<key>Arc</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Angle, in radians, from the local x-axis of the prim to scan.</string>
</map>
</map>
<map>
<key>Rate</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Period, in seconds, between scans.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Initiates a periodic scan every Rate seconds, for Name and ID with Type (AGENT, ACTIVE, PASSIVE, and/or SCRIPTED) within Range meters and Arc radians of forward vector.\nSpecifying a blank Name, 0 Type, or NULL_KEY ID will prevent filtering results based on that parameter. A range of 0.0 does not perform a scan.\nResults are returned in the sensor and no_sensor events.</string>
</map>
<key>llSetAlpha</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Opacity</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the alpha (opacity) of Face.\nSets the alpha (opacity) value for Face. If Face is ALL_SIDES, sets the alpha for all faces. The alpha value is interpreted as an opacity percentage (1.0 is fully opaque, and 0.2 is mostly transparent). This function will clamp alpha values less than 0.1 to 0.1 and greater than 1.0 to 1.</string>
</map>
<key>llSetAngularVelocity</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AngVel</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>The angular velocity to set the object to.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>If TRUE, the AngVel is treated as a local directional vector instead of a regional directional vector.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets an object's angular velocity to AngVel, in local coordinates if Local == TRUE (if the script is physical).\nHas no effect on non-physical objects.</string>
</map>
<key>llSetAnimationOverride</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AnimationState</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>AnimationName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the animation (in object inventory) that will play for the given animation state.\nTo use this function the script must obtain the PERMISSION_OVERRIDE_ANIMATIONS permission.</string>
</map>
<key>llSetBuoyancy</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Buoyancy</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the tasks buoyancy (0 is none, &lt; 1.0 sinks, 1.0 floats, &gt; 1.0 rises).\nSet the object buoyancy. A value of 0 is none, less than 1.0 sinks, 1.0 floats, and greater than 1.0 rises.</string>
</map>
<key>llSetCameraAtOffset</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the camera used in this object, at offset, if an avatar sits on it.\nSets the offset that an avatar's camera will be moved to if the avatar sits on the object.</string>
</map>
<key>llSetCameraEyeOffset</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the camera eye offset used in this object if an avatar sits on it.</string>
</map>
<key>llSetCameraParams</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets multiple camera parameters at once. List format is [ rule-1, data-1, rule-2, data-2 . . . rule-n, data-n ].</string>
</map>
<key>llSetClickAction</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Action</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>A CLICK_ACTION_* flag</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the action performed when a prim is clicked upon.</string>
</map>
<key>llSetColor</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Color</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the color, for the face.\nSets the color of the side specified. If Face is ALL_SIDES, sets the color on all faces.</string>
</map>
<key>llSetContentType</key>
<map>
<key>arguments</key>
<array>
<map>
<key>HTTPRequestID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>A valid http_request() key</string>
</map>
</map>
<map>
<key>ContentType</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Media type to use with any following llHTTPResponse(HTTPRequestID, ...)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the media type of an LSL HTTP server response to ContentType.\nHTTPRequestID must be a valid http_request ID. ContentType must be one of the CONTENT_TYPE_* constants.</string>
</map>
<key>llSetDamage</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Damage</key>
<map>
<key>type</key>
<string>float</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the amount of damage that will be done to an avatar that this task hits. Task will be killed.\nSets the amount of damage that will be done to an avatar that this object hits. This object will be destroyed on damaging an avatar, and no collision event is triggered.</string>
</map>
<key>llSetForce</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Force</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Directional force.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE uses local axis, if FALSE uses region axis.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets Force on object, in object-local coordinates if Local == TRUE (otherwise, the region reference frame is used).\nOnly works on physical objects.</string>
</map>
<key>llSetForceAndTorque</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Force</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Directional force.</string>
</map>
</map>
<map>
<key>Torque</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Torque force.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE uses local axis, if FALSE uses region axis.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the Force and Torque of object, in object-local coordinates if Local == TRUE (otherwise, the region reference frame is used).\nOnly works on physical objects.</string>
</map>
<key>llSetHoverHeight</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Height</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Distance above the ground.</string>
</map>
</map>
<map>
<key>Water</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE then hover above water too.</string>
</map>
</map>
<map>
<key>Tau</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Seconds to critically damp in.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Critically damps a physical object to a Height (either above ground level or above the higher of land and water if water == TRUE).\nDo not use with vehicles. Use llStopHover to stop hovering.</string>
</map>
<key>llSetInventoryPermMask</key>
<map>
<key>god-mode</key>
<boolean>true</boolean>
<key>arguments</key>
<array>
<map>
<key>InventoryItem</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>An item in the prim's inventory</string>
</map>
</map>
<map>
<key>PermissionFlag</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>MASK_* flag</string>
</map>
</map>
<map>
<key>PermissionMask</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Permission bit-field (PERM_* flags)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the given permission mask to the new value on the inventory item.</string>
</map>
<key>llSetKeyframedMotion</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Keyframes</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>Strided keyframe list of the form: position, orientation, time. Each keyframe is interpreted relative to the previous transform of the object.</string>
</map>
</map>
<map>
<key>Options</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests that a non-physical object be key-framed according to key-frame list.\nSpecify a list of times, positions, and orientations to be followed by an object. The object will be smoothly moved between key-frames by the simulator. Collisions with other non-physical or key-framed objects will be ignored (no script events will fire and collision processing will not occur). Collisions with physical objects will be computed and reported, but the key-framed object will be unaffected by those collisions.\nKeyframes is a strided list containing positional, rotational, and time data for each step in the motion. Options is a list containing optional arguments and parameters (specified by KFM_* constants).</string>
</map>
<key>llSetLinkAlpha</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Opacity</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If a prim exists in the link chain at LinkNumber, set Face to Opacity.\nSets the Face, on the linked prim specified, to the Opacity.</string>
</map>
<key>llSetLinkCamera</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Prim link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag</string>
</map>
</map>
<map>
<key>EyeOffset</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Offset, relative to the object's centre and expressed in local coordinates, that the camera looks from.</string>
</map>
</map>
<map>
<key>LookOffset</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Offset, relative to the object's centre and expressed in local coordinates, that the camera looks toward.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the camera eye offset, and the offset that camera is looking at, for avatars that sit on the linked prim.</string>
</map>
<key>llSetLinkColor</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag.</string>
</map>
</map>
<map>
<key>Color</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Color in RGB &lt;R.R, G.G, B.B&gt;</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Side number or ALL_SIDES.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If a task exists in the link chain at LinkNumber, set the Face to color.\nSets the color of the linked child's side, specified by LinkNumber.</string>
</map>
<key>llSetLinkMedia</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Link</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims).</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Face number.</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>A set of name/value pairs (in no particular order)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the media parameters for a particular face on linked prim, specified by Link. Returns an integer that is a STATUS_* flag which details the success/failure of the operation(s).\nMediaParameters is a set of name/value pairs in no particular order. Parameters not specified are unchanged, or if new media is added then set to the default specified.</string>
</map>
<key>llSetLinkPrimitiveParams</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Set primitive parameters for LinkNumber based on Parameters.\nSets the parameters (or properties) of any linked prim in one step.</string>
</map>
<key>llSetLinkPrimitiveParamsFast</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag</string>
</map>
</map>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set primitive parameters for LinkNumber based on Parameters, without a delay.\nSet parameters for link number, from the list of Parameters, with no built-in script sleep. This function is identical to llSetLinkPrimitiveParams, except without the delay.</string>
</map>
<key>llSetLinkTexture</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Texture</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the Texture of Face on a linked prim, specified by LinkNumber. Texture may be a UUID or name of a texture in prim inventory.</string>
</map>
<key>llSetLinkTextureAnim</key>
<map>
<key>arguments</key>
<array>
<map>
<key>LinkNumber</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Link number (0: unlinked, 1: root prim, &gt;1: child prims) or a LINK_* flag to effect</string>
</map>
</map>
<map>
<key>Mode</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Bitmask of animation options.</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Specifies which object face to animate or ALL_SIDES.</string>
</map>
</map>
<map>
<key>SizeX</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Horizontal frames (ignored for ROTATE and SCALE).</string>
</map>
</map>
<map>
<key>SizeY</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Vertical frames (ignored for ROTATE and SCALE).</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Start position/frame number (or radians for ROTATE).</string>
</map>
</map>
<map>
<key>Length</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Specifies the animation duration, in frames (or radians for ROTATE).</string>
</map>
</map>
<map>
<key>Rate</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Specifies the animation playback rate, in frames per second (must be greater than zero).</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Animates a texture on the prim specified by LinkNumber, by setting the texture scale and offset.\nMode is a bitmask of animation options.\nFace specifies which object face to animate.\nSizeX and SizeY specify the number of horizontal and vertical frames.Start specifes the animation start point.\nLength specifies the animation duration.\nRate specifies the animation playback rate.</string>
</map>
<key>llSetLocalRot</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the rotation of a child prim relative to the root prim.</string>
</map>
<key>llSetMemoryLimit</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Limit</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>The amount to reserve, which must be less than the allowed maximum (currently 64KB) and not already have been exceeded.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests Limit bytes to be reserved for this script.\nReturns TRUE or FALSE indicating whether the limit was set successfully.\nThis function has no effect if the script is running in the LSO VM.</string>
</map>
<key>llSetObjectDesc</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Description</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the description of the prim to Description.\nThe description field is limited to 127 characters.</string>
</map>
<key>llSetObjectName</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the prim's name to Name.</string>
</map>
<key>llSetObjectPermMask</key>
<map>
<key>god-mode</key>
<boolean>true</boolean>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>PermissionFlag</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>MASK_* flag</string>
</map>
</map>
<map>
<key>PermissionMask</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Permission bit-field (PERM_* flags)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the specified PermissionFlag permission to the value specified by PermissionMask on the object the script is attached to.</string>
</map>
<key>llSetParcelMusicURL</key>
<map>
<key>sleep</key>
<real>2.0</real>
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the streaming audio URL for the parcel the object is on.\nThe object must be owned by the owner of the parcel; if the parcel is group owned the object must be owned by that group.</string>
</map>
<key>llSetPayPrice</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Price</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>The default price shown in the textu input field.</string>
</map>
</map>
<map>
<key>QuickButtons</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>Specifies the 4 payment values shown in the payment dialog's buttons (or PAY_HIDE).</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the default amount when someone chooses to pay this object.\nPrice is the default price shown in the textu input field. QuickButtons specifies the 4 payment values shown in the payment dialog's buttons.\nInput field and buttons may be hidden with PAY_HIDE constant, and may be set to their default values using PAY_DEFAULT.</string>
</map>
<key>llSetPhysicsMaterial</key>
<map>
<key>arguments</key>
<array>
<map>
<key>MaterialBits</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>A bitmask specifying which of the parameters in the other arguments should be applied to the object.</string>
</map>
</map>
<map>
<key>GravityMultiplier</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Restitution</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Friction</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Density</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the selected parameters of the object's physics behavior.\nMaterialBits is a bitmask specifying which of the parameters in the other arguments should be applied to the object. GravityMultiplier, Restitution, Friction, and Density are the possible parameters to manipulate.</string>
</map>
<key>llSetPos</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Region coordinates to move to (within 10m).</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If the object is not physical, this function sets the position of the prim.\nIf the script is in a child prim, Position is treated as root relative and the link-set is adjusted.\nIf the prim is the root prim, the entire object is moved (up to 10m) to Position in region coordinates.</string>
</map>
<key>llSetPrimitiveParams</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>Parameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>A list of changes.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This function changes the many properties (or "parameters") of a prim in one operation. Parameters is a list of changes.</string>
</map>
<key>llSetPrimMediaParams</key>
<map>
<key>sleep</key>
<real>1.0</real>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Face number</string>
</map>
</map>
<map>
<key>MediaParameters</key>
<map>
<key>type</key>
<string>list</string>
<key>tooltip</key>
<string>A set of name/value pairs (in no particular order)</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the MediaParameters for a particular Face on the prim. Returns an integer that is a STATUS_* flag which details the success/failure of the operation(s).\nMediaParameters is a set of name/value pairs in no particular order. Parameters not specified are unchanged, or if new media is added then set to the default specified.</string>
</map>
<key>llSetPrimURL</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>sleep</key>
<real>20.0</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Use llSetPrimMediaParams instead.</string>
</map>
<key>llSetRegionPos</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Vector. The location to move to, in region coordinates.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Attempts to move the object so that the root prim is within 0.1m of Position.\nReturns an integer boolean, TRUE if the object is successfully placed within 0.1 m of Position, FALSE otherwise.\nPosition may be any location within the region or up to 10m across a region border.\nIf the position is below ground, it will be set to the ground level at that x,y location.</string>
</map>
<key>llSetRemoteScriptAccessPin</key>
<map>
<key>sleep</key>
<real>0.2</real>
<key>arguments</key>
<array>
<map>
<key>PIN</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If PIN is set to a non-zero number, the task will accept remote script loads via llRemoteLoadScriptPin() if it passes in the correct PIN. Othersise, llRemoteLoadScriptPin() is ignored.</string>
</map>
<key>llSetRot</key>
<map>
<key>sleep</key>
<real>0.2</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If the object is not physical, this function sets the rotation of the prim.\nIf the script is in a child prim, Rotation is treated as root relative and the link-set is adjusted.\nIf the prim is the root prim, the entire object is rotated to Rotation in the global reference frame.</string>
</map>
<key>llSetScale</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Scale</key>
<map>
<key>type</key>
<string>vector</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the prim's scale (size) to Scale.</string>
</map>
<key>llSetScriptState</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ScriptName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Running</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Enable or disable the script Running state of Script in the prim.</string>
</map>
<key>llSetSitText</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Displays Text rather than 'Sit' in the viewer's context menu.</string>
</map>
<key>llSetSoundQueueing</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>QueueEnable</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, sound queuing: TRUE enables, FALSE disables (default).</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets whether successive calls to llPlaySound, llLoopSound, etc., (attached sounds) interrupt the currently playing sound.\nThe default for objects is FALSE. Setting this value to TRUE will make the sound wait until the current playing sound reaches its end. The queue is one level deep.</string>
</map>
<key>llSetSoundRadius</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Radius</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Maximum distance that sounds can be heard.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Limits radius for audibility of scripted sounds (both attached and triggered) to distance Radius.</string>
</map>
<key>llSetStatus</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Status</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets object status specified in Status bitmask (e.g. STATUS_PHYSICS|STATUS_PHANTOM) to boolean Value.\nFor a full list of STATUS_* constants, see wiki documentation.</string>
</map>
<key>llSetText</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Color</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Opacity</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Causes Text to float above the prim, using the specified Color and Opacity.</string>
</map>
<key>llSetTexture</key>
<map>
<key>sleep</key>
<real>0.2</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Texture</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Applies Texture to Face of prim.\nTexture may be a UUID or name of a texture in prim inventory.\nIf Face is ALL_SIDES, set the texture on all faces.</string>
</map>
<key>llSetTextureAnim</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Mode</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Mask of Mode flags.</string>
</map>
</map>
<map>
<key>Face</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Face number or ALL_SIDES.</string>
</map>
</map>
<map>
<key>SizeX</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Horizontal frames (ignored for ROTATE and SCALE).</string>
</map>
</map>
<map>
<key>SizeY</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Vertical frames (ignored for ROTATE and SCALE).</string>
</map>
</map>
<map>
<key>Start</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Start position/frame number (or radians for ROTATE).</string>
</map>
</map>
<map>
<key>Length</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>number of frames to display (or radians for ROTATE).</string>
</map>
</map>
<map>
<key>Rate</key>
<map>
<key>type</key>
<string>float</string>
<key>tooltip</key>
<string>Frames per second (must not greater than zero).</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Animates a texture by setting the texture scale and offset.\nMode is a bitmask of animation options.\nFace specifies which object face to animate.\nSizeX and SizeY specify the number of horizontal and vertical frames.Start specifes the animation start point.\nLength specifies the animation duration.\nRate specifies the animation playback rate.</string>
</map>
<key>llSetTimerEvent</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Rate</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Causes the timer event to be triggered every Rate seconds.\n Passing in 0.0 stops further timer events.</string>
</map>
<key>llSetTorque</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Torque</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Torque force.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, if TRUE uses local axis, if FALSE uses region axis.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets the Torque acting on the script's object, in object-local coordinates if Local == TRUE (otherwise, the region reference frame is used).\nOnly works on physical objects.</string>
</map>
<key>llSetTouchText</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Displays Text in the viewer context menu that acts on a touch.</string>
</map>
<key>llSetVehicleFlags</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Flags</key>
<map>
<key>type</key>
<string>integer</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
</array>
<key>tooltip</key>
<string>Enables the vehicle flags specified in the Flags bitmask.\nValid parameters can be found in the wiki documentation.</string>
</map>
<key>llSetVehicleFloatParam</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ParameterName</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>ParameterValue</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets a vehicle float parameter.\nValid parameters can be found in the wiki documentation.</string>
</map>
<key>llSetVehicleRotationParam</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>ParameterName</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>ParameterValue</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets a vehicle rotation parameter.\nValid parameters can be found in the wiki documentation.</string>
</map>
<key>llSetVehicleType</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Type</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Activates the vehicle action on the object with vehicle preset Type.\nValid Types and an explanation of their characteristics can be found in wiki documentation.</string>
</map>
<key>llSetVehicleVectorParam</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ParameterName</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>ParameterValue</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Sets a vehicle vector parameter.\nValid parameters can be found in the wiki documentation.</string>
</map>
<key>llSetVelocity</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Velocity</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>The velocity to apply.</string>
</map>
</map>
<map>
<key>Local</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>If TRUE, the Velocity is treated as a local directional vector instead of a regional directional vector.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If the object is physics-enabled, sets the object's linear velocity to Velocity.\nIf Local==TRUE, Velocity is treated as a local directional vector; otherwise, Velocity is treated as a global directional vector.</string>
</map>
<key>llSHA1String</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string of 40 hex characters that is the SHA1 security Hash of Text.</string>
</map>
<key>llShout</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Shouts Text on Channel.\nThis chat method has a range of 100m radius.\nPUBLIC_CHANNEL is the public chat channel that all avatars see as chat text. DEBUG_CHANNEL is the script debug channel, and is also visible to nearby avatars. All other channels are are not sent to avatars, but may be used to communicate with scripts.</string>
</map>
<key>llSin</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Theta</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the sine of Theta (Theta in radians).</string>
</map>
<key>llSitTarget</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Set the sit location for this object. If offset == ZERO_VECTOR, clears the sit target.</string>
</map>
<key>llSleep</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Time</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Put script to sleep for Time seconds.</string>
</map>
<key>llSound</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Queue</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Loop</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Use llPlaySound instead.\nPlays Sound at Volume and specifies whether the sound should loop and/or be enqueued.</string>
</map>
<key>llSoundPreload</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Use llPreloadSound instead.\nPreloads a sound on viewers within range.</string>
</map>
<key>llSqrt</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the square root of Value.\nTriggers a math runtime error for imaginary results (if Value &lt; 0.0).</string>
</map>
<key>llStartAnimation</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Animation</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This function plays the specified animation from playing on the avatar who received the script's most recent permissions request.\nAnimation may be an animation in task inventory or a built-in animation.\nRequires PERMISSION_TRIGGER_ANIMATION.</string>
</map>
<key>llStopAnimation</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Animation</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This function stops the specified animation on the avatar who received the script's most recent permissions request.\nAnimation may be an animation in task inventory, a built-in animation, or the uuid of an animation.\nRequires PERMISSION_TRIGGER_ANIMATION.</string>
</map>
<key>llStopHover</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Stop hovering to a height (due to llSetHoverHeight()).</string>
</map>
<key>llStopLookAt</key>
<map>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Stop causing object to point at a target (due to llLookAt() or llRotLookAt()).</string>
</map>
<key>llStopMoveToTarget</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Stops critically damped motion (due to llMoveToTarget()).</string>
</map>
<key>llStopSound</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Stops playback of the currently attached sound.</string>
</map>
<key>llStringLength</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns an integer that is the number of characters in Text (not counting the null).</string>
</map>
<key>llStringToBase64</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the string Base64 representation of the input string.</string>
</map>
<key>llStringTrim</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>String to trim</string>
</map>
</map>
<map>
<key>TrimType</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>STRING_TRIM_HEAD, STRING_TRIM_TAIL, or STRING_TRIM.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Outputs a string, eliminating white-space from the start and/or end of the input string Text.\nValid options for TrimType:\nSTRING_TRIM_HEAD: trim all leading spaces in Text\nSTRING_TRIM_TAIL: trim all trailing spaces in Text\nSTRING_TRIM: trim all leading and trailing spaces in Text.</string>
</map>
<key>llSubStringIndex</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Sequence</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns an integer that is the index in Text where string pattern Sequence first appears. Returns -1 if not found.</string>
</map>
<key>llTakeCamera</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Use llSetCameraParams instead.</string>
</map>
<key>llTakeControls</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Controls</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Bit-field of CONTROL_* flags.</string>
</map>
</map>
<map>
<key>Accept</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, determines whether control events are generated.</string>
</map>
</map>
<map>
<key>PassOn</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>Boolean, determines whether controls are disabled.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Take controls from the agent the script has permissions for.\nIf (Accept == (Controls &amp; input)), send input to the script. PassOn determines whether Controls also perform their normal functions.\nRequires the PERMISSION_TAKE_CONTROLS permission to run.</string>
</map>
<key>llTan</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Theta</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the tangent of Theta (Theta in radians).</string>
</map>
<key>llTarget</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Range</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>This function is to have the script know when it has reached a position.\nIt registers a Position with a Range that triggers at_target and not_at_target events continuously until unregistered.</string>
</map>
<key>llTargetOmega</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Axis</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>SpinRate</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>Gain</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Attempt to spin at SpinRate with strength Gain on Axis.\nA spin rate of 0.0 cancels the spin. This function always works in object-local coordinates.</string>
</map>
<key>llTargetRemove</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Target</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Removes positional target Handle registered with llTarget.</string>
</map>
<key>llTeleportAgent</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>UUID of avatar.</string>
</map>
</map>
<map>
<key>LandmarkName</key>
<map>
<key>type</key>
<string>string</string>
<key>tooltip</key>
<string>Name of landmark (in object contents), or empty string, to use.</string>
</map>
</map>
<map>
<key>Position</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>If no landmark was provided, the position within the current region to teleport the avatar to.</string>
</map>
</map>
<map>
<key>LookAtPoint</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>The position within the target region that the avatar should be turned to face upon arrival.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Requests a teleport of avatar to a landmark stored in the object's inventory. If no landmark is provided (an empty string), the avatar is teleported to the location position in the current region. In either case, the avatar is turned to face the position given by look_at in local coordinates.\nRequires the PERMISSION_TELEPORT permission. This function can only teleport the owner of the object.</string>
</map>
<key>llTeleportAgentGlobalCoords</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
<key>tooltip</key>
<string>UUID of avatar.</string>
</map>
</map>
<map>
<key>GlobalPosition</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>Global coordinates of the destination region. Can be retrieved by using llRequestSimulatorData(region_name, DATA_SIM_POS).</string>
</map>
</map>
<map>
<key>RegionPosition</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>The position within the target region to teleport the avatar to, if no landmark was provided.</string>
</map>
</map>
<map>
<key>LookAtPoint</key>
<map>
<key>type</key>
<string>vector</string>
<key>tooltip</key>
<string>The position within the target region that the avatar should be turned to face upon arrival.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Teleports an agent to the RegionPosition local coordinates within a region which is specified by the GlobalPosition global coordinates. The agent lands facing the position defined by LookAtPoint local coordinates.\nRequires the PERMISSION_TELEPORT permission. This function can only teleport the owner of the object.</string>
</map>
<key>llTeleportAgentHome</key>
<map>
<key>sleep</key>
<real>5.0</real>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Teleport agent over the owner's land to agent's home location.</string>
</map>
<key>llTextBox</key>
<map>
<key>sleep</key>
<real>1.0</real>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Opens a dialog for the specified avatar with message Text, which contains a text box for input. Any text that is entered is said on the specified Channel (as if by the avatar) when the "OK" button is clicked.</string>
</map>
<key>llToLower</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string that is Text with all lower-case characters.</string>
</map>
<key>llToUpper</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns a string that is Text with all upper-case characters.</string>
</map>
<key>llTransferLindenDollars</key>
<map>
<key>return</key>
<string>key</string>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
<map>
<key>Amount</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Transfer Amount of linden dollars (L$) from script owner to AvatarID. Returns a key to a corresponding transaction_result event for the success of the transfer.\nAttempts to send the amount of money to the specified avatar, and trigger a transaction_result event identified by the returned key.</string>
</map>
<key>llTriggerSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
2018-10-19 18:37:13 +00:00
2018-10-19 17:35:31 +00:00
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays Sound at Volume (0.0 - 1.0), centered at but not attached to object.\nThere is no limit to the number of triggered sounds which can be generated by an object, and calling llTriggerSound does not affect the attached sounds created by llPlaySound and llLoopSound. This is very useful for things like collision noises, explosions, etc. There is no way to stop or alter the volume of a sound triggered by this function.</string>
</map>
<key>llTriggerSoundLimited</key>
<map>
<key>arguments</key>
<array>
<map>
<key>Sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>TNE</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>BSW</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Plays Sound at Volume (0.0 - 1.0), centered at but not attached to object, limited to axis-aligned bounding box defined by vectors top-north-east (TNE) and bottom-south-west (BSW).\nThere is no limit to the number of triggered sounds which can be generated by an object, and calling llTriggerSound does not affect the attached sounds created by llPlaySound and llLoopSound. This is very useful for things like collision noises, explosions, etc. There is no way to stop or alter the volume of a sound triggered by this function.</string>
</map>
<key>llUnescapeURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>URL</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the string that is the URL unescaped, replacing "%20" with spaces, etc., version of URL.\nThis function can output raw UTF-8 strings.</string>
</map>
<key>llUnSit</key>
<map>
<key>arguments</key>
<array>
<map>
<key>AvatarID</key>
<map>
<key>type</key>
<string>key</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If agent identified by AvatarID is sitting on the object the script is attached to or is over land owned by the objects owner, the agent is forced to stand up.</string>
</map>
<key>llVecDist</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Location1</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>Location2</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the distance between Location1 and Location2.</string>
</map>
<key>llVecMag</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Vector</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the magnitude of the vector.</string>
</map>
<key>llVecNorm</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Vector</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns normalized vector.</string>
</map>
<key>llVolumeDetect</key>
<map>
<key>arguments</key>
<array>
<map>
<key>DetectEnabled</key>
<map>
<key>type</key>
<string>integer</string>
<key>tooltip</key>
<string>TRUE enables, FALSE disables.</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>If DetectEnabled = TRUE, object becomes phantom but triggers collision_start and collision_end events when other objects start and stop interpenetrating.\nIf another object (including avatars) interpenetrates it, it will get a collision_start event.\nWhen an object stops interpenetrating, a collision_end event is generated. While the other is inter-penetrating, collision events are NOT generated.</string>
</map>
<key>llWater</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the water height below the object position + Offset.</string>
</map>
<key>llWhisper</key>
<map>
2018-10-19 23:21:40 +00:00
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
<key>Channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>Text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Whispers Text on Channel.\nThis chat method has a range of 10m radius.\nPUBLIC_CHANNEL is the public chat channel that all avatars see as chat text. DEBUG_CHANNEL is the script debug channel, and is also visible to nearby avatars. All other channels are are not sent to avatars, but may be used to communicate with scripts.</string>
</map>
<key>llWind</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>Offset</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Returns the wind velocity at the object position + Offset.</string>
</map>
<key>llXorBase64</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text1</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Text2</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Performs an exclusive OR on two Base64 strings and returns a Base64 string. Text2 repeats if it is shorter than Text1.</string>
</map>
<key>llXorBase64Strings</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>sleep</key>
<real>0.3</real>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text1</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Text2</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Please use llXorBase64 instead.\nIncorrectly performs an exclusive OR on two Base64 strings and returns a Base64 string. Text2 repeats if it is shorter than Text1.\nRetained for backwards compatibility.</string>
</map>
<key>llXorBase64StringsCorrect</key>
<map>
<key>deprecated</key>
<boolean>true</boolean>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>Text1</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>Text2</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
<key>tooltip</key>
<string>Deprecated: Please use llXorBase64 instead.\nCorrectly (unless nulls are present) performs an exclusive OR on two Base64 strings and returns a Base64 string.\nText2 repeats if it is shorter than Text1.</string>
</map>
<key>llGetMinScaleFactor</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the smallest multiplicative uniform scale factor that can be successfully applied (via llScaleByFactor()) to the object without violating prim size or linkability rules.</string>
</map>
<key>llGetMaxScaleFactor</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
<key>tooltip</key>
<string>Returns the largest multiplicative uniform scale factor that can be successfully applied (via llScaleByFactor()) to the object without violating prim size or linkability rules.</string>
</map>
2018-10-21 16:53:02 +00:00
<key>cmDetectedCountry</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>number</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>cmGetAgentCountry</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>key</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>lsClearWindlightScene</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>lsGetWindlightScene</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>lsSetWindlightScene</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>lsSetWindlightSceneTargeted</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>target</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osAdjustSoundVolume</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
2018-10-19 17:35:31 +00:00
<key>osAgentSaveAppearance</key>
<map>
<key>return</key>
2018-10-21 16:53:02 +00:00
<string>string</string>
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
2018-10-21 16:53:02 +00:00
<key>avatarId</key>
<map>
2018-10-19 17:35:31 +00:00
<key>type</key>
2018-10-21 16:53:02 +00:00
<string>string</string>
</map>
2018-10-19 17:35:31 +00:00
</map>
<map>
<key>notecard</key>
2018-10-21 16:53:02 +00:00
<map>
2018-10-19 17:35:31 +00:00
<key>type</key>
<string>string</string>
2018-10-21 16:53:02 +00:00
</map>
</map>
</array>
</map>
<key>osAngleBetween</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>a</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>b</key>
<map>
<key>type</key>
<string>vector</string>
</map>
2018-10-19 17:35:31 +00:00
</map>
</array>
</map>
2018-10-19 23:21:40 +00:00
<key>osAvatarName2Key</key>
2018-10-19 17:35:31 +00:00
<map>
<key>return</key>
2018-10-21 16:53:02 +00:00
<string>string</string>
2018-10-19 23:21:40 +00:00
<key>arguments</key>
<array>
<map>
<key>firstname</key>
2018-10-21 16:53:02 +00:00
<map>
2018-10-19 23:21:40 +00:00
<key>type</key>
<string>string</string>
2018-10-21 16:53:02 +00:00
</map>
2018-10-19 23:21:40 +00:00
</map>
<map>
<key>lastname</key>
2018-10-21 16:53:02 +00:00
<map>
2018-10-19 23:21:40 +00:00
<key>type</key>
<string>string</string>
2018-10-21 16:53:02 +00:00
</map>
2018-10-19 23:21:40 +00:00
</map>
</array>
</map>
2018-10-21 16:53:02 +00:00
<key>osAvatarPlayAnimation</key>
2018-10-19 23:21:40 +00:00
<map>
2018-10-19 17:35:31 +00:00
<key>arguments</key>
<array>
<map>
2018-10-21 16:53:02 +00:00
<key>avatar</key>
<map>
2018-10-19 17:35:31 +00:00
<key>type</key>
2018-10-21 16:53:02 +00:00
<string>string</string>
</map>
2018-10-19 17:35:31 +00:00
</map>
<map>
2018-10-21 16:53:02 +00:00
<key>animation</key>
<map>
2018-10-19 17:35:31 +00:00
<key>type</key>
<string>string</string>
2018-10-21 16:53:02 +00:00
</map>
2018-10-19 17:35:31 +00:00
</map>
</array>
2018-10-21 16:53:02 +00:00
</map>
<key>osAvatarStopAnimation</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>animation</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osCauseDamage</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>damage</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osCauseHealing</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>healing</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osCheckODE</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
</map>
<key>osClearInertia</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osCollisionSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>impact_sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>impact_volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osConsoleCommand</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>command</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osDie</key>
<map>
<key>arguments</key>
<array>
<map>
<key>objectUUID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osDrawEllipse</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>width</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>height</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawFilledEllipse</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>width</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>height</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawFilledPolygon</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osDrawFilledRectangle</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>width</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>height</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawImage</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>width</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>height</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>imageUrl</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osDrawLine</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>startX</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>startY</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>endX</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>endY</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawLine</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>endX</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>endY</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawPolygon</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osDrawRectangle</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>width</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>height</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osDrawResetTransform</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osDrawRotationTransform</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osDrawScaleTransform</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osDrawText</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osDrawTranslationTransform</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osDropAttachment</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osDropAttachmentAt</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>rot</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osEjectFromGroup</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>agentId</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osForceAttachToAvatar</key>
<map>
<key>arguments</key>
<array>
<map>
<key>attachmentPoint</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osForceAttachToAvatarFromInventory</key>
<map>
<key>arguments</key>
<array>
<map>
<key>itemName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>attachmentPoint</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osForceAttachToOtherAvatarFromInventory</key>
<map>
<key>arguments</key>
<array>
<map>
<key>rawAvatarId</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>itemName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>attachmentPoint</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osForceBreakAllLinks</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osForceBreakLink</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osForceCreateLink</key>
<map>
<key>arguments</key>
<array>
<map>
<key>target</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>parent</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osForceDetachFromAvatar</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osForceDropAttachment</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osForceDropAttachmentAt</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>rot</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osForceOtherSit</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osForceOtherSit</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>target</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osFormatString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>str</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>strings</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osGetAgentIP</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>agent</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetAgents</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetAvatarHomeURI</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>uuid</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetAvatarList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetCurrentSunHour</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetDrawStringSize</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>text</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fontName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fontSize</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osGetGender</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>rawAvatarId</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetGridCustom</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>key</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetGridGatekeeperURI</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetGridHomeURI</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetGridLoginURI</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetGridName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetGridNick</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetHealRate</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetHealth</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetInertiaData</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetInventoryDesc</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>item</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetLinkNumber</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetLinkPrimitiveParams</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>linknumber</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osGetMapTexture</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetNotecard</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetNotecardLine</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>line</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osGetNPCList</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetNumberOfAttachments</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>attachmentPoints</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osGetNumberOfNotecardLines</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetPhysicsEngineName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetPhysicsEngineType</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetPrimitiveParams</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>prim</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osGetRegionMapTexture</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>regionName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetRegionSize</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetRegionStats</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetRezzingObject</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetScriptEngineName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetSimulatorMemory</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetSimulatorMemoryKB</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetSimulatorVersion</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osGetSunParam</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osGetTerrainHeight</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>x</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osGetWindParam</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>plugin</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osInviteToGroup</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>agentId</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osIsNpc</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osIsUUID</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>thing</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osKey2Name</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>id</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osKickAvatar</key>
<map>
<key>arguments</key>
<array>
<map>
<key>FirstName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>SurName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>alert</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osList2Double</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>src</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>index</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osListenRegex</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>channelID</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>name</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>msg</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>regexBitfield</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osLoadedCreationDate</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osLoadedCreationID</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osLoadedCreationTime</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
</map>
<key>osLoopSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osLoopSoundMaster</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osLoopSoundSlave</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osMakeNotecard</key>
<map>
<key>arguments</key>
<array>
<map>
<key>notecardName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contents</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osMatchString</key>
<map>
<key>return</key>
<string>list</string>
<key>arguments</key>
<array>
<map>
<key>src</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>pattern</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osMax</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>a</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>b</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osMessageAttachments</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>attachmentPoints</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
<map>
<key>options</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osMessageObject</key>
<map>
<key>arguments</key>
<array>
<map>
<key>objectUUID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osMin</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>a</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>b</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osMovePen</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>x</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osNpcCreate</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>firstname</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>lastname</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>notecard</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>options</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osNpcCreate</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>firstname</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>lastname</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>notecard</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcGetOwner</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcGetPos</key>
<map>
<key>return</key>
<string>vector</string>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcGetRot</key>
<map>
<key>return</key>
<string>rotation</string>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcLoadAppearance</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>notecard</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcMoveTo</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>pos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osNpcMoveToTarget</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>target</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>options</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osNpcPlayAnimation</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>animation</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcRemove</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSaveAppearance</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>notecard</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSay</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSetProfileAbout</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>about</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSetProfileImage</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>image</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSetRot</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osNpcShout</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcSit</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>target</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>options</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osNpcStand</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcStopAnimation</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>animation</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcStopMoveToTarget</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osNpcTouch</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npcLSL_Key</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>object_key</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>link_num</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osNpcWhisper</key>
<map>
<key>arguments</key>
<array>
<map>
<key>npc</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>channel</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>message</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osOwnerSaveAppearance</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>notecard</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osParcelJoin</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos1</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>pos2</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osParcelSetDetails</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osParcelSubdivide</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos1</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>pos2</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osParseJSON</key>
<map>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osParseJSONNew</key>
<map>
<key>arguments</key>
<array>
<map>
<key>JSON</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osPlaySound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osPlaySoundSlave</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osPreloadSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osRegexIsMatch</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>input</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>pattern</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osRegionNotice</key>
<map>
<key>arguments</key>
<array>
<map>
<key>msg</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osRegionNotice</key>
<map>
<key>arguments</key>
<array>
<map>
<key>agentID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>msg</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osRegionRestart</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>seconds</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osRegionRestart</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>seconds</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>msg</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osReplaceString</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>src</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>pattern</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>replace</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>count</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>start</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osRequestSecureURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>options</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osRequestURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>options</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osRound</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>ndigits</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetContentType</key>
<map>
<key>arguments</key>
<array>
<map>
<key>id</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>type</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureData</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureDataBlend</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>alpha</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureDataBlendFace</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>blend</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>disp</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>alpha</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureDataFace</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>data</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureURL</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>url</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureURLBlend</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>url</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>alpha</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetDynamicTextureURLBlendFace</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>dynamicID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>contentType</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>url</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>extraParams</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>blend</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>disp</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>timer</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>alpha</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>face</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetEstateSunSettings</key>
<map>
<key>arguments</key>
<array>
<map>
<key>sunFixed</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sunHour</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetFontName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fontName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetFontSize</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fontSize</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetHealRate</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>healrate</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetHealth</key>
<map>
<key>arguments</key>
<array>
<map>
<key>avatar</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>health</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetInertia</key>
<map>
<key>arguments</key>
<array>
<map>
<key>mass</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>centerOfMass</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>principalInertiaScaled</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lslrot</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osSetInertiaAsBox</key>
<map>
<key>arguments</key>
<array>
<map>
<key>mass</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>boxSize</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>centerOfMass</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lslrot</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osSetInertiaAsCylinder</key>
<map>
<key>arguments</key>
<array>
<map>
<key>mass</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>radius</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>lenght</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>centerOfMass</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lslrot</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osSetInertiaAsSphere</key>
<map>
<key>arguments</key>
<array>
<map>
<key>mass</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>radius</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>centerOfMass</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osSetOwnerSpeed</key>
<map>
<key>arguments</key>
<array>
<map>
<key>SpeedModifier</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetParcelDetails</key>
<map>
<key>arguments</key>
<array>
<map>
<key>pos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osSetParcelMediaURL</key>
<map>
<key>arguments</key>
<array>
<map>
<key>url</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetParcelSIPAddress</key>
<map>
<key>arguments</key>
<array>
<map>
<key>SIPAddress</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetPenCap</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>direction</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>type</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetPenColor</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>color</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetPenColour</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>colour</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetPenSize</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>drawList</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>penSize</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetPrimFloatOnWater</key>
<map>
<key>arguments</key>
<array>
<map>
<key>floatYN</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetPrimitiveParams</key>
<map>
<key>arguments</key>
<array>
<map>
<key>prim</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>rules</key>
<map>
<key>type</key>
<string>list</string>
</map>
</map>
</array>
</map>
<key>osSetProjectionParams</key>
<map>
<key>arguments</key>
<array>
<map>
<key>projection</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>texture</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fov</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>focus</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>amb</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetProjectionParams</key>
<map>
<key>arguments</key>
<array>
<map>
<key>prim</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>projection</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>texture</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>fov</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>focus</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>amb</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetRegionSunSettings</key>
<map>
<key>arguments</key>
<array>
<map>
<key>useEstateSun</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sunFixed</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sunHour</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetRegionWaterHeight</key>
<map>
<key>arguments</key>
<array>
<map>
<key>height</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetRot</key>
<map>
<key>arguments</key>
<array>
<map>
<key>target</key>
<map>
<key>type</key>
<string></string>
</map>
</map>
<map>
<key>rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
</array>
</map>
<key>osSetSoundRadius</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>radius</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetSpeed</key>
<map>
<key>arguments</key>
<array>
<map>
<key>ID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>SpeedModifier</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetStateEvents</key>
<map>
<key>arguments</key>
<array>
<map>
<key>events</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSetSunParam</key>
<map>
<key>arguments</key>
<array>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetTerrainHeight</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>x</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>val</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetTerrainTexture</key>
<map>
<key>arguments</key>
<array>
<map>
<key>level</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>texture</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSetTerrainTextureHeight</key>
<map>
<key>arguments</key>
<array>
<map>
<key>corner</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>low</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>high</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osSetWindParam</key>
<map>
<key>arguments</key>
<array>
<map>
<key>plugin</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osStopSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osSunGetParam</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
</array>
</map>
<key>osSunSetParam</key>
<map>
<key>arguments</key>
<array>
<map>
<key>param</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>value</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osTeleportAgent</key>
<map>
<key>arguments</key>
<array>
<map>
<key>agent</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>regionGridX</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>regionGridY</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTeleportAgent</key>
<map>
<key>arguments</key>
<array>
<map>
<key>agent</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>regionName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTeleportAgent</key>
<map>
<key>arguments</key>
<array>
<map>
<key>agent</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTeleportObject</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>objectUUID</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>targetPos</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>rotation</key>
<map>
<key>type</key>
<string>rotation</string>
</map>
</map>
<map>
<key>flags</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osTeleportOwner</key>
<map>
<key>arguments</key>
<array>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTeleportOwner</key>
<map>
<key>arguments</key>
<array>
<map>
<key>regionGridX</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>regionGridY</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTeleportOwner</key>
<map>
<key>arguments</key>
<array>
<map>
<key>regionName</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>position</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>lookat</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osTerrainFlush</key>
<map>
<key>arguments</key>
<undef/>
</map>
<key>osTerrainGetHeight</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>x</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osTerrainSetHeight</key>
<map>
<key>return</key>
<string>integer</string>
<key>arguments</key>
<array>
<map>
<key>x</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>y</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>val</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osTriggerSound</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
</array>
</map>
<key>osTriggerSoundLimited</key>
<map>
<key>arguments</key>
<array>
<map>
<key>linknum</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
<map>
<key>sound</key>
<map>
<key>type</key>
<string>string</string>
</map>
</map>
<map>
<key>volume</key>
<map>
<key>type</key>
<string>float</string>
</map>
</map>
<map>
<key>top_north_east</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>bottom_south_west</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osUnixTimeToTimestamp</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<array>
<map>
<key>time</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osVecDistSquare</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>a</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
<map>
<key>b</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osVecMagSquare</key>
<map>
<key>return</key>
<string>float</string>
<key>arguments</key>
<array>
<map>
<key>a</key>
<map>
<key>type</key>
<string>vector</string>
</map>
</map>
</array>
</map>
<key>osVolumeDetect</key>
<map>
<key>arguments</key>
<array>
<map>
<key>detect</key>
<map>
<key>type</key>
<string>integer</string>
</map>
</map>
</array>
</map>
<key>osWindActiveModelPluginName</key>
<map>
<key>return</key>
<string>string</string>
<key>arguments</key>
<undef/>
2018-10-19 17:35:31 +00:00
</map>
</map>
2018-10-21 16:53:02 +00:00
</map></llsd>