16.09.2011, 21:35
Nova Versгo Lanзada
- Informaзхes no inнcio do tуpico.- Pequeno script como exemplo:
pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{
CreateRadioList("Rбdio Oglez");
AddMusicInRadio("Sweet Child of' Mine","http://dc310.4shared.com/img/98202732/5af79ad3/dlink__2Fdownload_2F_5F4qRFoTM_3Ftsid_3D20110914-012524-eb7cb53c/preview.mp3");
CloseRadio();
CreateRadioList("Rбdio Carol");
AddMusicInRadio("Las Friend Nigth", "http://dc224.4shared.com/img/444261751/8c073a6d/dlink__2Fdownload_2FK_5FX5u1Mo_3Ftsid_3D20110914-012839-6d520c0f/preview.mp3");
CloseRadio();
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext,"/m1", true))
{
StopAudioStreamForPlayer(playerid); StartRadioForPlayer(playerid, GetMusicForName("Sweet Child of' Mine"));
return 1;
}
if(!strcmp(cmdtext,"/m2", true))
{
StopAudioStreamForPlayer(playerid); StartRadioForPlayer(playerid, GetMusicForName("Las Friend Nigth"));
return 1;
}
return false;
}