Загрузка...

[Lesson #3] Animation when talking

Thread in SAMP Guides created by Search_inactive41474 Jun 23, 2016. 456 views

  1. Search_inactive41474
    Search_inactive41474 Topic starter Jun 23, 2016 11 Jun 22, 2016
    В public OnPlayerText(playerid, text[]) // добавляем:
    Code

    ApplyAnimation(playerid,"PED","IDLE_chat",4.1,0,1,1,1,1,0);
    SetTimer("ClearAnim", 3000,playerid);
    Далее, в самый вверх мода:
    Code

    forward ClearAnim(playerid);
    Создаём public
    Code
    public ClearAnim(playerid) 
    {
    ApplyAnimation(playerid,"CARRY","crry_prtial",4.0,0,0,0,0,0,0);
    return 1;
    }
     
Loading...
Top