Guest User

Untitled

a guest
Jul 3rd, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1.  
  2.  
  3. #include <a_samp>
  4. #include <zcmd>
  5. #include <youtube>
  6. #define DIALOG_CD1 5
  7. #define DIALOG_CD2 6
  8. #define DIALOG_CD3 7
  9. #define COLOR_YELOW 0xE6E600FF
  10.  
  11.  
  12. CMD:cd(playerid,params[])
  13. {
  14. if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xff0000aa, " [BM-RP] Niste u vozilu!");
  15. ShowPlayerDialog(playerid, DIALOG_CD1, DIALOG_STYLE_LIST, "Izaberite vrstu muzike", "Narodna\nZabavna" , "Uredu", "Izlaz");
  16.  
  17. return 1;
  18. }
  19.  
  20.  
  21.  
  22. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  23. {
  24. if(dialogid == DIALOG_CD1)
  25. {
  26. if(response)
  27. {
  28. if(listitem == 0)
  29. {
  30. 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");
  31.  
  32. }
  33. }
  34. }
  35.  
  36. return 1;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment