Jump to content

Question

Posted

Nu stiu de ce nu mai merge sa il compilez,a mers de atatea ori acuma nu mai merge imi da 26 de erori

C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(21639) : warning 217: loose indentation
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(22099) : warning 217: loose indentation
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(26828) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(26885) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(26938) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(27606) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(27665) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28346) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28374) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28385) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28445) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28606) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28616) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28627) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28675) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28736) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28745) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28953) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(28980) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29010) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29018) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29052) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29060) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29093) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29138) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29201) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29259) : error 047: array sizes do not match, or destination array is too small
C:\Users\Adrian\Desktop\gamemode334s\gm amx si pwn\webtcf.pwn(29267) : error 047: array sizes do not match, or destination array is too small

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright (c) 1997-2006, ITB CompuPhase


26 Errors.

pstgta.png

3 answers to this question

Recommended Posts

Posted

si linile

@stuntman and TheGuardianAngel aduceti globu magic :))

Gata, l-am gasit.

Pentru primele doua pune sus in script

#pragma tabsize 0
Pentru urmatoarele inlocuieste strtok-ul tau cu asta:
strtok(const stringstrtok[], &index)
{
	new length = strlen(stringstrtok);
	while ((index < length) && (stringstrtok[index] <= ' ')) { index++; }

	new offset = index, result[20];
	while ((index < length) && (stringstrtok[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
	{
		result[index - offset] = stringstrtok[index];
		index++;
	}
	result[index - offset] = EOS;
	return result;
}

Il gasesti in dutils.inc in pawno/include, daca nu e acolo cauta-l in GM.

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.