13.11.2014, 15:41
Asн, un ejemplo:
Si hay algъn error, disculpa.
pawn Код:
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]);