18.05.2014, 16:12
OMG LOL are you kiddin me?
just copy and paste
on top of your gamemode if you dont have it
copy and paste
somewhere in your gamemode
and copy and paste
under
and you are ready 
or just add it like filterscript in your server.cfg
just copy and paste
PHP код:
#include <zcmd>
copy and paste
PHP код:
COMMAND:playtube(playerid,params[])
return ShowPlayerDialog(playerid,DIALOG_MUSIC,DIALOG_STYLE_INPUT,"PlayTube by iRaiDeN", "Please input the URL of the song you want (Example: wwww.youtube.com/watch?v=VID Change the VID!)","Play","Cancel"), 1;
and copy and paste
PHP код:
if(dialogid == DIALOG_MUSIC)
{
if(!response) return 1;
if(!strlen(inputtext)) return ShowPlayerDialog(playerid,DIALOG_MUSIC,DIALOG_STYLE_INPUT,"PlayTube by iRaiDeN", "Please input the URL of the song you want (Example: wwww.youtube.com/watch?v=VID Change the VID!)","Play","Cancel");
if(strfind(inputtext,"www.*******.com",true) == -1) return ShowPlayerDialog(playerid,DIALOG_MUSIC,DIALOG_STYLE_INPUT,"PlayTube by iRaiDeN", "Please input the URL of the song you want (Example: wwww.youtube.com/watch?v=VID Change the VID!)","Play","Cancel");
new localURL[128];
strmid(localURL,inputtext,strfind(inputtext, "v=")+2,strfind(inputtext, "v=")+19);
new localString[128];
format(localString, 128, "http://mwrserver.com/*******.php?videoid=%s",localURL);
for(new i; i != MAX_PLAYERS; i++) PlayAudioStreamForPlayer(i,localString);
}
PHP код:
OnDialogResponse

or just add it like filterscript in your server.cfg
