13.05.2014, 04:50
you did a little mistake in your code
pawn Код:
new distancestring[127];
for(new i = 0; i < MAX_PLAYERS; i++)
{
new Float:distance = GetPlayerDistanceFromPoint(i, MoneyBagPos[0], MoneyBagPos[1], MoneyBagPos[2]);
format(distancestring, sizeof(string), "The MoneyBag is %i meters away", distance);// see this line
SendClientMessage(i, -1, string);
}