SA-MP Forums Archive
1 error - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: 1 error (/showthread.php?tid=131810)



1 error - 02manchestera - 05.03.2010

Код:
C:\Program Files\Rockstar Games\GTA San Andreas\my server\gamemodes\SFTDMVFgangzone.pwn(1495) : error 054: unmatched closing brace ("}")
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Код:
public Tempo()
{
      		new rand;
   			rand = random(1);
				SetWeather(rand);
     }
   }
  }
Any help would be nice

Many thanks alex




Re: 1 error - sushihusi - 05.03.2010

change this :
Код:
public Tempo()
{
      		new rand;
   			rand = random(1);
				SetWeather(rand);
     }
   }
  }
to this
Код:
public Tempo()
{
      		new rand;
   		rand = random(1);
		SetWeather(rand);
  }



Re: 1 error - Oxside - 05.03.2010

Remove last 2 } so it must be this:

Код:
public Tempo()
{
   new rand;
   rand = random(1);
   SetWeather(rand);
}



Re: 1 error - aircombat - 05.03.2010

public Tempo()
{
new rand;
rand = random(1);
SetWeather(rand);
}
}
}

look at that there is : 1 { and 3 } that's why its unmatched ,, here is the right code :

Код:
public Tempo()
{
      		new rand;
   			rand = random(1);
			SetWeather(rand);
}
________
HALF-BAKED