Sound id question - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Sound id question (
/showthread.php?tid=322401)
Sound id question -
new121 - 02.03.2012
anyone know what sound id that ding sound is that happens when people get shot?
[ame]http://www.youtube.com/watch?v=NPau4vqfg0g&feature=g-u-u&context=G24649c3FUAAAAAAADAA[/ame]
Re: Sound id question -
Walsh - 02.03.2012
Maybe one of these?
Код:
Random/Extra:
3200 - Air horn
3201 - Air horn (longer then previous one)
3400 - Air conditioning
3401 - Continuous ringing bell
3600 - Calling tone
3800 - Videotape (continuous)
4400 - Barber trimming hair (electric razor).
6000 - Blast door sliding
6001 - Repeating siren (repeats every 2 seconds).
6002 - Heavy door
6003 - Electricity (could be used for tazer)
6400 - Blip ('door buzzer' in game files)
6401 - Lift bell rings
39000 - "What would your mother think?"
39002 - "Filth like you always have to pay for sex!"
Re: Sound id question -
new121 - 02.03.2012
How can I hear those though? Is there a program with the new ones?
Re: Sound id question -
Walsh - 02.03.2012
I found this in the General Reference section a lot to go through, but has a lot of them.
Sound ID's. About listening to them, you could make a command to try them out in-game.
Not tested.
pawn Код:
CMD:sound(playerid,params[])
{
new soundid;
if(isnull(params))
{
return SendClientMessage(playerid,-1,"USAGE: /sound [soundid]");
}
else
{
new string[124];
PlayerPlaySound(playerid,soundid,0,0,0);
format(string,sizeof(string),"You are listening to Sound ID: %d",soundid);
SendClientMessage(playerid,-1,string);
return 1;
}
return 1;
}
Re: Sound id question -
Walsh - 02.03.2012
I recognize this sound from the Gym in the story mode, it's just that if all else fails, it could have just been sound editing from the author of the video to add a nice effect. ^_^ Gotta take that into account.
Re: Sound id question -
new121 - 02.03.2012
Quote:
Originally Posted by Walsh
I recognize this sound id from the Gym in the story mode, it's just that if all else fails, it could have just been sound editing from the author of the video to add a nice effect. ^_^ Gotta take that into account.
|
nah all of the clans attack and defend servers have that gonna go test that cmd now though
Re: Sound id question -
Whitetiger - 02.03.2012
soundID: 17802
Re: Sound id question -
new121 - 02.03.2012
Quote:
Originally Posted by whitetigerswt
soundID: 17802
|
lol thanks whitetigers, you answered me on the U forums too lol