ZCMD and 0.3e
#1

Hello, I found this "******* Player" but the problem is that I need to get it to ZCMD and 0.3e

Quote:

//================================================== ============================
// ******* Player v1.0 by usrb1n !
// http://forum.sa-mp.com/member.php?u=122322
//================================================== ============================
// Includes & Defines
//================================================== ============================
#include <a_samp>
#include <a_http>
#include <core>
#include <float>
#define U2BDIAG 6958 //DialogID used
new PlayerU2B[MAX_PLAYERS];
new PlayerU2BLink[MAX_PLAYERS][32];
new U2BRadius[MAX_PLAYERS][16];
forward U2BInfo(playerid, response_code, data[]);
#define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == '\0') && (dcmd_%1(playerid, ""))) || (((%3)[(%2) + 1] == ' ') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1
#define WHOMADETHIS "******* Player v1.0 by {FF0000}us{FFEF00}rb{1A00FF}1n"

public OnFilterScriptInit()
{
print("******* player by usrb1n has been loaded");
}
public OnFilterScriptExit()
{
print("******* player by usrb1n has been unloaded");
}

//================================================== ============================
// Commands
//================================================== ============================
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(*******, 7, cmdtext);
dcmd(stopu2b, 7, cmdtext);
return 0;
}

dcmd_stopu2b(playerid, params[])
{
if(strlen(params)) return 0;
PlayAudioStreamForPlayer(playerid, "Music was stoped by player.");
return 1;
}

dcmd_*******(playerid, params[])
{
if(strlen(params)) return 0;
if(!IsPlayerAdmin(playerid))
{
SendClientMessage(playerid, 0xD776FF, "Only RCON admins can use this command.");
return 1;
}
ShowPlayerDialog(playerid, U2BDIAG, DIALOG_STYLE_LIST, WHOMADETHIS, "{46BEE6}Play for yourself (The song will be played only for you)\n{ED954E}Play for someone (The song will be played for the ID you input in the textbox)\n{46BEE6}Play for a location (The song will be played with the radius you choose)\n{ED954E}Play for all (The song will be played for all the players in the server)", "Select", "Cancel");
return 1;
}
//================================================== ============================
// Dialogs
//================================================== ============================
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == U2BDIAG && response)
{
switch(listitem)
{
case 0:
{
PlayerU2B[playerid] = 1;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for yourself:","Play","Cancel");
return 1;
}
case 1:
{
PlayerU2B[playerid] = 2;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for a player:","Play","Cancel");
return 1;
}
case 2:
{
PlayerU2B[playerid] = 3;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for your location:","Play","Cancel");
return 1;
}
case 3:
{
PlayerU2B[playerid] = 4;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for the whole server:","Play","Cancel");
return 1;
}
}
}
if(dialogid == U2BDIAG+1 && response)
{
if(strlen(inputtext))
{
new result[128], videostr[128];
strmid(result,inputtext,31,44,strlen(inputtext));
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",result);
strmid(PlayerU2BLink[playerid], result, 0, 32);
if (PlayerU2B[playerid] == 1)
{
PlayerU2B[playerid] = 11;
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
}
else if (PlayerU2B[playerid] == 2)
{
PlayerU2B[playerid] = 22;
ShowPlayerDialog(playerid,U2BDIAG+2,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Enter the player id you want to play the song for:","Play","Cancel");
new string[128];
format(string, sizeof(string), "%s", PlayerU2BLink[playerid]);
}
else if (PlayerU2B[playerid] == 3)
{
PlayerU2B[playerid] = 33;
ShowPlayerDialog(playerid,U2BDIAG+3,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Enter the radius in which you want the song to be heard:","Play","Cancel");
}
else if (PlayerU2B[playerid] == 4)
{
PlayerU2B[playerid] = 44;
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
}
}
return 1;

}
if(dialogid == U2BDIAG+2 && response)
{
new gpid = strval(inputtext);
new videostr[128];
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
HTTP(gpid,HTTP_GET,videostr,"","U2BInfo");
return 1;

}
if(dialogid == U2BDIAG+3 && response)
{
strmid(U2BRadius[playerid], inputtext, 0, 32);
new videostr[128];
PlayerU2B[playerid] = 333;
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
return 1;

}


return 0;
}

//================================================== ============================
// Functions
//================================================== ============================

public U2BInfo(playerid, response_code, data[])
{
if(response_code == 200)
{
new result[33], u2bstr[33]; new streamedurl[128];
new crypted = strfind(data, "\"h\"", true, -1);
strmid(result,data,crypted+7,crypted+39,strlen(dat a));
format(u2bstr,sizeof(u2bstr), "%s", result);
format(streamedurl, sizeof(streamedurl), "http://www.*******-mp3.org/get?video_id=%s&h=%s",PlayerU2BLink[playerid], u2bstr);
if(PlayerU2B[playerid] == 11)
{
PlayAudioStreamForPlayer(playerid, streamedurl);
return 1;
}
else if(PlayerU2B[playerid] == 22)
{
PlayAudioStreamForPlayer(playerid, streamedurl);
return 1;
}
else if(PlayerU2B[playerid] == 33)
{

PlayAudioStreamForPlayer(playerid, streamedurl);
return 1;
}
else if(PlayerU2B[playerid] == 44)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
PlayAudioStreamForPlayer(i, streamedurl);
return 1;
}
else return 1;
}
}
else if(PlayerU2B[playerid] == 333)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
new radius = strval(U2BRadius[playerid]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, radius , X, Y, Z))
{
PlayAudioStreamForPlayer(i, streamedurl, X, Y, Z, radius, 1);
return 1;
}
else return 1;
}
}
}

}
else
{

new u2bstring[128];
format(u2bstring,sizeof(u2bstring)," {FF0000}******* link error\n\n{FFFFFF}This ******* link is broken or uses some copyright protection, we can't convert it to mp3 for streaming. Try another link please. ");
ShowPlayerDialog(playerid,61,DIALOG_STYLE_MSGBOX ,WHOMADETHIS,u2bstring, "Exit", "");
}
return 1;
}

