22.09.2018, 14:54
Quote:
|
I doubt that, I'm using custom skins on actors and it works properly.
|
I have this row in the artconfig file:
Код:
AddCharModel(269, 20001, "fam1.dff", "fam1.txd")
Код:
CMD:test(playerid, params[])
{
new d;
if(sscanf(params, "d", d)) return Msg(playerid, -1, "/test skinid");
new Float:pos[3], Float:a[2], Float:z;
GetPlayerPos(playerid, a[0], a[1], z);
GetPosInFrontOfPlayer(playerid, pos[0], pos[1], 5);
GetPlayerFacingAngle(playerid, pos[2]);
CreateActor(d, pos[0], pos[1], z, pos[2]);
return 1;
}


