SA-MP Forums Archive
error =/ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: error =/ (/showthread.php?tid=169379)



error =/ - LifeStyle - 19.08.2010

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


Re: error =/ - ScottCFR - 19.08.2010

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.


Re: error =/ - LifeStyle - 19.08.2010

Giving me the same error