why these errors
#1

Hey i make a jail system but have errors

Код:
enum Zellen{
	Float:posX,
	Float:posY,
	Float:posZ,
	Float:MoveX,
	Float:MoveY,
	Float:MoveZ
}

new Z[][Zellen] = {

	{1827.80004883,-1729.19995117,5202.79980469, 1827.80004883+1.25,-1729.19995117,5202.79980469}, //line 74
	{1831.00000000,-1729.19995117,5202.79980469, 1831.00000000+1.25,-1729.19995117,5202.79980469},
	{1834.19995117,-1729.19995117,5202.79980469, 1834.19995117+1.25,-1729.19995117,5202.79980469},
	{1837.40002441,-1729.19995117,5202.79980469, 1837.40002441+1.25,-1729.19995117,5202.79980469},
	{1840.59997559,-1729.19995117,5202.79980469, 1840.59997559+1.25,-1729.19995117,5202.79980469},
	{1827.80004883,-1729.19995117,5206.39990234, 1827.80004883+1.25,-1729.19995117,5206.39990234},
	{1831.00000000,-1729.19995117,5206.39990234, 1831.00000000+1.25,-1729.19995117,5206.39990234},
	{1834.19995117,-1729.19995117,5206.39990234, 1834.19995117+1.25,-1729.19995117,5206.39990234},
	{1837.40002441,-1729.19995117,5206.39990234, 1837.40002441+1.25,-1729.19995117,5206.39990234},
	{1840.59997559,-1729.19995117,5206.39990234, 1840.59997559+1.25,-1729.19995117,5206.39990234},
	{1843.80004883,-1729.19995117,5206.39990234, 1843.80004883+1.25,-1729.19995117,5206.39990234},
	{1843.80004883,-1729.19995117,5202.79980469, 1843.80004883+1.25,-1729.19995117,5202.79980469},
	{1843.80004883,-1729.19995117,5209.89990234, 1843.80004883+1.25,-1729.19995117,5209.89990234},
	{1840.59997559,-1729.19995117,5209.89990234, 1840.59997559+1.25,-1729.19995117,5209.89990234},
	{1837.40002441,-1729.19995117,5209.89990234, 1837.40002441+1.25,-1729.19995117,5209.89990234},
	{1834.19995117,-1729.19995117,5209.89990234, 1834.19995117+1.25,-1729.19995117,5209.89990234},
	{1831.00000000,-1729.19995117,5209.89990234, 1831.00000000+1.25,-1729.19995117,5209.89990234},
	{1827.80004883,-1729.19995117,5209.89990234, 1827.80004883+1.25,-1729.19995117,5209.89990234},
	{1827.80004883,-1714.30004883,5202.79980469, 1827.80004883+1.25,-1714.30004883,5202.79980469},
	{1831.00000000,-1714.30004883,5202.79980469, 1831.00000000+1.25,-1714.30004883,5202.79980469},
	{1834.19995117,-1714.30004883,5202.79980469, 1834.19995117+1.25,-1714.30004883,5202.79980469},
	{1837.40002441,-1714.30004883,5202.79980469, 1837.40002441+1.25,-1714.30004883,5202.79980469},
	{1840.59997559,-1714.30004883,5202.79980469, 1840.59997559+1.25,-1714.30004883,5202.79980469},
	{1843.80004883,-1714.30004883,5202.79980469, 1843.80004883+1.25,-1714.30004883,5202.79980469},
	{1843.80004883,-1714.30004883,5206.39990234, 1843.80004883+1.25,-1714.30004883,5206.39990234},
	{1840.59997559,-1714.30004883,5206.39990234, 1840.59997559+1.25,-1714.30004883,5206.39990234},
	{1837.40002441,-1714.30004883,5206.39990234, 1837.40002441+1.25,-1714.30004883,5206.39990234},
	{1834.19995117,-1714.30004883,5206.39990234, 1834.19995117+1.25,-1714.30004883,5206.39990234},
	{1831.00000000,-1714.30004883,5206.39990234, 1831.00000000+1.25,-1714.30004883,5206.39990234},
	{1827.80004883,-1714.30004883,5206.39990234, 1827.80004883+1.25,-1714.30004883,5206.39990234},
	{1827.80004883,-1714.30004883,5209.89990234, 1827.80004883+1.25,-1714.30004883,5209.89990234},
	{1831.00000000,-1714.30004883,5209.89990234, 1831.00000000+1.25,-1714.30004883,5209.89990234},
	{1834.19995117,-1714.30004883,5209.89990234, 1834.19995117+1.25,-1714.30004883,5209.89990234},
	{1837.40002441,-1714.30004883,5209.89990234, 1837.40002441+1.25,-1714.30004883,5209.89990234},
	{1840.59997559,-1714.30004883,5209.89990234, 1840.59997559+1.25,-1714.30004883,5209.89990234},
	{1843.80004883,-1714.30004883,5209.89990234, 1843.80004883+1.25,-1714.30004883,5209.89990234}

}; //line 111
And these the errors

Код:
C:\Users\\Desktop\SanAndreas-Homeserver\gamemodes\.pwn(74) : error 008: must be a constant expression; assumed zero
C:\Users\\Desktop\SanAndreas-Homeserver\gamemodes\.pwn(111) : error 054: unmatched closing brace ("}")
C:\Users\\Desktop\SanAndreas-Homeserver\gamemodes\.pwn(111) : error 010: invalid function or declaration
C:\Users\\Desktop\SanAndreas-Homeserver\gamemodes\.pwn(1335) : warning 203: symbol is never used: ""
Reply
#2

{1827.80004883,-1729.19995117,5202.79980469, 1827.80004883+1.25,-1729.19995117,5202.79980469},
don't use + integer, calculate it and then add it as:
1829.05004883
Reply
#3

Quote:
Originally Posted by PrinceKumar
Посмотреть сообщение
{1827.80004883,-1729.19995117,5202.79980469, 1827.80004883+1.25,-1729.19995117,5202.79980469},
don't use + integer, calculate it and then add it as:
1829.05004883
but there is much ,that is not otherwise?
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)