31.01.2017, 17:26
Quote:
Yeah, I like to be a smartass and set up a value to keep me reminded that i shouldn't use that value or cross that same value.
You can also use sizeof(CameraPosition) to see the actual size if you need to loop it or just check. Edit: No you can set it empty and the compiler will itself calculate it's size as Vince said. |
This doesn't work
PHP код:
CMD:buyfuel(playerid, params)
{
if(IsPlayerInRangeOfPoint(playerid, 13.0, GasStations[0], GasStations[1], GasStations[2])
{
}
return 1;
}
PHP код:
CMD:buyfuel(playerid, params)
{
if(IsPlayerInRangeOfPoint(playerid, 13.0, GasStations)
{
}
return 1;
}