[Pedido] Sound Previewer - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] Sound Previewer (
/showthread.php?tid=627034)
Sound Previewer -
capron - 23.01.2017
Alguйm tem o FS Sound Previewer ou algo parecido?
Pra quem nгo sabe й um FS para escutar todos os sons do SA:MP in-game.
OBS: jб procurei feito louco.
Respuesta: Sound Previewer -
SammyJ - 23.01.2017
@removed
links quebrados.
Re: Sound Previewer -
JhefTFJ - 23.01.2017
Quote:
Originally Posted by capron
Alguйm tem o FS Sound Previewer ou algo parecido?
Pra quem nгo sabe й um FS para escutar todos os sons do SA:MP in-game.
OBS: jб procurei feito louco.
|
Samp-Helper.com E o que eu mais uso no momento.
Re: Sound Previewer -
IlanZ - 23.01.2017
Quote:
Originally Posted by JhefTFJ
|
Carai tava tanto procurando isso
Muito obrigado cara!!!
Re: Sound Previewer -
BobbMarley - 23.01.2017
@offtpc;
Caralho olha esse som que loko: SOUND_REVERB_CAR_SCREECH_ID_28000;
Re: Sound Previewer -
capron - 23.01.2017
Fiz um bem bбsico aqui sу pra testar os sons in-game. Quem quiser..
PHP код:
#include <a_samp> // http://sa-mp.com/download.php
#include <zcmd> // https://sampforum.blast.hk/showthread.php?tid=576114
#include <sscanf2> // https://sampforum.blast.hk/showthread.php?tid=570927
public OnFilterScriptInit(){
print("\n");
return 1;
}
CMD:escutarsom(playerid, params[]){
new SomID;
if (sscanf(params, "i", SomID)) return SendClientMessage(playerid, 0xFFFF00FF, "Comando: {FFFFFF}/escutarsom [ID do Som]"), SendClientMessage(playerid, 0xFFFF00FF, "Use para escutar um som do SA:MP");{
PlayerPlaySound(playerid, SomID, 0, 0, 0);
GameTextForPlayer(playerid, "~r~tocando.", 3000, 1);
}
return 1;
}