16.07.2011, 22:42
Yeah I'm sorry. I was confused whether it meant the playerid number, false, or what you mentioned above.
I'll ask one more thing just to get this right.
In the case of let say, applying animations to two players, the player who is applying the command and another player.
Would something like this apply the animation to both of these players?
I'll ask one more thing just to get this right.
In the case of let say, applying animations to two players, the player who is applying the command and another player.
Код:
CMD: animation(playerid, params[]) { animation(playerid,id); } forward animation(playerid,id); public animation(playerid, id) { ApplyAnimation(playerid,...); ApplyAnimation(id,...); return 1; }