11.01.2016, 13:32
Quote:
|
He's using SetPlayerPos, which means that he set his player's location the same as the actor's one. The function to set the position of actor is SetActorPos, so the problem is not in SetPlayerPos.
You should try to define the actor first: Код:
new Actor1;
CMD:actor(playerid, params[])
{
Actor1 = CreateActor(4, -366.200988, 1539.180053, 75.560897, 0.0);
SetPlayerPos(playerid, -366.200988, 1539.180053, 75.560897);
return 1;
}
|


