ILSL_Api.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat;
  29. using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger;
  30. using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString;
  31. using LSL_List = OpenSim.Region.ScriptEngine.Shared.LSL_Types.list;
  32. using LSL_Rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion;
  33. using LSL_String = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString;
  34. using LSL_Vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3;
  35. namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
  36. {
  37. public interface ILSL_Api
  38. {
  39. void state(string newState);
  40. LSL_Integer llAbs(int i);
  41. LSL_Float llAcos(double val);
  42. void llAddToLandBanList(string avatar, double hours);
  43. void llAddToLandPassList(string avatar, double hours);
  44. void llAdjustSoundVolume(double volume);
  45. void llAllowInventoryDrop(int add);
  46. LSL_Float llAngleBetween(LSL_Rotation a, LSL_Rotation b);
  47. void llApplyImpulse(LSL_Vector force, int local);
  48. void llApplyRotationalImpulse(LSL_Vector force, int local);
  49. LSL_Float llAsin(double val);
  50. LSL_Float llAtan2(double x, double y);
  51. void llAttachToAvatar(int attachment);
  52. LSL_Key llAvatarOnSitTarget();
  53. LSL_Key llAvatarOnLinkSitTarget(int linknum);
  54. LSL_Rotation llAxes2Rot(LSL_Vector fwd, LSL_Vector left, LSL_Vector up);
  55. LSL_Rotation llAxisAngle2Rot(LSL_Vector axis, double angle);
  56. LSL_Integer llBase64ToInteger(string str);
  57. LSL_String llBase64ToString(string str);
  58. void llBreakAllLinks();
  59. void llBreakLink(int linknum);
  60. LSL_List llCastRay(LSL_Vector start, LSL_Vector end, LSL_List options);
  61. LSL_Integer llCeil(double f);
  62. void llClearCameraParams();
  63. LSL_Integer llClearLinkMedia(LSL_Integer link, LSL_Integer face);
  64. LSL_Integer llClearPrimMedia(LSL_Integer face);
  65. void llCloseRemoteDataChannel(string channel);
  66. LSL_Float llCloud(LSL_Vector offset);
  67. void llCollisionFilter(string name, string id, int accept);
  68. void llCollisionSound(string impact_sound, double impact_volume);
  69. void llCollisionSprite(string impact_sprite);
  70. LSL_Float llCos(double f);
  71. void llCreateLink(string target, int parent);
  72. LSL_List llCSV2List(string src);
  73. LSL_List llDeleteSubList(LSL_List src, int start, int end);
  74. LSL_String llDeleteSubString(string src, int start, int end);
  75. void llDetachFromAvatar();
  76. LSL_Vector llDetectedGrab(int number);
  77. LSL_Integer llDetectedGroup(int number);
  78. LSL_Key llDetectedKey(int number);
  79. LSL_Integer llDetectedLinkNumber(int number);
  80. LSL_String llDetectedName(int number);
  81. LSL_Key llDetectedOwner(int number);
  82. LSL_Vector llDetectedPos(int number);
  83. LSL_Rotation llDetectedRot(int number);
  84. LSL_Integer llDetectedType(int number);
  85. LSL_Vector llDetectedTouchBinormal(int index);
  86. LSL_Integer llDetectedTouchFace(int index);
  87. LSL_Vector llDetectedTouchNormal(int index);
  88. LSL_Vector llDetectedTouchPos(int index);
  89. LSL_Vector llDetectedTouchST(int index);
  90. LSL_Vector llDetectedTouchUV(int index);
  91. LSL_Vector llDetectedVel(int number);
  92. void llDialog(string avatar, string message, LSL_List buttons, int chat_channel);
  93. void llDie();
  94. LSL_String llDumpList2String(LSL_List src, string seperator);
  95. LSL_Integer llEdgeOfWorld(LSL_Vector pos, LSL_Vector dir);
  96. void llEjectFromLand(string pest);
  97. void llEmail(string address, string subject, string message);
  98. LSL_String llEscapeURL(string url);
  99. LSL_Rotation llEuler2Rot(LSL_Vector v);
  100. LSL_Float llFabs(double f);
  101. LSL_Integer llFloor(double f);
  102. void llForceMouselook(int mouselook);
  103. LSL_Float llFrand(double mag);
  104. LSL_Key llGenerateKey();
  105. LSL_Vector llGetAccel();
  106. LSL_Integer llGetAgentInfo(string id);
  107. LSL_String llGetAgentLanguage(string id);
  108. LSL_List llGetAgentList(LSL_Integer scope, LSL_List options);
  109. LSL_Vector llGetAgentSize(string id);
  110. LSL_Float llGetAlpha(int face);
  111. LSL_Float llGetAndResetTime();
  112. LSL_String llGetAnimation(string id);
  113. LSL_List llGetAnimationList(string id);
  114. LSL_Integer llGetAttached();
  115. LSL_List llGetBoundingBox(string obj);
  116. LSL_Vector llGetCameraPos();
  117. LSL_Rotation llGetCameraRot();
  118. LSL_Vector llGetCenterOfMass();
  119. LSL_Vector llGetColor(int face);
  120. LSL_String llGetCreator();
  121. LSL_String llGetDate();
  122. LSL_Float llGetEnergy();
  123. LSL_Vector llGetForce();
  124. LSL_Integer llGetFreeMemory();
  125. LSL_Integer llGetFreeURLs();
  126. LSL_Vector llGetGeometricCenter();
  127. LSL_Float llGetGMTclock();
  128. LSL_String llGetHTTPHeader(LSL_Key request_id, string header);
  129. LSL_Key llGetInventoryCreator(string item);
  130. LSL_Key llGetInventoryKey(string name);
  131. LSL_String llGetInventoryName(int type, int number);
  132. LSL_Integer llGetInventoryNumber(int type);
  133. LSL_Integer llGetInventoryPermMask(string item, int mask);
  134. LSL_Integer llGetInventoryType(string name);
  135. LSL_Key llGetKey();
  136. LSL_Key llGetLandOwnerAt(LSL_Vector pos);
  137. LSL_Key llGetLinkKey(int linknum);
  138. LSL_String llGetLinkName(int linknum);
  139. LSL_Integer llGetLinkNumber();
  140. LSL_Integer llGetLinkNumberOfSides(int link);
  141. LSL_List llGetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules);
  142. LSL_List llGetLinkPrimitiveParams(int linknum, LSL_List rules);
  143. LSL_Integer llGetListEntryType(LSL_List src, int index);
  144. LSL_Integer llGetListLength(LSL_List src);
  145. LSL_Vector llGetLocalPos();
  146. LSL_Rotation llGetLocalRot();
  147. LSL_Float llGetMass();
  148. LSL_Integer llGetMemoryLimit();
  149. void llGetNextEmail(string address, string subject);
  150. LSL_String llGetNotecardLine(string name, int line);
  151. LSL_Key llGetNumberOfNotecardLines(string name);
  152. LSL_Integer llGetNumberOfPrims();
  153. LSL_Integer llGetNumberOfSides();
  154. LSL_String llGetObjectDesc();
  155. LSL_List llGetObjectDetails(string id, LSL_List args);
  156. LSL_Float llGetObjectMass(string id);
  157. LSL_String llGetObjectName();
  158. LSL_Integer llGetObjectPermMask(int mask);
  159. LSL_Integer llGetObjectPrimCount(string object_id);
  160. LSL_Vector llGetOmega();
  161. LSL_Key llGetOwner();
  162. LSL_Key llGetOwnerKey(string id);
  163. LSL_List llGetParcelDetails(LSL_Vector pos, LSL_List param);
  164. LSL_Integer llGetParcelFlags(LSL_Vector pos);
  165. LSL_Integer llGetParcelMaxPrims(LSL_Vector pos, int sim_wide);
  166. LSL_String llGetParcelMusicURL();
  167. LSL_Integer llGetParcelPrimCount(LSL_Vector pos, int category, int sim_wide);
  168. LSL_List llGetParcelPrimOwners(LSL_Vector pos);
  169. LSL_Integer llGetPermissions();
  170. LSL_Key llGetPermissionsKey();
  171. LSL_List llGetPrimMediaParams(int face, LSL_List rules);
  172. LSL_Vector llGetPos();
  173. LSL_List llGetPrimitiveParams(LSL_List rules);
  174. LSL_Integer llGetRegionAgentCount();
  175. LSL_Vector llGetRegionCorner();
  176. LSL_Integer llGetRegionFlags();
  177. LSL_Float llGetRegionFPS();
  178. LSL_String llGetRegionName();
  179. LSL_Float llGetRegionTimeDilation();
  180. LSL_Vector llGetRootPosition();
  181. LSL_Rotation llGetRootRotation();
  182. LSL_Rotation llGetRot();
  183. LSL_Vector llGetScale();
  184. LSL_String llGetScriptName();
  185. LSL_Integer llGetScriptState(string name);
  186. LSL_String llGetSimulatorHostname();
  187. LSL_Integer llGetSPMaxMemory();
  188. LSL_Integer llGetStartParameter();
  189. LSL_Integer llGetStatus(int status);
  190. LSL_String llGetSubString(string src, int start, int end);
  191. LSL_Vector llGetSunDirection();
  192. LSL_String llGetTexture(int face);
  193. LSL_Vector llGetTextureOffset(int face);
  194. LSL_Float llGetTextureRot(int side);
  195. LSL_Vector llGetTextureScale(int side);
  196. LSL_Float llGetTime();
  197. LSL_Float llGetTimeOfDay();
  198. LSL_String llGetTimestamp();
  199. LSL_Vector llGetTorque();
  200. LSL_Integer llGetUnixTime();
  201. LSL_Integer llGetUsedMemory();
  202. LSL_Vector llGetVel();
  203. LSL_Float llGetWallclock();
  204. void llGiveInventory(string destination, string inventory);
  205. void llGiveInventoryList(string destination, string category, LSL_List inventory);
  206. void llGiveMoney(string destination, int amount);
  207. LSL_String llTransferLindenDollars(string destination, int amount);
  208. void llGodLikeRezObject(string inventory, LSL_Vector pos);
  209. LSL_Float llGround(LSL_Vector offset);
  210. LSL_Vector llGroundContour(LSL_Vector offset);
  211. LSL_Vector llGroundNormal(LSL_Vector offset);
  212. void llGroundRepel(double height, int water, double tau);
  213. LSL_Vector llGroundSlope(LSL_Vector offset);
  214. LSL_String llHTTPRequest(string url, LSL_List parameters, string body);
  215. void llHTTPResponse(LSL_Key id, int status, string body);
  216. LSL_String llInsertString(string dst, int position, string src);
  217. void llInstantMessage(string user, string message);
  218. LSL_String llIntegerToBase64(int number);
  219. LSL_String llKey2Name(string id);
  220. LSL_String llGetUsername(string id);
  221. LSL_String llRequestUsername(string id);
  222. LSL_String llGetDisplayName(string id);
  223. LSL_String llRequestDisplayName(string id);
  224. void llLinkParticleSystem(int linknum, LSL_List rules);
  225. void llLinkSitTarget(LSL_Integer link, LSL_Vector offset, LSL_Rotation rot);
  226. LSL_String llList2CSV(LSL_List src);
  227. LSL_Float llList2Float(LSL_List src, int index);
  228. LSL_Integer llList2Integer(LSL_List src, int index);
  229. LSL_Key llList2Key(LSL_List src, int index);
  230. LSL_List llList2List(LSL_List src, int start, int end);
  231. LSL_List llList2ListStrided(LSL_List src, int start, int end, int stride);
  232. LSL_Rotation llList2Rot(LSL_List src, int index);
  233. LSL_String llList2String(LSL_List src, int index);
  234. LSL_Vector llList2Vector(LSL_List src, int index);
  235. LSL_Integer llListen(int channelID, string name, string ID, string msg);
  236. void llListenControl(int number, int active);
  237. void llListenRemove(int number);
  238. LSL_Integer llListFindList(LSL_List src, LSL_List test);
  239. LSL_List llListInsertList(LSL_List dest, LSL_List src, int start);
  240. LSL_List llListRandomize(LSL_List src, int stride);
  241. LSL_List llListReplaceList(LSL_List dest, LSL_List src, int start, int end);
  242. LSL_List llListSort(LSL_List src, int stride, int ascending);
  243. LSL_Float llListStatistics(int operation, LSL_List src);
  244. void llLoadURL(string avatar_id, string message, string url);
  245. LSL_Float llLog(double val);
  246. LSL_Float llLog10(double val);
  247. void llLookAt(LSL_Vector target, double strength, double damping);
  248. void llLoopSound(string sound, double volume);
  249. void llLoopSoundMaster(string sound, double volume);
  250. void llLoopSoundSlave(string sound, double volume);
  251. LSL_Integer llManageEstateAccess(int action, string avatar);
  252. void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset);
  253. void llMakeFire(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset);
  254. void llMakeFountain(int particles, double scale, double vel, double lifetime, double arc, int bounce, string texture, LSL_Vector offset, double bounce_offset);
  255. void llMakeSmoke(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset);
  256. void llMapDestination(string simname, LSL_Vector pos, LSL_Vector look_at);
  257. LSL_String llMD5String(string src, int nonce);
  258. LSL_String llSHA1String(string src);
  259. void llMessageLinked(int linknum, int num, string str, string id);
  260. void llMinEventDelay(double delay);
  261. void llModifyLand(int action, int brush);
  262. LSL_Integer llModPow(int a, int b, int c);
  263. void llMoveToTarget(LSL_Vector target, double tau);
  264. void llOffsetTexture(double u, double v, int face);
  265. void llOpenRemoteDataChannel();
  266. LSL_Integer llOverMyLand(string id);
  267. void llOwnerSay(string msg);
  268. void llParcelMediaCommandList(LSL_List commandList);
  269. LSL_List llParcelMediaQuery(LSL_List aList);
  270. LSL_List llParseString2List(string str, LSL_List separators, LSL_List spacers);
  271. LSL_List llParseStringKeepNulls(string src, LSL_List seperators, LSL_List spacers);
  272. void llParticleSystem(LSL_List rules);
  273. void llPassCollisions(int pass);
  274. void llPassTouches(int pass);
  275. void llPlaySound(string sound, double volume);
  276. void llPlaySoundSlave(string sound, double volume);
  277. void llPointAt(LSL_Vector pos);
  278. LSL_Float llPow(double fbase, double fexponent);
  279. void llPreloadSound(string sound);
  280. void llPushObject(string target, LSL_Vector impulse, LSL_Vector ang_impulse, int local);
  281. void llRefreshPrimURL();
  282. void llRegionSay(int channelID, string text);
  283. void llRegionSayTo(string target, int channelID, string text);
  284. void llReleaseCamera(string avatar);
  285. void llReleaseControls();
  286. void llReleaseURL(string url);
  287. void llRemoteDataReply(string channel, string message_id, string sdata, int idata);
  288. void llRemoteDataSetRegion();
  289. void llRemoteLoadScript(string target, string name, int running, int start_param);
  290. void llRemoteLoadScriptPin(string target, string name, int pin, int running, int start_param);
  291. void llRemoveFromLandBanList(string avatar);
  292. void llRemoveFromLandPassList(string avatar);
  293. void llRemoveInventory(string item);
  294. void llRemoveVehicleFlags(int flags);
  295. LSL_Key llRequestAgentData(string id, int data);
  296. LSL_Key llRequestInventoryData(string name);
  297. void llRequestPermissions(string agent, int perm);
  298. LSL_String llRequestSecureURL();
  299. LSL_Key llRequestSimulatorData(string simulator, int data);
  300. LSL_Key llRequestURL();
  301. void llResetLandBanList();
  302. void llResetLandPassList();
  303. void llResetOtherScript(string name);
  304. void llResetScript();
  305. void llResetTime();
  306. void llRezAtRoot(string inventory, LSL_Vector position, LSL_Vector velocity, LSL_Rotation rot, int param);
  307. void llRezObject(string inventory, LSL_Vector pos, LSL_Vector vel, LSL_Rotation rot, int param);
  308. LSL_Float llRot2Angle(LSL_Rotation rot);
  309. LSL_Vector llRot2Axis(LSL_Rotation rot);
  310. LSL_Vector llRot2Euler(LSL_Rotation r);
  311. LSL_Vector llRot2Fwd(LSL_Rotation r);
  312. LSL_Vector llRot2Left(LSL_Rotation r);
  313. LSL_Vector llRot2Up(LSL_Rotation r);
  314. void llRotateTexture(double rotation, int face);
  315. LSL_Rotation llRotBetween(LSL_Vector start, LSL_Vector end);
  316. void llRotLookAt(LSL_Rotation target, double strength, double damping);
  317. LSL_Integer llRotTarget(LSL_Rotation rot, double error);
  318. void llRotTargetRemove(int number);
  319. LSL_Integer llRound(double f);
  320. LSL_Integer llSameGroup(string agent);
  321. void llSay(int channelID, string text);
  322. void llScaleTexture(double u, double v, int face);
  323. LSL_Integer llScriptDanger(LSL_Vector pos);
  324. void llScriptProfiler(LSL_Integer flag);
  325. LSL_Key llSendRemoteData(string channel, string dest, int idata, string sdata);
  326. void llSensor(string name, string id, int type, double range, double arc);
  327. void llSensorRemove();
  328. void llSensorRepeat(string name, string id, int type, double range, double arc, double rate);
  329. void llSetAlpha(double alpha, int face);
  330. void llSetBuoyancy(double buoyancy);
  331. void llSetCameraAtOffset(LSL_Vector offset);
  332. void llSetCameraEyeOffset(LSL_Vector offset);
  333. void llSetLinkCamera(LSL_Integer link, LSL_Vector eye, LSL_Vector at);
  334. void llSetCameraParams(LSL_List rules);
  335. void llSetClickAction(int action);
  336. void llSetColor(LSL_Vector color, int face);
  337. void llSetContentType(LSL_Key id, LSL_Integer type);
  338. void llSetDamage(double damage);
  339. void llSetForce(LSL_Vector force, int local);
  340. void llSetForceAndTorque(LSL_Vector force, LSL_Vector torque, int local);
  341. void llSetVelocity(LSL_Vector velocity, int local);
  342. void llSetAngularVelocity(LSL_Vector angularVelocity, int local);
  343. void llSetHoverHeight(double height, int water, double tau);
  344. void llSetInventoryPermMask(string item, int mask, int value);
  345. void llSetLinkAlpha(int linknumber, double alpha, int face);
  346. void llSetLinkColor(int linknumber, LSL_Vector color, int face);
  347. LSL_Integer llSetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules);
  348. void llSetLinkPrimitiveParams(int linknumber, LSL_List rules);
  349. void llSetLinkTexture(int linknumber, string texture, int face);
  350. void llSetLinkTextureAnim(int linknum, int mode, int face, int sizex, int sizey, double start, double length, double rate);
  351. void llSetLocalRot(LSL_Rotation rot);
  352. LSL_Integer llSetMemoryLimit(LSL_Integer limit);
  353. void llSetObjectDesc(string desc);
  354. void llSetObjectName(string name);
  355. void llSetObjectPermMask(int mask, int value);
  356. void llSetParcelMusicURL(string url);
  357. void llSetPayPrice(int price, LSL_List quick_pay_buttons);
  358. void llSetPos(LSL_Vector pos);
  359. LSL_Integer llSetPrimMediaParams(LSL_Integer face, LSL_List rules);
  360. void llSetPrimitiveParams(LSL_List rules);
  361. void llSetLinkPrimitiveParamsFast(int linknum, LSL_List rules);
  362. void llSetPrimURL(string url);
  363. LSL_Integer llSetRegionPos(LSL_Vector pos);
  364. void llSetRemoteScriptAccessPin(int pin);
  365. void llSetRot(LSL_Rotation rot);
  366. void llSetScale(LSL_Vector scale);
  367. void llSetScriptState(string name, int run);
  368. void llSetSitText(string text);
  369. void llSetSoundQueueing(int queue);
  370. void llSetSoundRadius(double radius);
  371. void llSetStatus(int status, int value);
  372. void llSetText(string text, LSL_Vector color, double alpha);
  373. void llSetTexture(string texture, int face);
  374. void llSetTextureAnim(int mode, int face, int sizex, int sizey, double start, double length, double rate);
  375. void llSetTimerEvent(double sec);
  376. void llSetTorque(LSL_Vector torque, int local);
  377. void llSetTouchText(string text);
  378. void llSetVehicleFlags(int flags);
  379. void llSetVehicleFloatParam(int param, LSL_Float value);
  380. void llSetVehicleRotationParam(int param, LSL_Rotation rot);
  381. void llSetVehicleType(int type);
  382. void llSetVehicleVectorParam(int param, LSL_Vector vec);
  383. void llShout(int channelID, string text);
  384. LSL_Float llSin(double f);
  385. void llSitTarget(LSL_Vector offset, LSL_Rotation rot);
  386. void llSleep(double sec);
  387. void llSound(string sound, double volume, int queue, int loop);
  388. void llSoundPreload(string sound);
  389. LSL_Float llSqrt(double f);
  390. void llStartAnimation(string anim);
  391. void llStopAnimation(string anim);
  392. void llStopHover();
  393. void llStopLookAt();
  394. void llStopMoveToTarget();
  395. void llStopPointAt();
  396. void llStopSound();
  397. LSL_Integer llStringLength(string str);
  398. LSL_String llStringToBase64(string str);
  399. LSL_String llStringTrim(string src, int type);
  400. LSL_Integer llSubStringIndex(string source, string pattern);
  401. void llTakeCamera(string avatar);
  402. void llTakeControls(int controls, int accept, int pass_on);
  403. LSL_Float llTan(double f);
  404. LSL_Integer llTarget(LSL_Vector position, double range);
  405. void llTargetOmega(LSL_Vector axis, double spinrate, double gain);
  406. void llTargetRemove(int number);
  407. void llTeleportAgentHome(string agent);
  408. void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt);
  409. void llTeleportAgentGlobalCoords(string agent, LSL_Vector global, LSL_Vector pos, LSL_Vector lookAt);
  410. void llTextBox(string avatar, string message, int chat_channel);
  411. LSL_String llToLower(string source);
  412. LSL_String llToUpper(string source);
  413. void llTriggerSound(string sound, double volume);
  414. void llTriggerSoundLimited(string sound, double volume, LSL_Vector top_north_east, LSL_Vector bottom_south_west);
  415. LSL_String llUnescapeURL(string url);
  416. void llUnSit(string id);
  417. LSL_Float llVecDist(LSL_Vector a, LSL_Vector b);
  418. LSL_Float llVecMag(LSL_Vector v);
  419. LSL_Vector llVecNorm(LSL_Vector v);
  420. void llVolumeDetect(int detect);
  421. LSL_Float llWater(LSL_Vector offset);
  422. void llWhisper(int channelID, string text);
  423. LSL_Vector llWind(LSL_Vector offset);
  424. LSL_String llXorBase64Strings(string str1, string str2);
  425. LSL_String llXorBase64StringsCorrect(string str1, string str2);
  426. void print(string str);
  427. void SetPrimitiveParamsEx(LSL_Key prim, LSL_List rules, string originFunc);
  428. void llSetKeyframedMotion(LSL_List frames, LSL_List options);
  429. LSL_List GetPrimitiveParamsEx(LSL_Key prim, LSL_List rules);
  430. }
  431. }