SA-MP Forums Archive
[Ajuda] warning 213: tag mismatch - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] warning 213: tag mismatch (/showthread.php?tid=628927)



warning 213: tag mismatch - axellech - 17.02.2017

Alguem me ajuda resolver isso? plz.

Код:
C:\Users\gamemodes\gamemode.pwn(4280) : warning 213: tag mismatch
C:\Users\gamemodes\gamemode.pwn(4280) : warning 213: tag mismatch
C:\Users\gamemodes\gamemode.pwn(4280) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Warnings.
Код:
Linha 4280: 
CreateDynamicPickup(1239, 23, bX, bY, bZ, 0);
Estou tentando colocar a Pickup 1239 na entrada de todos os comйrcios da GM, mas estб dando esses 3 Warnings.
Alguem pode me ajudar a resolver?

bX, bY, bZ : Й a entrada dos comйrcios

Код:
enum businessEnum {
	bID,
	Float:bX,
	Float:bY,
	Float:bZ,
	bPrice,
	bInt,
	bMoney,
	bLocked,
	bOwner[MAX_PLAYER_NAME],
	bName[20],
	bRadio[200],
	bFee,
	bStreet[40],
	bHousenumber,
	bBusinesszip,
	bTaxes,
	bFaction
}
new BusinessInfo[MAX_BUSINESSES][businessEnum];



Re: warning 213: tag mismatch - Nate4 - 17.02.2017

PHP код:
CreateDynamicPickup(123923BusinessInfo[id][bX], BusinessInfo[id][bY], BusinessInfo[id][bZ], 0); 



Re: warning 213: tag mismatch - axellech - 17.02.2017

Quote:
Originally Posted by Nate4
Посмотреть сообщение
PHP код:
CreateDynamicPickup(123923BusinessInfo[id][bX], BusinessInfo[id][bY], BusinessInfo[id][bZ], 0); 
Eu jб tinha tentando isso, mas olha:

Код:
C:\Users\gamemodes\gamemode.pwn(4280) : error 017: undefined symbol "id"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.



Re: warning 213: tag mismatch - IlanZ - 17.02.2017

PHP код:
new id



Re: warning 213: tag mismatch - axellech - 17.02.2017

Nгo funciona de jeito nenhum :v


Re: warning 213: tag mismatch - RedMF - 18.02.2017

Coloca 0 no lugar e verifique se funciona
PHP код:
CreateDynamicPickup(123923BusinessInfo[0][bX], BusinessInfo[0][bY], BusinessInfo[0][bZ], 0); 



Re: warning 213: tag mismatch - Cheleber_Pausini - 18.02.2017

Tenta:
PHP код:
for(new iMAX_BUSINESSES; ++i)
{
   
CreateDynamicPickup(123923BusinessInfo[i][bX], BusinessInfo[i[bY], BusinessInfo[i][bZ], 0);