Advertisement
Guest User

Untitled

a guest
May 29th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. CMD:setstation(playerid, params[]) {
  2. if(!IsPlayerInAnyVehicle(playerid)) {
  3. return SendClientMessageEx(playerid, COLOR_GRAD2, "Ban can trong xe de su dung dai phat thanh.");
  4. }
  5. ShowPlayerDialog(playerid,SETSTATION,DIALOG_STYLE_LIST,"Radio Menu","Genres\nTop 50 Stations\nSearch\nK-LSR\nNick's Radio\nCustom Audio URL\nLink download nhac","Lua chon", "Dong");
  6. return 1;
  7. }
  8.  
  9. CMD:audiourl(playerid, params[])
  10. {
  11. if(PlayerInfo[playerid][pAdmin] >= 4) {
  12.  
  13. new range;
  14. if(sscanf(params, "d", range)) {
  15. SendClientMessageEx(playerid, COLOR_GREY, "SU DUNG: /audiourl [pham vi].");
  16. return 1;
  17. }
  18.  
  19. SetPVarInt(playerid, "aURLrange", range);
  20. ShowPlayerDialog(playerid, AUDIO_URL, DIALOG_STYLE_INPUT, "Audio URL", "Nhap URL Am Thanh.mp3 vao", "Dong y", "Huy bo");
  21. }
  22. else {
  23. SendClientMessageEx(playerid, COLOR_GRAD1, " Ban khong duoc phep su dung lenh nay !");
  24. return 1;
  25. }
  26. return 1;
  27. }
  28. CMD:setboombox(playerid, params[])
  29. {
  30. if(GetPVarType(playerid, "pBoomBox"))
  31. {
  32. ShowPlayerDialog(playerid,SETSTATION,DIALOG_STYLE_LIST,"Radio Menu","Genres\nTop 50 Stations\nSearch\nK-LSR\nNick's Radio\nLink download nhac","Lua chon", "Dong");
  33. }
  34. else
  35. {
  36. SendClientMessage(playerid, COLOR_GRAD2, "Ban khong co Boom box duoc dat ra!");
  37. }
  38. return 1;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement