Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <zcmd>
- #include <youtube>
- #define DIALOG_CD1 5
- #define DIALOG_CD2 6
- #define DIALOG_CD3 7
- #define COLOR_YELOW 0xE6E600FF
- CMD:cd(playerid,params[])
- {
- if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xff0000aa, " [BM-RP] Niste u vozilu!");
- ShowPlayerDialog(playerid, DIALOG_CD1, DIALOG_STYLE_LIST, "Izaberite vrstu muzike", "Narodna\nZabavna" , "Uredu", "Izlaz");
- return 1;
- }
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- {
- if(dialogid == DIALOG_CD1)
- {
- if(response)
- {
- if(listitem == 0)
- {
- ShowPlayerDialog(playerid, DIALOG_CD2, DIALOG_STYLE_LIST, "Izaberite pjesmu", "Saban Saulic-Zal\nSaban Saulic-Stacu kuci tako rano\nJovan Perisic-Sve cu da razbijem\nZorica Brunclik-A tebe nema\nVesna Zmijanac-Kazni me\nMitar Miric-Nemoze nam niko nista\nAcko Nezirovic-Da si moja" , "Uredu", "Izlaz");
- }
- }
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment