Disable animations in vehicles
#2

Quote:
Originally Posted by RedFusion
Посмотреть сообщение
I am working on an animation filterscript.
I want to disable the cmd /sit in vehicles for an example.

Here is my current code, and it doesn't work.

Код:
	if (strcmp("/sit", cmdtext, true, 10) == 0)
	{
		if(GetVehicleModel((0);
		{
		ApplyAnimation (playerid, "PED", "SEAT_IDLE",1,1,1,1,0,0);
		}
		return 1;
	}
What is wrong & how do i fix it?
pawn Код:
if (strcmp("/sit", cmdtext, true, 10) == 0)
    {
        if(GetVehicleModel (playerid == 0)
        {
        ClearAnimations(playerid);
        }
        return 1;
    }
Reply


Messages In This Thread
Disable animations in vehicles - by RedFusion - 19.07.2010, 19:49
Re: Disable animations in vehicles - by Jay. - 19.07.2010, 19:51
Re: Disable animations in vehicles - by [XST]O_x - 19.07.2010, 19:51
Re: Disable animations in vehicles - by RedFusion - 19.07.2010, 20:02
Re: Disable animations in vehicles - by [XST]O_x - 19.07.2010, 20:03
Re: Disable animations in vehicles - by RedFusion - 19.07.2010, 20:09
Re: Disable animations in vehicles - by Kar - 19.07.2010, 20:09
Re: Disable animations in vehicles - by RedFusion - 19.07.2010, 21:06
Re: Disable animations in vehicles - by RedFusion - 19.07.2010, 21:12
Re: Disable animations in vehicles - by Kar - 19.07.2010, 21:19

Forum Jump:


Users browsing this thread: 2 Guest(s)