Jump to content

Question

Posted

Salut cum fac si eu cand te urci in masina sa inceapa sa cante muzica.

am gasit ceva pe net pentru muzica in alhambra , da nu stiu cum sa fac pentru masina

public OnPlayerUpdate(playerid)
{
	if(!IsPlayerConnected(playerid)) return 0;
	if(IsPlayerNPC(playerid)) return 1;

	// Handle playing SomaFM at the alhambra
	if(GetPlayerInterior(playerid) == 17) {
	    if(IsPlayerInRangeOfPoint(playerid,70.0,489.5824,-14.7563,1000.6797)) { // alhambra middle
	    	if(!GetPVarInt(playerid,"alhambra")) {
	    	    SetPVarInt(playerid,"alhambra",1);
	    	    PlayAudioStreamForPlayer(playerid, "http://www.radio-hit.ro/asculta.m3u",480.9575,-3.5402,1002.0781,40.0,true);
			}
		}
	}
	else {
		if(GetPVarInt(playerid,"alhambra")) {
	  		DeletePVar(playerid,"alhambra");
	   		StopAudioStreamForPlayer(playerid);
		}
	}

	return 1;
}

1 answer to this question

Recommended Posts

Posted

Cel mai simplu posibil.

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    PlayAudioStreamForPlayer(playerid, "http://www.radio-hit.ro/asculta.m3u",480.9575,-3.5402,1002.0781,40.0,true);
    return 1;
}

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.