@@ -233,19 +233,24 @@ const char *builtins_txt[] = {
233233" key llKeyCountKeyValue( )" ,
234234" key llKeysKeyValue( integer start, integer count )" ,
235235" vector llLinear2sRGB( vector color )" ,
236+ " void llLinkAdjustSoundVolume( integer link, float volume )" ,
236237" void llLinkParticleSystem( integer linknumber, list rules )" ,
238+ " void llLinkPlaySound( integer link, string sound, float volume, integer flags )" ,
239+ " void llLinkSetSoundQueueing( integer link, integer queue )" ,
240+ " void llLinkSetSoundRadius( integer link, float radius )" ,
237241" void llLinkSitTarget( integer link, vector offset, rotation rot )" ,
242+ " void llLinkStopSound( integer link )" ,
238243" integer llLinksetDataAvailable( )" ,
239244" integer llLinksetDataCountKeys( )" ,
240- " integer llLinksetDataDelete( string key )" ,
241- " integer llLinksetDataDeleteProtected( string key , string password )" ,
245+ " integer llLinksetDataDelete( string keyname )" ,
246+ " integer llLinksetDataDeleteProtected( string keyname , string password )" ,
242247" list llLinksetDataFindKeys( string pattern, integer start, integer count )" ,
243248" list llLinksetDataListKeys( integer start, integer count )" ,
244- " string llLinksetDataRead( string key )" ,
245- " string llLinksetDataReadProtected( string key , string password )" ,
249+ " string llLinksetDataRead( string keyname )" ,
250+ " string llLinksetDataReadProtected( string keyname , string password )" ,
246251" void llLinksetDataReset( )" ,
247- " integer llLinksetDataWrite( string key , string value )" ,
248- " integer llLinksetDataWriteProtected( string key , string value, string password )" ,
252+ " integer llLinksetDataWrite( string keyname , string value )" ,
253+ " integer llLinksetDataWriteProtected( string keyname , string value, string password )" ,
249254" string llList2CSV( list src )" ,
250255" float llList2Float( list src, integer index )" ,
251256" integer llList2Integer( list src, integer index )" ,
@@ -1173,6 +1178,10 @@ const char *builtins_txt[] = {
11731178" const integer SKY_TEXTURE_DEFAULTS = 1" ,
11741179" const integer SKY_TRACKS = 15" ,
11751180" const integer SMOOTH = 0x10" ,
1181+ " const integer SOUND_LOOP = 0x01" ,
1182+ " const integer SOUND_PLAY = 0x00" ,
1183+ " const integer SOUND_SYNC = 0x04" ,
1184+ " const integer SOUND_TRIGGER = 0x02" ,
11761185" const float SQRT2 = 1.41421356" ,
11771186" const integer STATUS_BLOCK_GRAB = 0x40" ,
11781187" const integer STATUS_BLOCK_GRAB_OBJECT = 0x400" ,
@@ -1314,7 +1323,7 @@ const char *builtins_txt[] = {
13141323" event land_collision_end( vector pos )" ,
13151324" event land_collision_start( vector pos )" ,
13161325" event link_message( integer sender_num, integer num, string str, key id )" ,
1317- " event linkset_data( integer action, string key , string value )" ,
1326+ " event linkset_data( integer action, string keyname , string value )" ,
13181327" event listen( integer channel, string name, key id, string message )" ,
13191328" event money( key id, integer amount )" ,
13201329" event moving_end( )" ,
0 commit comments