SA-MP Forums Archive
what 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)
+--- Thread: what error... (/showthread.php?tid=586285)



what error... - Jimmi - 21.08.2015

Код:
(238) : error 017: undefined symbol "SPRAYTAG_DATA"
(878) : error 021: symbol already defined: "SPRAYTAG_DATA"
238:
Код:
new SprayTags[MAX_PLAYERS][MAX_PLAYERS_TAGS][SPRAYTAG_DATA],//hear
	spraytag_object[MAX_PLAYERS],
	spraytag_timer[MAX_PLAYERS],
	spraytag_timer_left[MAX_PLAYERS],
	spraytag_find[MAX_PLAYERS],
	spraytag_slot[MAX_PLAYERS],
	spraytag_text[MAX_PLAYERS],
	spraytag_size[MAX_PLAYERS],
	spraytag_bold[MAX_PLAYERS],
	spraytag_color[MAX_PLAYERS],
	spraytag_font[MAX_PLAYERS],
	spraytag_mysql[MAX_PLAYERS],
	Float:spraytag_positions[MAX_PLAYERS][6];
878
Код:
enum SPRAYTAG_DATA
{
	_spSQLID,
	_spObject,
	_spText[50],
	_spOwned[MAX_PLAYER_NAME],
	_spFontColor,
	_spBold,
	_spFontSize,
	_spFont[50],
	Float:_spPosX,
	Float:_spPosY,
	Float:_spPosZ,
	Float:_spPosRX,
	Float:_spPosRY,
	Float:_spPosRZ,
	_spVW,
	_spInt
}
new SPRAYTAG_DATA[MAX_PLAYERS][SPRAYTAG_DATA];//hear



Re: what error... - X337 - 21.08.2015

Write code like this:
Код:
// this enum must be defined before new SprayTags[MAX_PLAYERS][MAX_PLAYERS_TAGS][SPRAYTAG_DATA]
enum SPRAYTAG_DATA
{
	_spSQLID,
	_spObject,
	_spText[50],
	_spOwned[MAX_PLAYER_NAME],
	_spFontColor,
	_spBold,
	_spFontSize,
	_spFont[50],
	Float:_spPosX,
	Float:_spPosY,
	Float:_spPosZ,
	Float:_spPosRX,
	Float:_spPosRY,
	Float:_spPosRZ,
	_spVW,
	_spInt
}

new SprayTags[MAX_PLAYERS][MAX_PLAYERS_TAGS][SPRAYTAG_DATA],
	spraytag_object[MAX_PLAYERS],
	spraytag_timer[MAX_PLAYERS],
	spraytag_timer_left[MAX_PLAYERS],
	spraytag_find[MAX_PLAYERS],
	spraytag_slot[MAX_PLAYERS],
	spraytag_text[MAX_PLAYERS],
	spraytag_size[MAX_PLAYERS],
	spraytag_bold[MAX_PLAYERS],
	spraytag_color[MAX_PLAYERS],
	spraytag_font[MAX_PLAYERS],
	spraytag_mysql[MAX_PLAYERS],
	Float:spraytag_positions[MAX_PLAYERS][6];



Re: what error... - Jimmi - 21.08.2015

: error 017: undefined symbol "SPRAYTAG_DATA"
hear:
new SprayTags[MAX_PLAYERS][MAX_PLAYERS_TAGS][SPRAYTAG_DATA],


Re: what error... - Jimmi - 21.08.2015

UPPP