[FilterScript] Loro Hablador
#1

Hola, bueno, estaba aburrido, y se me ocurrio mirar el foro sa-mp, y encontrй un FS en el que un objeto con textura de animal (loro) habla cuando alguien se le acerca, y lo traduci sin necesidad de usar ****** TRANSLATOR. ( En realidad no savia que existia hasta que OTACON me lo enseсo , Gracias OTACON )

* Comandos: /comprarloro ( El coste del loro es de $500, le podreis cambiar el precio ), /enseсarfrases ( Con este comando, podrбs aсadirle/modificarle las frases que quieres que diga, las dira random (aleatoriamente)).

* Imбgenes: ( Estas son de la versiуn en ingles )









* Descarga:
Ingles: http://www.mediafire.com/?5ee0h8ww42bviq3 (Pwn)
Espaсol: http://pastebin.com/FQLPifan (Pwn)

* Fuente: https://sampforum.blast.hk/showthread.php?tid=249430

* Crйditos: Cуdigos: Neymar || Simple Traduciуn: Toggle (No estoy seguro si ponerme en los crйditos =S xD)

Saludos espero que os guste
Reply
#2

jajaj lo pruebo y regreso aunque tu no lo hiciste, aportaste y mбs lo traduciste! asi que gracias
Reply
#3

De nada
Reply
#4

oye este fs se me mescla con otros fs con los dialogos entonces yo cambie los ids de los mismos mira me quedo asi:
pawn Код:
//********************************************************
// Loro parlante hecho por Neymar y Traducido por Toggle *
//********************************************************
#define FILTERSCRIPT

#include <a_samp>

#define LORO_ID 0
#define PARROT_PRICE 5000
#define INDEX 0

#define Blanco 0xFFFFFFAA
#define COLOR_FADE1 0xE6E6E6E6
#define COLOR_FADE2 0xC8C8C8C8
#define COLOR_FADE3 0xAAAAAAAA
#define COLOR_FADE4 0x8C8C8C8C
#define COLOR_FADE5 0x6E6E6E6E

new stringp[MAX_PLAYERS][256];

new pHasParrot[MAX_PLAYERS];
new pParrotName[MAX_PLAYERS];
new pParrotSentence[MAX_PLAYERS][5][35];

forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);
forward SendParrotMessage(playerid);

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Loro parlante by Neymar Cargado");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    for(new i=0;i<MAX_PLAYERS;i++)
    {
        if(pHasParrot[i] == 1)
        {
            RemovePlayerAttachedObject(i,INDEX);
        }
    }
    print("\n--------------------------------------");
    print(" Loro parlante by Neymar Cerrado");
    print("--------------------------------------\n");
    return 1;
}

public OnPlayerConnect(playerid)
{
    new string[2];
    format(string,sizeof(string)," ");
    strmid(pParrotSentence[playerid][0],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][1],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][2],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][3],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][4],string,0,strlen(string),255);
    strmid(pParrotName,string,0,strlen(string),255);
    pHasParrot[playerid] = 0;
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    if(pHasParrot[playerid] == 1)
    {
        RemovePlayerAttachedObject(playerid,INDEX);
    }
    new string[2];
    format(string,sizeof(string)," ");
    strmid(pParrotSentence[playerid][0],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][1],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][2],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][3],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][4],string,0,strlen(string),255);
    strmid(pParrotName,string,0,strlen(string),255);
    pHasParrot[playerid] = 0;
    return 1;
}

