Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Admin Music Stream by EvanA(Evan Abagail)
- // Version 1.0
- #define FILTERSCRIPT
- #include <a_samp>
- #if defined FILTERSCRIPT
- #define zcmd
- #define pAdmin
- CMD:playall(playerid, params[])
- {
- foreach(Player, i)
- {
- if (PlayerInfo[playerid][pAdmin] >= 999999)
- {
- if(isnull(params)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /playall [Link]");
- PlayAudioStreamForPlayer(i, params);
- }
- }
- return 1;
- }
- #endif
Advertisement
Add Comment
Please, Sign In to add comment