SA-MP Forums Archive
help fast please! - 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: help fast please! (/showthread.php?tid=557278)



help fast please! - aCloudy - 13.01.2015

Can someone tell me why i get these two warnings ?

C:\Program Files\lvcnrr\gamemodes\LVCNR1.pwn(901) : warning 213: tag mismatch
C:\Program Files\lvcnrr\gamemodes\LVCNR1.pwn(902) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


2 Warnings.



PHP код:
new Float:ArmySpawnPoints[][] =
{
{-
1390.3375,497.3549,18.2344,0},
{-
1369.9075,491.8413,11.1953,270}
}; 



Re: help fast please! - Threshold - 13.01.2015

Change the '0' and the '270' to '0.0' and '270.0'. The compiler thinks that these values are integers as opposed to floats, hence the tag mismatch warning.


Re: help fast please! - aCloudy - 13.01.2015

Fixed thank you