21.06.2014, 21:59
The error is exactly telling you what's going on if you read it
Count the parameters of CreateDynamicObject. They are 12 right?! Now got to your code and count the parameters. They are 11 right? Well you missed one of the 12 parameters, check it out.
If you are not sure, send one line of your CreateDynamicObject.
Код:
Expecting 12 parameter(s), but found 11
pawn Код:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 200.0, Float:drawdistance = 0.0);
If you are not sure, send one line of your CreateDynamicObject.