new Peds[93][1] = {
//============================================================================================================================================================= // = Peds //============================================================================================================================================================= new Peds[93][1] = { {0}, {1}, {2}, {7}, {10}, {14}, {15}, {16}, {18}, {20}, {23}, {24}, {25}, {26}, {27}, {28}, {29}, {31}, {32}, {33}, {34}, {35}, {36}, {38}, {39}, {41}, {43}, {44}, {45}, {46}, {49}, {50}, {51}, {52}, {53}, {54}, {55}, {58}, {60}, {62}, {63}, {64}, {66}, {68}, {69}, {72}, {73}, {77}, {78}, {81}, {84}, {87}, {89}, {92}, {95}, {97}, {100}, {101}, {128}, {129}, {131}, {133}, {134}, {140}, {151}, {153}, {155}, {162}, {167}, {170}, {178}, {181}, {183}, {196}, {200}, {202}, {206}, {210}, {212}, {217}, {221}, {225}, {229}, {230}, {234}, {241}, {242}, {248}, {254}, {260}, {262}, {291}, {299}};
This is your second topic asking about a compiler error. Have you considered reading the compiler documentation tosee what they all mean?
|
new Peds[93] = {
0, 1, 2, 7, 10, 14, 15, 16, 18, 20, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 38, 39, 41, 43,
44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 58, 60, 62, 63, 64, 66, 68, 69, 72, 73, 77, 78, 81, 84, 87, 89, 92,
95, 97, 100, 101, 128, 129, 131, 133, 134, 140, 151, 153, 155, 162, 167, 170, 178, 181, 183, 196, 200, 202, 206,
210, 212, 217, 221, 225, 229, 230, 234, 241, 242, 248, 254, 260, 262, 291, 299
};
It's a one dimensional array.
Also you should not put numbers between { } . : PHP код:
|
new Peds[93] = {
};
new Peds[ 93 ] =
{
0, 1, 2, 7, 10, 14, 15, 16, 18, 20, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 38, 39, 41, 43,
44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 58, 60, 62, 63, 64, 66, 68, 69, 72, 73, 77, 78, 81, 84, 87, 89, 92,
95, 97, 100, 101, 128, 129, 131, 133, 134, 140, 151, 153, 155, 162, 167, 170, 178, 181, 183, 196, 200, 202, 206,
210, 212, 217, 221, 225, 229, 230, 234, 241, 242, 248, 254, 260, 262, 291, 299
};
This topic was made for questions not to criticize, do not deserve the level of Beta Tester!
|