29.12.2014, 22:38
I guess the lines
Are giving you those warnings?
Simple: Check the definition of CreateObject: https://sampwiki.blast.hk/wiki/CreateObject
as you can see that are 8 arguments, but the 8th is optional. you are calling CreateObject with 9 arguments.
That's one too many, you probably want to remove the last "300.000" from those lines.
It's as the warning says: "number of arguments does not match definition"
pawn Код:
opstinabylevu = CreateObject ...
...
Simple: Check the definition of CreateObject: https://sampwiki.blast.hk/wiki/CreateObject
pawn Код:
native CreateObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ, Float:DrawDistance = 0.0);
That's one too many, you probably want to remove the last "300.000" from those lines.
It's as the warning says: "number of arguments does not match definition"