SA-MP Forums Archive
Help me please - 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: Help me please (/showthread.php?tid=274187)



Help me please - Trucker[UK] - 04.08.2011

Hello

I need help when i added a new mission i got these errors when i built the game mode

Код:
C:\Program Files (x86)\Rockstar Games\GTA San Andreas\SAMP\Samp\pawno\include\PPC_DefLocations.inc(163) : error 001: expected token: "}", but found "{"
C:\Program Files (x86)\Rockstar Games\GTA San Andreas\SAMP\Samp\pawno\include\PPC_DefLocations.inc(168) : error 055: start of function body without function header
C:\Program Files (x86)\Rockstar Games\GTA San Andreas\SAMP\Samp\pawno\include\PPC_DefLocations.inc(171) : error 055: start of function body without function header
C:\Program Files (x86)\Rockstar Games\GTA San Andreas\SAMP\Samp\pawno\include\PPC_DefLocations.inc(171) : error 010: invalid function or declaration
then i went to the file and went to it and it is this bit

Код:
	{"Palomino Creek Beer", 2973.95, -273.26, 10.15}, // ID = 138
	{"Palomion Creek Building", 2892.46, -420.75, 10.15} // ID = 139
	{"Palomino creek Boards", 2895.83, -384.57, 10.15} // ID = 140
	{"Palomino creek Fuel", 2970.54, -381.40, 10.15} // ID = 141
	{"Palomino creek Drinks", 2985.64, -260.84, 10.15} // ID = 142
	{"Palomino creek Food", 2956.74, -252.95, 10.15} // ID = 143
	
	{"Rockshore West Building", 2430.66, 673.59, 10.15} // ID = 144
	{"Rockshore West Gravel", 2423.92, 673.61, 10.15} // ID = 145

{;
Please Help


Re: Help me please - RyDeR` - 04.08.2011

It should be like this:
Код:
	{"Palomino Creek Beer", 2973.95, -273.26, 10.15}, // ID = 138
	{"Palomion Creek Building", 2892.46, -420.75, 10.15}, // ID = 139
	{"Palomino creek Boards", 2895.83, -384.57, 10.15}, // ID = 140
	{"Palomino creek Fuel", 2970.54, -381.40, 10.15}, // ID = 141
	{"Palomino creek Drinks", 2985.64, -260.84, 10.15}, // ID = 142
	{"Palomino creek Food", 2956.74, -252.95, 10.15}, // ID = 143
	
	{"Rockshore West Building", 2430.66, 673.59, 10.15}, // ID = 144
	{"Rockshore West Gravel", 2423.92, 673.61, 10.15} // ID = 145
};



Re: Help me please - Trucker[UK] - 04.08.2011

thanks it works