SA-MP Forums Archive
SFX - 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: SFX (/showthread.php?tid=659204)



SFX - Zeus666 - 27.09.2018

Hi. Where can I find this list

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


but hearable? I don't know how each sounds.


Re: SFX - KinderClans - 27.09.2018

pawn Код:
new soundid;

PlayerPlaySound(playerid, soundid, 0.0, 0.0, 10.0);
Place it in a command.


Re: SFX - Zeus666 - 27.09.2018

Quote:
Originally Posted by KinderClans
Посмотреть сообщение
pawn Код:
new soundid;

PlayerPlaySound(playerid, soundid, 0.0, 0.0, 10.0);
Place it in a command.
This isn't what I asked.

I asked if there's a ******* playlist to hear those sounds.

I'm not that crazy to put every sound inside a cmd to listen them


Re: SFX - 1nspire - 27.09.2018

Chill out lol, you don't have to "put all sounds in a comand", just go In-Game and play each sound ID as if you were to do on a website.

Код:
CMD:play(playerid, params[])
{
  new soundid;
  if(sscanf(params, "i", soundid)) return SendClientMessage(playerid, -1, "USAGE: /play [soundid]");
  PlayerPlaySound(playerid, soundid, 0.0, 0.0, 10.0);
  return 1;
}



Re: SFX - Shaneisace - 27.09.2018

This? https://sampforum.blast.hk/showthread.php?tid=69572

If you download the file in the last post, it has the .wav files in it as well.



EDIT: might be previews but in the Tools and Files section you should be able to find some previewer in there.


Re: SFX - 1nspire - 27.09.2018

Shaneisace is right, but this only contains 47 sounds and most of the new ones aren't there, sadly.


Re: SFX - Zeus666 - 27.09.2018

Quote:
Originally Posted by KinderClans
Посмотреть сообщение
pawn Код:
new soundid;

PlayerPlaySound(playerid, soundid, 0.0, 0.0, 10.0);
Place it in a command.
after what 1nspire told me ,your answer is the best.

thanks