Hali. Nem teszteltem de szerintem mûködik :)
#include <a_samp>
#define DIALOG_URL 4324
CMD:music(playerid)
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,\"Nem vagy admin!\");
ShowPlayerDialog(playerid,DIALOG_URL,DIALOG_STYLE_LIST,\"Zenék\",\"Lady Gaga - Wat the fuck\\nMózes - kivagyok én\\nJézus - Krisztus az\",\"Választ\",\"Mégse\");
return 1;
}
CMD:zeneki(playerid)
{
SendClientMessage(playerid,-1,\"Kikapcsoltad a zenét!\");
StopAudioStreamForPlayer(playerid);
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_URL)
{
if(response)
{
if(listitem == 0) //Ha az elsõre vagyis a Lady Gagára kattintott.
{
new name[MAX_PLAYER_NAME],string[128];
GetPlayerName(playerid,name,sizeof(name));
format(string,sizeof(string),\"RCON %s Elindította a Lady Gaga - Wat the fuck címû számot.\",name);
SendClientMessageToAll(-1,string);
for(new i;i<MAX_PLAYERS;i++) PlayAudioStreamForPlayer(i, \"url link ide:\");
}
if(listitem == 1) //Ha a másodikra vagyis a Mózesre kattintott.
{
new name[MAX_PLAYER_NAME],string[128];
GetPlayerName(playerid,name,sizeof(name));
format(string,sizeof(string),\"RCON %s Elindította a Mózes - kivagyok én címû számot.\",name);
SendClientMessageToAll(-1,string);
for(new i;i<MAX_PLAYERS;i++)
{
StopAudioStreamForPlayer(i);
PlayAudioStreamForPlayer(i, \"url link ide:\");
}
}
}
}
return 1;
}
Hali. Nem teszteltem de szerintem mûködik :)
#include <a_samp>
#define DIALOG_URL 4324
CMD:music(playerid)
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,\"Nem vagy admin!\");
ShowPlayerDialog(playerid,DIALOG_URL,DIALOG_STYLE_LIST,\"Zenék\",\"Lady Gaga - Wat the fuck\\nMózes - kivagyok én\\nJézus - Krisztus az\",\"Választ\",\"Mégse\");
return 1;
}
CMD:zeneki(playerid)
{
SendClientMessage(playerid,-1,\"Kikapcsoltad a zenét!\");
StopAudioStreamForPlayer(playerid);
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_URL)
{
if(response)
{
if(listitem == 0) //Ha az elsõre vagyis a Lady Gagára kattintott.
{
new name[MAX_PLAYER_NAME],string[128];
GetPlayerName(playerid,name,sizeof(name));
format(string,sizeof(string),\"RCON %s Elindította a Lady Gaga - Wat the fuck címû számot.\",name);
SendClientMessageToAll(-1,string);
for(new i;i<MAX_PLAYERS;i++) PlayAudioStreamForPlayer(i, \"url link ide:\");
}
if(listitem == 1) //Ha a másodikra vagyis a Mózesre kattintott.
{
new name[MAX_PLAYER_NAME],string[128];
GetPlayerName(playerid,name,sizeof(name));
format(string,sizeof(string),\"RCON %s Elindította a Mózes - kivagyok én címû számot.\",name);
SendClientMessageToAll(-1,string);
for(new i;i<MAX_PLAYERS;i++) PlayAudioStreamForPlayer(i, \"url link ide:\");
}
}
}
return 1;
}
Ez szép, csak az vele a baj, hogy minden egyes zene indításkor be kell írnia hogy \"/zeneki\" vagyis ha egymás után sok zeét indít, mindig ki kell kapcsolgatni, ami elég zavaró lehhet :D