09.07.2011, 04:51
SYNTAX:
Your command :
Notice the DISTANCE, it's -1.
Maybe try to change the DISTANCE to 99999.0 ( lol, but it should works ).
pawn Код:
CreateDynamicCP(Float:x, Float:y, Float:z, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:distance = 100.0);
pawn Код:
CMD:cp(playerid)
{
CreateDynamicCP(0, 0, 0, 10, 0, -1, playerid, -1);
// Would be : X = 0, Y = 0, Z = 0, Size = 0, World ID = 0, Interior ID = -1, Player ID = playerid, Distance = -1.
return 1;
}
Maybe try to change the DISTANCE to 99999.0 ( lol, but it should works ).