public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
    if(IsPlayerConnected(playerid))
    {
        new Float:posx, Float:posy, Float:posz;
        new Float:oldposx, Float:oldposy, Float:oldposz;
        new Float:tempposx, Float:tempposy, Float:tempposz;
        GetPlayerPos(playerid, oldposx, oldposy, oldposz);
        //radi = 2.0; //Trigger Radius
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
            {
                GetPlayerPos(i, posx, posy, posz);
                tempposx = (oldposx -posx);
                tempposy = (oldposy -posy);
                tempposz = (oldposz -posz);
                //printf("DEBUG: X:%f Y:%f Z:%f",posx,posy,posz);
                if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16)))
                {
                    SendClientMessage(i, col1, string);
                }
                else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8)))
                {
                    SendClientMessage(i, col2, string);
                }
                else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4)))
                {
                    SendClientMessage(i, col3, string);
                }
                else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2)))
                {
                    SendClientMessage(i, col4, string);
                }
                else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
                {
                    SendClientMessage(i, col5, string);
                }
            }
        }
    }//not connected
    return 1;
}
public OnPlayerText(playerid, text[])
{
    new Float:X,Float:Y,Float:Z;
    for(new p=0;p<MAX_PLAYERS;p++)
    {
        if(strfind(text,pParrotName[p],true)!=-1)
        {
            GetPlayerPos(playerid,X,Y,Z);
            if(IsPlayerInRangeOfPoint(p, 10.0, X, Y, Z))
            {
                new sent = random(4);
                switch(sent)
                {
                    case 0:
                    {
                        if(strlen(pParrotSentence[p][0]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][0]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 1:
                    {
                        if(strlen(pParrotSentence[p][1]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][1]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 2:
                    {
                        if(strlen(pParrotSentence[p][2]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][2]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 3:
                    {
                        if(strlen(pParrotSentence[p][3]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][3]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 4:
                    {
                        if(strlen(pParrotSentence[p][4]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][4]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                }
            }
        }
    }
    return 1;
}

public SendParrotMessage(playerid)
{
    ProxDetector(20.0, playerid, stringp[playerid],COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    new string[128];
    if (strcmp("/comprarloro", cmdtext, true) == 0)
    {
        if(GetPlayerMoney(playerid) >= PARROT_PRICE)
        {
            GivePlayerMoney(playerid,-PARROT_PRICE);
            format(string,sizeof(string)," Has comprado un {F70C47}loro hablador{FFFFFF} por {6CE61C}${FFFFFF}%i.",PARROT_PRICE);
            SendClientMessage(playerid,Blanco,string);
            SendClientMessage(playerid,Blanco," Para ensecharle a hablar usa {F70C47}/enseсarfrases{FFFFFF}.");
            pHasParrot[playerid] = 1;
            SetPlayerAttachedObject(playerid,INDEX,19078,1,0.320722,-0.067912,-0.165151,0.000000,0.000000,0.000000,1.000000,1.000000,1.000000); // Parrot
            ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
        }
        else
        {
            format(string,sizeof(string)," Un loro parlante cuesta {6CE61C}${FFFFFF}%i.",PARROT_PRICE);
            SendClientMessage(playerid,Blanco,string);
        }
        return 1;
    }
    if (strcmp("/enseсarfrases", cmdtext, true) == 0)
    {
        if(pHasParrot[playerid] == 1)
        {
            new string3[256];
            format(string3,sizeof(string3),"1.%s\n2.%s\n3.%s\n4.%s\n5.%s",
            pParrotSentence[playerid][0],
            pParrotSentence[playerid][1],
            pParrotSentence[playerid][2],
            pParrotSentence[playerid][3],
            pParrotSentence[playerid][4]);
            ShowPlayerDialog(playerid,LORO_ID+1,DIALOG_STYLE_LIST,"Oraciones del Loro",string3,"Cambiar","Cancelar");
        }
        else
        {
            SendClientMessage(playerid,Blanco," Usted no tiene un {F70C47}loro parlante{FFFFFF}.");
        }
        return 1;
    }
    return 0;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == LORO_ID)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 20)
            {
                ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
            }
            else
            {
                strmid(pParrotName[playerid],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Nombre del Loro Cambiado.");
            }
        }
        else
        {
            ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
        }
    }
    if(dialogid == LORO_ID+1)
    {
        if(response)
        {
            if(listitem == 0)
            {
                ShowPlayerDialog(playerid,LORO_ID+2,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 1)
            {
                ShowPlayerDialog(playerid,LORO_ID+3,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 2)
            {
                ShowPlayerDialog(playerid,LORO_ID+4,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 3)
            {
                ShowPlayerDialog(playerid,LORO_ID+5,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 4)
            {
                ShowPlayerDialog(playerid,LORO_ID+6,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
        }
    }
    else if(dialogid == LORO_ID+2)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+2,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][0],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє1 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+3)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+3,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][1],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє2 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+4)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+4,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][2],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє3 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+5)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+5,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][3],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє4 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+6)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+6,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][4],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Sentence Nє5 Cambiada.");
            }
        }
    }
    return 1;
}
no se que me falta por que se mesclan con un sistema admin... ayuda
Reply
#5

Prueba asi:

pawn Код:
//********************************************************
// Loro parlante hecho por Neymar y Traducido por Toggle *
//********************************************************
#define FILTERSCRIPT

#include <a_samp>

#define LORO_ID 999
#define PARROT_PRICE 5000
#define INDEX 0

#define Blanco 0xFFFFFFAA
#define COLOR_FADE1 0xE6E6E6E6
#define COLOR_FADE2 0xC8C8C8C8
#define COLOR_FADE3 0xAAAAAAAA
#define COLOR_FADE4 0x8C8C8C8C
#define COLOR_FADE5 0x6E6E6E6E

new stringp[MAX_PLAYERS][256];

new pHasParrot[MAX_PLAYERS];
new pParrotName[MAX_PLAYERS];
new pParrotSentence[MAX_PLAYERS][5][35];

forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);
forward SendParrotMessage(playerid);

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Loro parlante by Neymar Cargado");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    for(new i=0;i<MAX_PLAYERS;i++)
    {
        if(pHasParrot[i] == 1)
        {
            RemovePlayerAttachedObject(i,INDEX);
        }
    }
    print("\n--------------------------------------");
    print(" Loro parlante by Neymar Cerrado");
    print("--------------------------------------\n");
    return 1;
}

