20.07.2012, 04:14
Wrong:
Right:
You forgot a ) at the end, this is what your doing:
Easy fix away!
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 2, 2238.40,2191.07,103.94) || IsPlayerInRangeOfPoint(playerid, 2, 2259.6702,-1135.8542,1050.6328) || IsPlayerInRangeOfPoint(playerid, 2, 404.98,2457.82,16.50) // Garages
{
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 2, 2238.40,2191.07,103.94) || IsPlayerInRangeOfPoint(playerid, 2, 2259.6702,-1135.8542,1050.6328) || IsPlayerInRangeOfPoint(playerid, 2, 404.98,2457.82,16.50)) // Garages
{
pawn Код:
if(something(playerid, .....) || something(playerid, .....) //You see, I forgot a ) here as-well

