20.12.2011, 19:22
Hola amigos quise poner para que cuando el player entre al coche le aparezca un sonido pero me tira dos errores
y en esa linea tengo asi :
saludos
_______________
Код:
C:\Users\Agustin\Desktop\samp 0\gamemodes\xdddd.pwn(6713) : error 017: undefined symbol "PlayAudioStreamForPlayer" C:\Users\Agustin\Desktop\samp 0\gamemodes\xdddd.pwn(6718) : error 017: undefined symbol "StopAudioStreamForPlayer"
Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
{
PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls");
}
// stop the internet stream
else if(oldstate == PLAYER_STATE_DRIVER || oldstate == PLAYER_STATE_PASSENGER)
{
StopAudioStreamForPlayer(playerid);
}
return 1;
}
_______________


