Errors Enum
#1

two errors:
error 018: initialization data exceeds declared size
error 010: invalid function or declaration

Код:
enum CheckPointsInfo
{
	Float:CP_X,
	Float:CP_Y,
	Float:CP_Z
};

new Float:cpInfo[4][CheckPointsInfo] =
{
	{225.51883, 1872.50427, 12.91019},
	{955.56506, 2059.74561, 9.81664},
	{-655.87238, 916.86169, 10.85824},
	{-1402.72473, 2625.28833, 54.76358}, // error 018
	{-203.52759, 1186.51062, 18.73560}
}; // erro 010
Reply
#2

pawn Код:
new Float:cpInfo[5][CheckPointsInfo]
Reply
#3

PHP код:
new cpInfo[][CheckPointsInfo] =
{
    {
225.518831872.5042712.91019},
    {
955.565062059.745619.81664},
    {-
655.87238916.8616910.85824},
    {-
1402.724732625.2883354.76358},
    {-
203.527591186.5106218.73560}
}; 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)