j7n Posted October 24, 2017 Share Posted October 24, 2017 A small question. I just completed the frustrating Dirt Track race mission. During it we can hear two sounds: a crowd noise if we crash and an annoying siren. I must have heard it like a hundred times. What does the siren indicate? Look in my eyes. What do you see? The cult of personaality. I know your anger, I know your dreams. I've been evrything you want to be. Link to comment Share on other sites More sharing options...
Mulyadi Posted October 24, 2017 Share Posted October 24, 2017 Air Horn, not siren. Damn, GTA San Andreas was so MLG back then. Link to comment Share on other sites More sharing options...
lil weasel Posted October 24, 2017 Share Posted October 24, 2017 I thought it to be the Leader Lap signal. Whoever is in the lead has finished a lap. j7n 1 Link to comment Share on other sites More sharing options...
Patrick1994 Posted October 25, 2017 Share Posted October 25, 2017 (edited) It is random. This code in words: Every 2-10 seconds*, play one of 4 random sounds/mission audios. One of them is the airhorn [sOUND_AIR_HORN 1164, in the code: 097A: play_audio_at 0.0 0.0 0.0 event 1164]. The others are probably all "croud noises". I found them: SOUND_CROWD_AWWS 36200 SOUND_CROWD_CHEERS 36202 SOUND_CROWD_CHEERS_BIG 36205 SOUND_BANK_AIR_HORN 1827 *it waits at least until the previous mission audio has ended Ok, enough nerd stuff. ` Subroutine CPRACE_50980() ` {1093158 50984` if( [email protected] == 0 ) {1093176 51002` if( 03D2: wav 4 ended ) {1093191 51017` if( 001E: $CURRENT_TIME_IN_MS2 > [email protected] // (int) ) {1093206 51032` 040D: unload_wav 4 ;1093210 51036` 0209: [email protected] = random_int_in_ranges 0 4 ; ` switch( [email protected] ) { ` case 0 :1093282 51108` 03CF: load_wav 36200 as 4 ; ` break; //CPRACE_51170 ` case 1 :1093298 51124` 03CF: load_wav 36202 as 4 ; ` break; //CPRACE_51170 ` case 2 :1093314 51140` 03CF: load_wav 36205 as 4 ; ` break; //CPRACE_51170 ` case 3 :1093330 51156` 03CF: load_wav 1827 as 4 ; ` break; //CPRACE_51170 ` } // CPRACE_511701093344 51170` [email protected] += 1 ; ` } ` } ` }1093355 51181` if( [email protected] == 1 ) {1093373 51199` if( 03D0: wav 4 loaded ) {1093388 51214` if( [email protected] == 3 ) {1093402 51228` 097A: play_audio_at 0.0 0.0 0.0 event 1164 ; ` } ` else {1093429 51255` 03D1: play_wav 4 ; ` }1093433 51259` 0209: [email protected] = random_int_in_ranges 2000 10000 ;1093444 51270` 005C: [email protected] += $CURRENT_TIME_IN_MS2 ; // (int)1093452 51278` [email protected] = 0 ; ` } ` } Edited October 25, 2017 by Patrick1994 j7n, Lioshenka and miserkatulle 3 Link to comment Share on other sites More sharing options...
lil weasel Posted October 25, 2017 Share Posted October 25, 2017 I thought it was an official, so with your find it must be Fan. Link to comment Share on other sites More sharing options...