error 001: expected token: "}", but found "new"
#1

I received this error: error 001: expected token: "}", but found "new"

Код:
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}};
I tried to put
Код:
};
in a row and everything below it gives me the same error.

What should I do? Please help , thanks !
Reply
#2

You are missing one "}" line before "new Peds[93][1] = {"
Reply
#3

pawn Код:
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} };
Reply
#4

Here's ur fix
Код:
}
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} };
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)