05.11.2010, 04:58
hi again...
can u guys solve this problem of the code its been 2 days finding the solution of this errors. Hope u guys know how to solve it...
the line:
can u guys solve this problem of the code its been 2 days finding the solution of this errors. Hope u guys know how to solve it...
Код:
error 021: symbol already defined: "IsPlayerInRangeOfPoint" error 021: symbol already defined: "GetPlayerPos" error 010: invalid function or declaration warning 203: symbol is never used: "px" warning 203: symbol is never used: "py" warning 203: symbol is never used: "pz"
pawn Код:
stock IsPlayerInRangeOfPoint(playerid, Float:radius, Float:X, Float:Y, Float:Z)
{
new Float:px, Float:py, Float:pz;
GetPlayerPos(playerid, px, py, pz);
return((((px-X)*(px-X))+((py-Y)*(py-Y))+((pz-Z)*(pz-Z))) >= radius*radius);
}