@@ -219,6 +219,7 @@ const char *builtins_txt[] = {
219219" vector llGroundNormal( vector offset )" ,
220220" void llGroundRepel( float height, integer water, float tau )" ,
221221" vector llGroundSlope( vector offset )" ,
222+ " string llHMAC( string authkey, string message, string hashalg )" ,
222223" key llHTTPRequest( string url, list parameters, string body )" ,
223224" void llHTTPResponse( key request_id, integer status, string body )" ,
224225" integer llHash( string val )" ,
@@ -329,6 +330,7 @@ const char *builtins_txt[] = {
329330" void llRemoveVehicleFlags( integer flags )" ,
330331" integer llReplaceAgentEnvironment( key agent_id, float transition, string environment )" ,
331332" integer llReplaceEnvironment( vector position, string environment, integer track_no, integer day_length, integer day_offset )" ,
333+ " string llReplaceSubString( string source, string search, string replace, integer count )" ,
332334" key llRequestAgentData( key id, integer data )" ,
333335" key llRequestDisplayName( key id )" ,
334336" void llRequestExperiencePermissions( key agent, string name )" ,
@@ -433,6 +435,7 @@ const char *builtins_txt[] = {
433435" void llSetVehicleVectorParam( integer param, vector vec )" ,
434436" void llSetVelocity( vector velocity, integer local )" ,
435437" void llShout( integer channel, string msg )" ,
438+ " string llSignRSA( string privkey, string message, string hashalg )" ,
436439" float llSin( float theta )" ,
437440" integer llSitOnLink( key agent_id, integer link )" ,
438441" void llSitTarget( vector offset, rotation rot )" ,
@@ -476,6 +479,7 @@ const char *builtins_txt[] = {
476479" float llVecDist( vector v1, vector v2 )" ,
477480" float llVecMag( vector v )" ,
478481" vector llVecNorm( vector v )" ,
482+ " integer llVerifyRSA( string pubkey, string message, string signature, string hashalg )" ,
479483" void llVolumeDetect( integer detect )" ,
480484" void llWanderWithin( vector center, vector radius, list options )" ,
481485" float llWater( vector offset )" ,
@@ -1147,7 +1151,33 @@ const char *builtins_txt[] = {
11471151" const integer ROTATE = 0x20" ,
11481152" const integer SCALE = 0x40" ,
11491153" const integer SCRIPTED = 0x8" ,
1154+ " const integer SIM_STAT_ACTIVE_SCRIPT_COUNT = 12" ,
1155+ " const integer SIM_STAT_AGENT_COUNT = 10" ,
1156+ " const integer SIM_STAT_AGENT_MS = 7" ,
1157+ " const integer SIM_STAT_AGENT_UPDATES = 2" ,
1158+ " const integer SIM_STAT_AI_MS = 26" ,
1159+ " const integer SIM_STAT_ASSET_DOWNLOADS = 15" ,
1160+ " const integer SIM_STAT_ASSET_UPLOADS = 16" ,
1161+ " const integer SIM_STAT_CHILD_AGENT_COUNT = 11" ,
1162+ " const integer SIM_STAT_FRAME_MS = 3" ,
1163+ " const integer SIM_STAT_IMAGE_MS = 8" ,
1164+ " const integer SIM_STAT_IO_PUMP_MS = 24" ,
1165+ " const integer SIM_STAT_NET_MS = 4" ,
1166+ " const integer SIM_STAT_OTHER_MS = 5" ,
1167+ " const integer SIM_STAT_PACKETS_IN = 13" ,
1168+ " const integer SIM_STAT_PACKETS_OUT = 14" ,
11501169" const integer SIM_STAT_PCT_CHARS_STEPPED = 0" ,
1170+ " const integer SIM_STAT_PHYSICS_FPS = 1" ,
1171+ " const integer SIM_STAT_PHYSICS_MS = 6" ,
1172+ " const integer SIM_STAT_PHYSICS_OTHER_MS = 20" ,
1173+ " const integer SIM_STAT_PHYSICS_SHAPE_MS = 19" ,
1174+ " const integer SIM_STAT_PHYSICS_STEP_MS = 18" ,
1175+ " const integer SIM_STAT_SCRIPT_EPS = 21" ,
1176+ " const integer SIM_STAT_SCRIPT_MS = 9" ,
1177+ " const integer SIM_STAT_SCRIPT_RUN_PCT = 25" ,
1178+ " const integer SIM_STAT_SLEEP_MS = 23" ,
1179+ " const integer SIM_STAT_SPARE_MS = 22" ,
1180+ " const integer SIM_STAT_UNACKED_BYTES = 17" ,
11511181" const integer SIT_INVALID_AGENT = -4" ,
11521182" const integer SIT_INVALID_LINK = -5" ,
11531183" const integer SIT_INVALID_OBJECT = -7" ,
0 commit comments