SA-MP Forums Archive
Sounds - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: Sounds (/showthread.php?tid=546666)



Sounds - ikkentim - 16.11.2014

Has anyone ever played around with sounds much?

I know the wiki contains a small list of sounds, but I'm specifically looking for LSPD/cop sounds(that talk when you get close to them and things like that) and those aren't listed in there. Has anyone ever found these? I've looked at \data\AudioEvents.txt but couldn't really locate them in there either.

I also know that there are sounds that aren't listed in there but well... Entering random soundids takes a long time any many sound ids make me crash

EDIT: By lspd sounds I mean those "you're under arrest" type a' sounds


Re: Sounds - Clarck - 16.11.2014

https://sampwiki.blast.hk/wiki/SoundID

https://sampwiki.blast.hk/wiki/PlayerPlaySound

that ??


Re: Sounds - ikkentim - 16.11.2014

Quote:
Originally Posted by Clarck
Посмотреть сообщение
Did you read my post?
Quote:

I know the wiki contains a small list of sounds, but I'm specifically looking for LSPD/cop sounds

EDIT: hmm well I've updated my main post to make it clearer what sounds i meant.


Re: Sounds - Abagail - 16.11.2014

pawn Код:
new MegaphoneSounds[][] =
{
        // SPLIT COMMA
        // SOUND ID , DESCRIPTION
        {"9605,Give up. You're surrounded!"},
        {"9612,We know you're in there!"},
        {"10200,Hey you! Police. Stop!"},
        {"15800,This is the Los Santos Police Department; Stay where you are!"},
        {"15801,Freeze! Or we will open fire"},
        {"15802,Go! Go! Go!"},
        {"34402,Police! Don't move!"},
        {"34403,Get outta the car with your hands in the air!"},
        {"15825,LSPD. Stop right... are you insane? You'll kill us all!"}
};
Credit goes to Rehasher and his Megaphone script!
(https://sampforum.blast.hk/showthread.php?tid=510802)


Re: Sounds - ikkentim - 16.11.2014

Quote:
Originally Posted by Abagail
Посмотреть сообщение
pawn Код:
new MegaphoneSounds[][] =
{
        // SPLIT COMMA
        // SOUND ID , DESCRIPTION
        {"9605,Give up. You're surrounded!"},
        {"9612,We know you're in there!"},
        {"10200,Hey you! Police. Stop!"},
        {"15800,This is the Los Santos Police Department; Stay where you are!"},
        {"15801,Freeze! Or we will open fire"},
        {"15802,Go! Go! Go!"},
        {"34402,Police! Don't move!"},
        {"34403,Get outta the car with your hands in the air!"},
        {"15825,LSPD. Stop right... are you insane? You'll kill us all!"}
};
Credit goes to Rehasher and his Megaphone script!
(https://sampforum.blast.hk/showthread.php?tid=510802)
Awesome, thanks!