21.02.2012, 15:15
Quote:
try
pawn Код:
|
if i go in range it spams.. liek you see in picture please help first help gets Rep!
PHP код:
public OnPlayerUpdate(playerid)
{
if(!IsPlayerConnected(playerid)) return 0;
if(IsPlayerNPC(playerid)) return 1;
if(GetPlayerInterior(playerid) == 0) {
if(IsPlayerInRangeOfPoint(playerid,70.0,1300.4093,-1868.7646,17.4449)) {
if(!GetPVarInt(playerid,"alhambra")) {
SetPVarInt(playerid,"alhambra",0);
PlayAudioStreamForPlayer(playerid, "http://live.radioplayone.ro:9888/",1300.4093,-1868.7646,17.4449,70.0,true);
}
}
}
else {
if(GetPVarInt(playerid,"alhambra")) {
DeletePVar(playerid,"alhambra");
StopAudioStreamForPlayer(playerid);
}
}
return 1;
}