is it impossible to loop sounds "rain.wav" and "rainroof.wav" already precached on plugin??
tried adding this but did not do anything:
PHP Code:
public ambience_loop()
{
set_task(50.0, "ambience_loop") // Lasts 50s then loop after 50s
//Go through all players
new players[32], iNum
get_players(players, iNum)
for(new i; i<iNum;i++)
{
client_cmd(i, "speak ambience/rain.wav")
client_cmd(i, "speak ambience/rainroof.wav")
}