Reply
#2

mmm... Download zcmd include from here then add it to pawno->includes then add #include <zcmd> in the top of your script.. and viola you can now use zcmd.
Reply
#3

Quote:
Originally Posted by Rayan_black
Посмотреть сообщение
mmm... Download zcmd include from here then add it to pawno->includes then add #define <zcmd> in the top of your script.. and viola you can now use zcmd.
Ok so i dont need to uptade to 0.3e?
Reply
#4

Just update your server kit from here and you have 0.3e version.
Reply
#5

Quote:
Originally Posted by B-Matt
Посмотреть сообщение
Just update your server kit from here and you have 0.3e version.
I have 0.3e verison but it's not working, and i have add the name to server.cfg but it's not working

I need help very fast, can someone help me fast?
Reply
#6

Ok! I worked a little at your script and i did this: http://www.solidfiles.com/d/81cd9d4a09/

pawn Код:
//================================================== ============================
// ******* Player v1.0 by usrb1n !
// http://forum.sa-mp.com/member.php?u=122322
//================================================== ============================
// Includes & Defines
//================================================== ============================
#include    <       a_samp      >
#include    <       a_http      >
#include    <       core        >
#include    <       float       >
#include    <       zcmd        >
#define     U2BDIAG             6958 //DialogID used
#define     WHOMADETHIS         "******* Player v1.0 by {FF0000}us{FFEF00}rb{1A00FF}1n"

new PlayerU2B[MAX_PLAYERS],
    PlayerU2BLink[MAX_PLAYERS][32],
    U2BRadius[MAX_PLAYERS][16];
   
forward U2BInfo(playerid, response_code, data[]);

public OnFilterScriptInit() print("******* player by usrb1n has been loaded");
public OnFilterScriptExit() print("******* player by usrb1n has been unloaded");

//================================================== ============================
// Commands
//================================================== ============================

CMD:stopu2b(playerid, params[])
{
    if(strlen(params)) return 0;
    PlayAudioStreamForPlayer(playerid, "Music was stoped by player.");
    return ( 1 );
}
CMD:*******(playerid, params[])
{
    if(strlen(params)) return 0;
    if(!IsPlayerAdmin(playerid))
    {
        SendClientMessage(playerid, 0xD776FF, "Only RCON admins can use this command.");
        return ( 1 );
    }
    ShowPlayerDialog(playerid, U2BDIAG, DIALOG_STYLE_LIST, WHOMADETHIS, "{46BEE6}Play for yourself (The song will be played only for you)\n{ED954E}Play for someone (The song will be played for the ID you input in the textbox)\n{46BEE6}Play for a location (The song will be played with the radius you choose)\n{ED954E}Play for all (The song will be played for all the players in the server)", "Select", "Cancel");
    return ( 1 );
}

//================================================== ============================
// Dialogs
//================================================== ============================
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == U2BDIAG && response)
    {
        switch(listitem)
        {
            case 0:
            {
            PlayerU2B[playerid] = 1;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for yourself:","Play","Cancel");
            return 1;
            }
            case 1:
            {
            PlayerU2B[playerid] = 2;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for a player:","Play","Cancel");
            return 1;
            }
            case 2:
            {
            PlayerU2B[playerid] = 3;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for your location:","Play","Cancel");
            return 1;
            }
            case 3:
            {
            PlayerU2B[playerid] = 4;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for the whole server:","Play","Cancel");
            return 1;
            }
        }
    }
    if(dialogid == U2BDIAG+1 && response)
    {
        if(strlen(inputtext))
        {
            new result[128], videostr[128];
            strmid(result,inputtext,31,44,strlen(inputtext));
            format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",result);
            strmid(PlayerU2BLink[playerid], result, 0, 32);
            if (PlayerU2B[playerid] == 1)
            {
                PlayerU2B[playerid] = 11;
                HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
            }
            else if (PlayerU2B[playerid] == 2)
            {
                PlayerU2B[playerid] = 22;
                ShowPlayerDialog(playerid,U2BDIAG+2,DIALOG_STYLE_INPUT,WHOMADETHIS,"Enter the player id you want to play the song for:","Play","Cancel");
                new string[128];
                format(string, sizeof(string), "%s", PlayerU2BLink[playerid]);
            }
            else if (PlayerU2B[playerid] == 3)
            {
                PlayerU2B[playerid] = 33;
                ShowPlayerDialog(playerid,U2BDIAG+3,DIALOG_STYLE_INPUT,WHOMADETHIS,"Enter the radius in which you want the song to be heard:","Play","Cancel");
            }
            else if (PlayerU2B[playerid] == 4)
            {
                PlayerU2B[playerid] = 44;
                HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
            }
        }
        return 1;
    }
    if(dialogid == U2BDIAG+2 && response)
    {
        new gpid = strval(inputtext);
        new videostr[128];
        format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
        HTTP(gpid,HTTP_GET,videostr,"","U2BInfo");
        return 1;
    }
    if(dialogid == U2BDIAG+3 && response)
    {
        strmid(U2BRadius[playerid], inputtext, 0, 32);
        new videostr[128];
        PlayerU2B[playerid] = 333;
        format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
        HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
        return 1;
    }
    return 0;
}
//================================================== ============================
// Functions
//================================================== ============================

public U2BInfo(playerid, response_code, data[])
{
    if(response_code == 200)
    {
        new result[33], u2bstr[33]; new streamedurl[128];
        new crypted = strfind(data, "\"h\"", true, -1);
        strmid(result,data,crypted+7,crypted+39,strlen(data));
        format(u2bstr,sizeof(u2bstr), "%s", result);
        format(streamedurl, sizeof(streamedurl), "http://www.*******-mp3.org/get?video_id=%s&h=%s",PlayerU2BLink[playerid], u2bstr);
        if(PlayerU2B[playerid] == 11)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 22)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 33)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 44)
        {
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    PlayAudioStreamForPlayer(i, streamedurl);
                    return ( 1 );
                }
                else return ( 1 );
            }
        }
        else if(PlayerU2B[playerid] == 333)
        {
            new Float:X, Float:Y, Float:Z;
            GetPlayerPos(playerid, X, Y, Z);
            new radius = strval(U2BRadius[playerid]);
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    if(IsPlayerInRangeOfPoint(i, radius , X, Y, Z))
                    {
                        PlayAudioStreamForPlayer(i, streamedurl, X, Y, Z, radius, 1);
                        return ( 1 );
                    }
                    else return ( 1 );
                }
            }
        }
    }
    else
    {
        new u2bstring[128];
        format(u2bstring,sizeof(u2bstring),"     {FF0000}******* link error\n\n{FFFFFF}This ******* link is broken or uses some copyright protection, we can't convert it to mp3 for streaming. Try another link please. ");
        ShowPlayerDialog(playerid,61,DIALOG_STYLE_MSGBOX ,WHOMADETHIS,u2bstring, "Exit", "");
    }
    return ( 1 );
}
Reply
#7

