error =/
#1

Код:
error 018: initialization data exceeds declared size
Код:
#define MAX_QUESTS 2
//============================
new QuestName[MAX_QUESTS][2]={
{"What Quest?"},
{"The Next Task."}
};
Thanks
Reply
#2

Try switching '2' and max quests
pawn Код:
#define MAX_QUESTS 2
//============================
new QuestName[2][MAX_QUESTS]={
{"What Quest?"},
{"The Next Task."}
};
EDIT: Now I'm wondering if you can delete the whole 'MAX_QUESTS' part.
Reply
#3

Giving me the same error
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)