08.02.2017, 17:39
Get player's position using GetPlayerPos then create an actor at the coordinates returned using CreateActor.
Код:
new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); CreateActor(skinid, x, y, z);

