[Ajuda] warning 213: tag mismatch
#1

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];
Reply
#2

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

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.
Reply
#4

PHP код:
new id
Reply
#5

Nгo funciona de jeito nenhum :v
Reply
#6

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

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


Forum Jump:


Users browsing this thread: 1 Guest(s)