04.05.2017, 01:39
Here is some commands I just made, hope it helps you.
Код:
CMD:seat(playerid, params[])
{
ApplyAnimation(playerid, "PED", "SEAT_DOWN", 4.0, 0, 0, 0, 0, 0, 1);
SetTimerEx("SitAnim", 1000, false, "i", playerid);
return 1;
}
forward SitAnim(playerid);
public SitAnim(playerid)
{
ApplyAnimation(playerid, "PED", "SEAT_IDLE", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:standup(playerid, params[])
{
ApplyAnimation(playerid, "PED", "SEAT_UP", 4.0, 0, 0, 0, 0, 0, 1);
return 1;
}