Quote:
Originally Posted by nGen.SoNNy
Посмотреть сообщение
Ok! I worked a little at your script and i did this: http://www.solidfiles.com/d/81cd9d4a09/

pawn Код:
//================================================== ============================
// ******* Player v1.0 by usrb1n !
// http://forum.sa-mp.com/member.php?u=122322
//================================================== ============================
// Includes & Defines
//================================================== ============================
#include    <       a_samp      >
#include    <       a_http      >
#include    <       core        >
#include    <       float       >
#include    <       zcmd        >
#define     U2BDIAG             6958 //DialogID used
#define     WHOMADETHIS         "******* Player v1.0 by {FF0000}us{FFEF00}rb{1A00FF}1n"

new PlayerU2B[MAX_PLAYERS],
    PlayerU2BLink[MAX_PLAYERS][32],
    U2BRadius[MAX_PLAYERS][16];
   
forward U2BInfo(playerid, response_code, data[]);

public OnFilterScriptInit() print("******* player by usrb1n has been loaded");
public OnFilterScriptExit() print("******* player by usrb1n has been unloaded");

//================================================== ============================
// Commands
//================================================== ============================

CMD:stopu2b(playerid, params[])
{
    if(strlen(params)) return 0;
    PlayAudioStreamForPlayer(playerid, "Music was stoped by player.");
    return ( 1 );
}
CMD:*******(playerid, params[])
{
    if(strlen(params)) return 0;
    if(!IsPlayerAdmin(playerid))
    {
        SendClientMessage(playerid, 0xD776FF, "Only RCON admins can use this command.");
        return ( 1 );
    }
    ShowPlayerDialog(playerid, U2BDIAG, DIALOG_STYLE_LIST, WHOMADETHIS, "{46BEE6}Play for yourself (The song will be played only for you)\n{ED954E}Play for someone (The song will be played for the ID you input in the textbox)\n{46BEE6}Play for a location (The song will be played with the radius you choose)\n{ED954E}Play for all (The song will be played for all the players in the server)", "Select", "Cancel");
    return ( 1 );
}

//================================================== ============================
// Dialogs
//================================================== ============================
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == U2BDIAG && response)
    {
        switch(listitem)
        {
            case 0:
            {
            PlayerU2B[playerid] = 1;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for yourself:","Play","Cancel");
            return 1;
            }
            case 1:
            {
            PlayerU2B[playerid] = 2;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for a player:","Play","Cancel");
            return 1;
            }
            case 2:
            {
            PlayerU2B[playerid] = 3;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for your location:","Play","Cancel");
            return 1;
            }
            case 3:
            {
            PlayerU2B[playerid] = 4;
            ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_INPUT,WHOMADETHIS,"Paste the ******* link you want to play for the whole server:","Play","Cancel");
            return 1;
            }
        }
    }
    if(dialogid == U2BDIAG+1 && response)
    {
        if(strlen(inputtext))
        {
            new result[128], videostr[128];
            strmid(result,inputtext,31,44,strlen(inputtext));
            format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",result);
            strmid(PlayerU2BLink[playerid], result, 0, 32);
            if (PlayerU2B[playerid] == 1)
            {
                PlayerU2B[playerid] = 11;
                HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
            }
            else if (PlayerU2B[playerid] == 2)
            {
                PlayerU2B[playerid] = 22;
                ShowPlayerDialog(playerid,U2BDIAG+2,DIALOG_STYLE_INPUT,WHOMADETHIS,"Enter the player id you want to play the song for:","Play","Cancel");
                new string[128];
                format(string, sizeof(string), "%s", PlayerU2BLink[playerid]);
            }
            else if (PlayerU2B[playerid] == 3)
            {
                PlayerU2B[playerid] = 33;
                ShowPlayerDialog(playerid,U2BDIAG+3,DIALOG_STYLE_INPUT,WHOMADETHIS,"Enter the radius in which you want the song to be heard:","Play","Cancel");
            }
            else if (PlayerU2B[playerid] == 4)
            {
                PlayerU2B[playerid] = 44;
                HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
            }
        }
        return 1;
    }
    if(dialogid == U2BDIAG+2 && response)
    {
        new gpid = strval(inputtext);
        new videostr[128];
        format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
        HTTP(gpid,HTTP_GET,videostr,"","U2BInfo");
        return 1;
    }
    if(dialogid == U2BDIAG+3 && response)
    {
        strmid(U2BRadius[playerid], inputtext, 0, 32);
        new videostr[128];
        PlayerU2B[playerid] = 333;
        format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
        HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
        return 1;
    }
    return 0;
}
//================================================== ============================
// Functions
//================================================== ============================

