2021-03-25, 09:53 PM
(2021-03-25, 09:12 PM)DandoRYx Wrote:PHP Code:public OnPlayerRequestClass(playerid, classid)
{
// your skin code...
if(GetPVarInt(playerid, "playedSong") == 0)
{
SetPVarInt(playerid, "playedSong", 1);
PlayAudioStreamForPlayer(playerid, YOUR_AUDIO_STREAM);
}
}
public OnPlayerSpawn(playerid)
{
// your spawn code...
StopAudioStreamForPlayer(playerid);
SetPVarInt(playerid, "playedSong", 0);
return 1;
}
hi im not sure if im doing it right but, is it something like this?
PHP Code:
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 2014.6443,1077.2521,48.8207);?
SetPlayerFacingAngle(playerid, 357.1971);
SetPlayerCameraPos(playerid,? 2014.9019, 1083.7701, 49.8680);?
SetPlayerCameraLookAt(playerid, 2014.8658, 1082.7725, 49.7031);?
if(GetPVarInt(playerid, "playedSong") == 0)
? ? {
? ? ? ? SetPVarInt(playerid, "playedSong", 1);
? ? ? ? PlayAudioStreamForPlayer(playerid, "https://www.youtube.com/watch?v=y6120QOlsfU");
? ? }
? ?
? return 1;
}
I want to stream the audio from youtube?if possible, or if i do download it how do i stream it during skin selection?