10.11.2014, 16:33
Me pasan el sonido de telefono en samp, de cualquier telefono..., osea cuando timbra.
{20600, !"", !"Cell phone ringing"},
{3600, !"", !"Cell Phone Dialling"},,
new Timer_Telefono[MAX_PLAYERS];//variable global
//dentro de alguna funcion/nes.______
PlayerPlaySound(playerid,20600, 0.0,0.0,0.0);//el sonido que dijo contakon
Timer_Telefono[playerid] = SetTimerEx("Reproducir", 1000, true, "i", playerid);
//_____________________________
stock Reproducir(playerid){return PlayerPlaySound(playerid,20600, 0.0,0.0,0.0);}
//Cuando lo quieras parar usa:
KillTimer(Timer_Telefono[playerid]);