14.12.2011, 03:27
Hi, my Special Action and/or animation that I tried to apply to my characters when a player is on class selection isn't working.
I have tried special action + animations and my character just stands there...
Code:
Any help?
I have tried special action + animations and my character just stands there...
Code:
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE3);
SetPlayerPos(playerid, spawnX, spawnY, spawnZ);
if(prc_Moving[playerid] == false)
{
prc_Degree[playerid] = 0;
prc_Timer[playerid] = SetTimerEx("MoveCamera", 75, true, "d", playerid);
prc_Moving[playerid] = true;
}
return 1;
}