SA-MP Forums Archive
help me? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: help me? (/showthread.php?tid=422514)



help me? - Jamixd1 - 14.03.2013

Can some one help me real quick i have a problem i want to make music play at my login/registered screen please some help me send me a pwn code tell me where to set it under please Thanks in advance if you helped


Re: help me? - Krakuski - 14.03.2013

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    PlayAudioStreamForPlayer(playerid, "MP3 Link here or a Live Station"); //Insert a Link here to play for the player (I'd recommend using http://www.mp3fiber.com for easy links from *******)
    return 1;
}

public OnPlayerSpawn(playerid)
{
    StopAudioStreamForPlayer(playerid); // Nothing goes here except for this.
    return 1;
}