Change walkstyle
#4

Quote:
Originally Posted by Sandiel
Посмотреть сообщение
Example:

pawn Код:
#define DIALOG_ANIMATIONS 1 // on top of script, change 1 to any AVAILABLE dialog ID.
pawn Код:
CMD:walkstyles(playerid, params[])
{
      ShowPlayerDialog(playerid, DIALOG_ANIMATIONS, DIALOG_STYLE_LIST, "Walk Styles", "Style1\nStyle2\nStyle3", "Select", "Cancel");
      return 1;
}
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
        case DIALOG_ANIMATIONS:
        {
            if(response) // checks if he pressed Button 1 (Select)
            {
                switch(listitem)
                {
                    case 0: // Walk style 1.
                    {
                        ApplyAnimation(...);
                    }
                    case 1: // Walk style 2.
                    {
                        ApplyAnimation(...);
                    }
                    case 2: // Walk style 3.
                    {
                        ApplyAnimation(...);
                    }
                }
            }
        }
        return 1;
}
https://sampwiki.blast.hk/wiki/ShowPlayerDialog
https://sampwiki.blast.hk/wiki/OnDialogResponse
Thanks bro fixed.
Reply


Messages In This Thread
Change walkstyle - by DeeCaay - 20.07.2012, 21:47
Re: Change walkstyle - by Devilxz97 - 20.07.2012, 22:00
Re : Change walkstyle - by Sandiel - 21.07.2012, 00:56
Re : Change walkstyle - by DeeCaay - 22.07.2012, 21:25
Re: Change walkstyle - by Noesis - 24.07.2012, 03:52
Re: Change walkstyle - by Stigg - 24.07.2012, 03:56
Re: Change walkstyle - by SuperViper - 24.07.2012, 05:08
Re: Change walkstyle - by Noesis - 24.07.2012, 11:35

Forum Jump:


Users browsing this thread: 2 Guest(s)