Quote:
Originally Posted by RxErT
PHP код:
public OnPlayerConnect(playerid)//We will make it play a music when a player joins..
{
PlayAudioStreamForPlayer(playerid, "the link here");//put a music link with .mp3 format, to start playing for player who joins.
return 1;
}
public OnPlayerSpawn(playerid)
{
StopAudioStreamForPlayer(playerid);//When player is spawned the music will be stoped.
return 1;
}
|
Can you just stop saying the same exact thing that has already been said ?