public OnPlayerConnect(playerid)
{
    new string[2];
    format(string,sizeof(string)," ");
    strmid(pParrotSentence[playerid][0],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][1],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][2],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][3],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][4],string,0,strlen(string),255);
    strmid(pParrotName,string,0,strlen(string),255);
    pHasParrot[playerid] = 0;
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    if(pHasParrot[playerid] == 1)
    {
        RemovePlayerAttachedObject(playerid,INDEX);
    }
    new string[2];
    format(string,sizeof(string)," ");
    strmid(pParrotSentence[playerid][0],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][1],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][2],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][3],string,0,strlen(string),255);
    strmid(pParrotSentence[playerid][4],string,0,strlen(string),255);
    strmid(pParrotName,string,0,strlen(string),255);
    pHasParrot[playerid] = 0;
    return 1;
}

public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)
{
    if(IsPlayerConnected(playerid))
    {
        new Float:posx, Float:posy, Float:posz;
        new Float:oldposx, Float:oldposy, Float:oldposz;
        new Float:tempposx, Float:tempposy, Float:tempposz;
        GetPlayerPos(playerid, oldposx, oldposy, oldposz);
        //radi = 2.0; //Trigger Radius
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))
            {
                GetPlayerPos(i, posx, posy, posz);
                tempposx = (oldposx -posx);
                tempposy = (oldposy -posy);
                tempposz = (oldposz -posz);
                //printf("DEBUG: X:%f Y:%f Z:%f",posx,posy,posz);
                if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16)))
                {
                    SendClientMessage(i, col1, string);
                }
                else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8)))
                {
                    SendClientMessage(i, col2, string);
                }
                else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4)))
                {
                    SendClientMessage(i, col3, string);
                }
                else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2)))
                {
                    SendClientMessage(i, col4, string);
                }
                else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
                {
                    SendClientMessage(i, col5, string);
                }
            }
        }
    }//not connected
    return 1;
}
public OnPlayerText(playerid, text[])
{
    new Float:X,Float:Y,Float:Z;
    for(new p=0;p<MAX_PLAYERS;p++)
    {
        if(strfind(text,pParrotName[p],true)!=-1)
        {
            GetPlayerPos(playerid,X,Y,Z);
            if(IsPlayerInRangeOfPoint(p, 10.0, X, Y, Z))
            {
                new sent = random(4);
                switch(sent)
                {
                    case 0:
                    {
                        if(strlen(pParrotSentence[p][0]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][0]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 1:
                    {
                        if(strlen(pParrotSentence[p][1]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][1]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 2:
                    {
                        if(strlen(pParrotSentence[p][2]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][2]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 3:
                    {
                        if(strlen(pParrotSentence[p][3]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][3]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                    case 4:
                    {
                        if(strlen(pParrotSentence[p][4]) > 3)
                        {
                            format(stringp[playerid],256,"%s dice: %s",pParrotName[p],pParrotSentence[p][4]);
                            SetTimerEx("SendParrotMessage",180,0,"i", playerid);
                        }
                    }
                }
            }
        }
    }
    return 1;
}

public SendParrotMessage(playerid)
{
    ProxDetector(20.0, playerid, stringp[playerid],COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    new string[128];
    if (strcmp("/comprarloro", cmdtext, true) == 0)
    {
        if(GetPlayerMoney(playerid) >= PARROT_PRICE)
        {
            GivePlayerMoney(playerid,-PARROT_PRICE);
            format(string,sizeof(string)," Has comprado un {F70C47}loro hablador{FFFFFF} por {6CE61C}${FFFFFF}%i.",PARROT_PRICE);
            SendClientMessage(playerid,Blanco,string);
            SendClientMessage(playerid,Blanco," Para ensecharle a hablar usa {F70C47}/enseсarfrases{FFFFFF}.");
            pHasParrot[playerid] = 1;
            SetPlayerAttachedObject(playerid,INDEX,19078,1,0.320722,-0.067912,-0.165151,0.000000,0.000000,0.000000,1.000000,1.000000,1.000000); // Parrot
            ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
        }
        else
        {
            format(string,sizeof(string)," Un loro parlante cuesta {6CE61C}${FFFFFF}%i.",PARROT_PRICE);
            SendClientMessage(playerid,Blanco,string);
        }
        return 1;
    }
    if (strcmp("/enseсarfrases", cmdtext, true) == 0)
    {
        if(pHasParrot[playerid] == 1)
        {
            new string3[256];
            format(string3,sizeof(string3),"1.%s\n2.%s\n3.%s\n4.%s\n5.%s",
            pParrotSentence[playerid][0],
            pParrotSentence[playerid][1],
            pParrotSentence[playerid][2],
            pParrotSentence[playerid][3],
            pParrotSentence[playerid][4]);
            ShowPlayerDialog(playerid,LORO_ID+1,DIALOG_STYLE_LIST,"Oraciones del Loro",string3,"Cambiar","Cancelar");
        }
        else
        {
            SendClientMessage(playerid,Blanco," Usted no tiene un {F70C47}loro parlante{FFFFFF}.");
        }
        return 1;
    }
    return 0;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == LORO_ID)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 20)
            {
                ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
            }
            else
            {
                strmid(pParrotName[playerid],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Nombre del Loro Cambiado.");
            }
        }
        else
        {
            ShowPlayerDialog(playerid,LORO_ID,DIALOG_STYLE_INPUT,"{FF0000}Nombre para su Loro"," {FFFFFF}Porfavor escriba el nombre que quiere para su loro\n{FFFFFF}Caracteres: Mбximos: 20 | Minimos: 3","Poner","");
        }
    }
    if(dialogid == LORO_ID+1)
    {
        if(response)
        {
            if(listitem == 0)
            {
                ShowPlayerDialog(playerid,LORO_ID+2,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 1)
            {
                ShowPlayerDialog(playerid,LORO_ID+3,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 2)
            {
                ShowPlayerDialog(playerid,LORO_ID+4,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 3)
            {
                ShowPlayerDialog(playerid,LORO_ID+5,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else if(listitem == 4)
            {
                ShowPlayerDialog(playerid,LORO_ID+6,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
        }
    }
    else if(dialogid == LORO_ID+2)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+2,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][0],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє1 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+3)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+3,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][1],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє2 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+4)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+4,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][2],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє3 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+5)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+5,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][3],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Oraciуn Nє4 Cambiada.");
            }
        }
    }
    else if(dialogid == LORO_ID+6)
    {
        if(response)
        {
            if(strlen(inputtext) < 3 || strlen(inputtext) > 35)
            {
                ShowPlayerDialog(playerid,LORO_ID+6,DIALOG_STYLE_INPUT," Cambio Oraciуn"," Porfavor, escribe una frase con un minimo de 3 caracteres y un mбximo de 35 caracteres:","Cambiar","Cancelar");
            }
            else
            {
                strmid(pParrotSentence[playerid][4],inputtext,0,strlen(inputtext),255);
                SendClientMessage(playerid,Blanco," Sentence Nє5 Cambiada.");
            }
        }
    }
    return 1;
}
Reply
#6

jaja es la puta ostia, muy original pepot te felicito por el aporte!
Reply
#7

jajaja muy weno, probando...
Reply
#8

Gracias chicos!
Reply
#9

jajaj chimba de textdraws xD
Reply
#10

Quote:
Originally Posted by VetoBarrera
Посмотреть сообщение
jajaj chimba de textdraws xD
їTextdraws?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)