12.11.2011, 21:13
Hi.. I'm getting a tag missmatch warning for this line:
Distance[3] is a Float variable shadowing a distance between 2 points (I guess I don't need to post the whole code)..
defined as: new Float : Distance[4];
It is something similar to this:
(... = some other code)
pawn Код:
return Distance[3];
defined as: new Float : Distance[4];
It is something similar to this:
pawn Код:
stock GetDistance(...)
{
...
return Distance[3];
}