SA-MP Forums Archive
SPECIAL_ACTION - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: SPECIAL_ACTION (/showthread.php?tid=117034)



SPECIAL_ACTION - SworDDicK - 30.12.2009

Hello I have trouble with SPECIAL_ACTION_SIT it doesnt play

Sorry on my bad english


Re: SPECIAL_ACTION - [Saint] - 30.12.2009


https://sampwiki.blast.hk/wiki/SpecialActions


Re: SPECIAL_ACTION - KnooL - 30.12.2009

pawn Код:
new Sit[MAX_PLAYERS];
pawn Код:
dcmd_sit(playerid,params[]);
{
#pragma unused params
if(Sit[playerid] != 1)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_SITTING);
Sit[playerid] = 1;
}
else
{
Sit[playerid] = 0;
ClearAnimations(playerid);
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_NONE);
}
return 1;
}