06.03.2013, 23:55
Here I was exploring Sound ID's and I needed this sound:
SOUND_PED_HIT_WATER_SPLASH 1144
for my fishing feature, but after I tested the sound with my sound testing CMD it didn't play any sound atleast not for me. Other sounds so far have played well.
Not a big or major bug, but still would be grate if that sound works too. 
((When I jump to water I hear the splash))
SOUND_PED_HIT_WATER_SPLASH 1144
for my fishing feature, but after I tested the sound with my sound testing CMD it didn't play any sound atleast not for me. Other sounds so far have played well.
Код:
CMD:playsound(playerid, params[])
{
if (IsPlayerAdminLvl(playerid, 2))
{
new soundid;
if (sscanf(params, "i", soundid))
{
HowToUse(playerid, "/playsound [SOUND ID]");
}
else
{
PlayerPlaySound(playerid, soundid, 0, 0 ,0);
}
}
return 1;
}

((When I jump to water I hear the splash))