public U2BInfo(playerid, response_code, data[])
{
    if(response_code == 200)
    {
        new result[33], u2bstr[33]; new streamedurl[128];
        new crypted = strfind(data, "\"h\"", true, -1);
        strmid(result,data,crypted+7,crypted+39,strlen(data));
        format(u2bstr,sizeof(u2bstr), "%s", result);
        format(streamedurl, sizeof(streamedurl), "http://www.*******-mp3.org/get?video_id=%s&h=%s",PlayerU2BLink[playerid], u2bstr);
        if(PlayerU2B[playerid] == 11)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 22)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 33)
        {
            PlayAudioStreamForPlayer(playerid, streamedurl);
            return ( 1 );
        }
        else if(PlayerU2B[playerid] == 44)
        {
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    PlayAudioStreamForPlayer(i, streamedurl);
                    return ( 1 );
                }
                else return ( 1 );
            }
        }
        else if(PlayerU2B[playerid] == 333)
        {
            new Float:X, Float:Y, Float:Z;
            GetPlayerPos(playerid, X, Y, Z);
            new radius = strval(U2BRadius[playerid]);
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    if(IsPlayerInRangeOfPoint(i, radius , X, Y, Z))
                    {
                        PlayAudioStreamForPlayer(i, streamedurl, X, Y, Z, radius, 1);
                        return ( 1 );
                    }
                    else return ( 1 );
                }
            }
        }
    }
    else
    {
        new u2bstring[128];
        format(u2bstring,sizeof(u2bstring),"     {FF0000}******* link error\n\n{FFFFFF}This ******* link is broken or uses some copyright protection, we can't convert it to mp3 for streaming. Try another link please. ");
        ShowPlayerDialog(playerid,61,DIALOG_STYLE_MSGBOX ,WHOMADETHIS,u2bstring, "Exit", "");
    }
    return ( 1 );
}
In that file you send, it's was a file with name " *******.xml " What are i going to do with that file?
Reply
#8

Nothing It's maded for crashdetect plugin. Ignore that file :P
Reply
#9

Quote:
Originally Posted by nGen.SoNNy
Посмотреть сообщение
Nothing It's maded for crashdetect plugin. Ignore that file :P
When i going to play a song it's not playing

Quote:

// ******* Player

#include < a_samp >
#include < a_http >
#include < core >
#include < float >
#include < zcmd >
#define U2BDIAG 6958 //DialogID used
#define WHOMADETHIS "******* Player"

new PlayerU2B[MAX_PLAYERS],
PlayerU2BLink[MAX_PLAYERS][32],
U2BRadius[MAX_PLAYERS][16];

forward U2BInfo(playerid, response_code, data[]);

public OnFilterScriptInit() print("******* player has been loaded");
public OnFilterScriptExit() print("******* player has been unloaded");

