19.09.2010, 16:12
(
Последний раз редактировалось prez_jake; 19.09.2010 в 17:53.
Причина: bold thing did not work removing it
)
hey i was working on something and i get this warning and i searched fourms and got no answers can someone please help me
error looks like this
the script is and place where warning is
and where the enum thing is
Please help and tell me if you need more imformation
error looks like this
Код:
C:\Users\Owner\Desktop\larp.pwn(81682) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81683) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81684) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81684) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81685) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81685) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81686) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81686) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81687) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81687) : warning 213: tag mismatch C:\Users\Owner\Desktop\larp.pwn(81688) : warning 213: tag mismatch Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 11 Warnings.
Код:
stock CreatePermObject(Object,Float:x,Float:y,Float:z,Float:Angle) { new Float:car for(new h = 184; h < sizeof(Object1); h++) { if(Object1[h][obp] == 1) { car = h + 1; } } Object1[car][obp] = 1; Object1[car][oid] = Object; Object1[car][obx] = x; Object1[car][oby] = y; Object1[car][obz] = z-0.7; Object1[car][orx] = Angle; Object1[car][obj] = CreateDynamicObject(Object, x, y, z-0.9, 0, 0, Angle); return 0; }
Код:
enum oinfo { oid, obx, oby, obz, orx, obj, obp, }; new Object1[10][oinfo];