[Ajuda] Dъvida com mSelection
#8

Quote:
Originally Posted by InsaneBR
Посмотреть сообщение
Sim, й possнvel.

PHP код:
public OnPlayerModelSelection(playeridresponselistidmodelid)
{
    if(
listid == SEULISTID)
    {
        if(!
response) return 1;
        
//Isto й o que vocк precisa:
        
switch(modelid)
        {
            case 
128 : {
                
GivePlayerMoney(playerid, -10000);
                
// resto da funзгo ao selecionar este modelid
            
}
            case 
283: {
                
GivePlayerMoney(playerid, -50000);
                
// resto da funзгo ao selecionar este modelid
            
}
            
//... etc
        
}
    }
    return 
1;

No meu caso eu utilizo assim:

PHP код:
public OnPlayerModelSelectionEx(playeridresponseextraidmodelid)
{
    if(
extraid==DIALOG_ATTACH_MODEL_SELECTION)
    {
        if(!
response)
         {   
ShowPlayerDialog(playerid,DIALOG_ATTACH_OBJECT_SELECTION,DIALOG_STYLE_LIST,"Acessуrios: (Selecione para onde irб ficar o objeto)",COL_GREY "Menu de Acessуrios"COL_GREY"Objeto Personalizado","Prуximo","Anterior");    }
        if(
response)
        {
            if(
GetPVarInt(playerid"AttachmentUsed") == 1EditAttachedObject(playeridmodelid);
            else
            {
                
SetPVarInt(playerid"AttachmentModelSel"modelid);
                new 
string[256+1];
                new 
dialog[500];
                for(new 
x;x<sizeof(AttachmentBones);x++)
                {
                    
format(stringsizeof(string), "%s\n"AttachmentBones[x]);
                    
strcat(dialog,string);
                }
                
ShowPlayerDialog(playeridDIALOG_ATTACH_BONE_SELECTIONDIALOG_STYLE_LIST, \
                
"{FF0000}Modificaзгo dos Acessуrios"dialog"Selecionar""Cancelar");
            }
//else DeletePVar(playerid, "AttachmentIndexSel");
        
}
     }
    return 
1;

e crio a minha lista de objetos no prуprio gamemode

PHP код:
new AttachmentObjectsList[] = {
18632,
18633,
18634,
18635,
[...] 
Entгo como funcionaria?
Reply


Messages In This Thread
Dъvida com mSelection - by Raayzeck - 15.08.2018, 23:14
Re: Dъvida com mSelection - by Santso - 15.08.2018, 23:29
Re: Dъvida com mSelection - by Raayzeck - 15.08.2018, 23:33
Re: Dъvida com mSelection - by InsaneBR - 15.08.2018, 23:54
Re: Dъvida com mSelection - by SIZET - 15.08.2018, 23:58
Re: Dъvida com mSelection - by Santso - 16.08.2018, 00:32
Re: Dъvida com mSelection - by SIZET - 16.08.2018, 00:49
Re: Dъvida com mSelection - by Raayzeck - 16.08.2018, 00:53
Re: Dъvida com mSelection - by InsaneBR - 16.08.2018, 01:38
Re: Dъvida com mSelection - by Raayzeck - 16.08.2018, 02:22

Forum Jump:


Users browsing this thread: 2 Guest(s)