//================================================== ============================
// Commands
//================================================== ============================
CMDtop*******(playerid, params[]) return PlayAudioStreamForPlayer(playerid, "Music was stoped by player.");
CMD:*******(playerid, params[])
{
ShowPlayerDialog(playerid, U2BDIAG, DIALOG_STYLE_LIST, WHOMADETHIS, "{46BEE6}Play for yourself (The song will be played only for you)\n{ED954E}Play for someone (The song will be played for the ID you input in the textbox)\n{46BEE6}Play for a location (The song will be played with the radius you choose)\n{ED954E}Play for all (The song will be played for all the players in the server)", "Select", "Cancel");
return ( 1 );
}
//================================================== ============================
// Dialogs
//================================================== ============================
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == U2BDIAG && response)
{
switch(listitem)
{
case 0:
{
PlayerU2B[playerid] = 1;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for yourself:","Play","Cancel");
return 1;
}
case 1:
{
PlayerU2B[playerid] = 2;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for a player:","Play","Cancel");
return 1;
}
case 2:
{
PlayerU2B[playerid] = 3;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for your location:","Play","Cancel");
return 1;
}
case 3:
{
PlayerU2B[playerid] = 4;
ShowPlayerDialog(playerid,U2BDIAG+1,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Paste the ******* link you want to play for the whole server:","Play","Cancel");
return 1;
}
}
}
if(dialogid == U2BDIAG+1 && response)
{
if(strlen(inputtext))
{
new result[128], videostr[128];
strmid(result,inputtext,31,44,strlen(inputtext));
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",result);
strmid(PlayerU2BLink[playerid], result, 0, 32);
if (PlayerU2B[playerid] == 1)
{
PlayerU2B[playerid] = 11;
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
}
else if (PlayerU2B[playerid] == 2)
{
PlayerU2B[playerid] = 22;
ShowPlayerDialog(playerid,U2BDIAG+2,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Enter the player id you want to play the song for:","Play","Cancel");
new string[128];
format(string, sizeof(string), "%s", PlayerU2BLink[playerid]);
}
else if (PlayerU2B[playerid] == 3)
{
PlayerU2B[playerid] = 33;
ShowPlayerDialog(playerid,U2BDIAG+3,DIALOG_STYLE_I NPUT,WHOMADETHIS,"Enter the radius in which you want the song to be heard:","Play","Cancel");
}
else if (PlayerU2B[playerid] == 4)
{
PlayerU2B[playerid] = 44;
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
}
}
return 1;
}
if(dialogid == U2BDIAG+2 && response)
{
new gpid = strval(inputtext);
new videostr[128];
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
HTTP(gpid,HTTP_GET,videostr,"","U2BInfo");
return 1;
}
if(dialogid == U2BDIAG+3 && response)
{
strmid(U2BRadius[playerid], inputtext, 0, 32);
new videostr[128];
PlayerU2B[playerid] = 333;
format(videostr,sizeof(videostr),"www.*******-mp3.org/api/itemInfo/?video_id=%s",PlayerU2BLink[playerid]);
HTTP(playerid,HTTP_GET,videostr,"","U2BInfo");
return 1;
}
return 0;
}
//================================================== ============================
// Functions
//================================================== ============================

public U2BInfo(playerid, response_code, data[])
{
if(response_code == 200)
{
new result[33], u2bstr[33]; new streamedurl[128];
new crypted = strfind(data, "\"h\"", true, -1);
strmid(result,data,crypted+7,crypted+39,strlen(dat a));
format(u2bstr,sizeof(u2bstr), "%s", result);
format(streamedurl, sizeof(streamedurl), "http://www.*******-mp3.org/get?video_id=%s&h=%s",PlayerU2BLink[playerid], u2bstr);
if(PlayerU2B[playerid] == 11)
{
PlayAudioStreamForPlayer(playerid, streamedurl);
return ( 1 );
}
else if(PlayerU2B[playerid] == 22)
{
PlayAudioStreamForPlayer(playerid, streamedurl);
return ( 1 );
}
else if(PlayerU2B[playerid] == 33)
{
PlayAudioStreamForPlayer(playerid, streamedurl);
return ( 1 );
}
else if(PlayerU2B[playerid] == 44)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
PlayAudioStreamForPlayer(i, streamedurl);
return ( 1 );
}
else return ( 1 );
}
}
else if(PlayerU2B[playerid] == 333)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
new radius = strval(U2BRadius[playerid]);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, radius , X, Y, Z))
{
PlayAudioStreamForPlayer(i, streamedurl, X, Y, Z, radius, 1);
return ( 1 );
}
else return ( 1 );
}
}
}
}
else
{
new u2bstring[128];
format(u2bstring,sizeof(u2bstring)," {FF0000}******* link error\n\n{FFFFFF}This ******* link is broken or uses some copyright protection, we can't convert it to mp3 for streaming. Try another link please. ");
ShowPlayerDialog(playerid,61,DIALOG_STYLE_MSGBOX ,WHOMADETHIS,u2bstring, "Exit", "");
}
return ( 1 );
}

Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)