#1

Again another error.. i searched ****** but didn't find anything that could help me =s
pawn Код:
new Pickups2[2][2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
Error: error 018: initialization data exceeds declared size
Reply
#2

pawn Код:
new Pickups2[2][][2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
Reply
#3

Quote:
Originally Posted by Pharrel
Посмотреть сообщение
pawn Код:
new Pickups2[2][][2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
still doesn't work..
Reply
#4

pawn Код:
new Pickups2[2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
Reply
#5

it works for me o_O did you put something after those lines :
pawn Код:
{"Binco", 1275},
{"Townhall", 1318}
Reply
#6

pawn Код:
new Pickups2[2][] = {
{"Binco", 1275},
{"Townhall", 1318}
};
Reply
#7

Quote:
Originally Posted by Pharrel
Посмотреть сообщение
it works for me o_O did you put something after those lines :
pawn Код:
{"Binco", 1275},
{"Townhall", 1318}
Doesn't work for me
Reply
#8

try mine Stefans :
pawn Код:
new Pickups2[2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
Reply
#9

i know you already say that... but are you using just those 2 lines inside the

pawn Код:
new Pickups2....
//1 line
//2 lines
};
?

@edit Oh sure...

try that way:
pawn Код:
new Pickups2[][2] = {
{"Binco", 1275},
{"Townhall", 1318}
};
this might work!
Reply
#10

aff srry the double post /\
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)