SA-MP Forums Archive
Minor Problem I cant seem to figure out - 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: Minor Problem I cant seem to figure out (/showthread.php?tid=174749)



Minor Problem I cant seem to figure out - Will77 - 06.09.2010

So I'm having this minor problem:

Код:
wrp.pwn(3558) : error 052: multi-dimensional arrays must be fully initialized
Heres lines 3556-3558:

Код:
{177},
{184}
};



Re: Minor Problem I cant seem to figure out - Mauzen - 06.09.2010

What is the start of your array (the new ... stuff)
Without it, Id guess you do not need the {} for every single value, try it like this

pawn Код:
...
177,
184
};



Re: Minor Problem I cant seem to figure out - Will77 - 06.09.2010

The start of the array:

Код:
new JoinPed[69][1] = {



Re: Minor Problem I cant seem to figure out - Will77 - 06.09.2010

I've tried, still not working.


Re: Minor Problem I cant seem to figure out - Will77 - 06.09.2010

The hell do I do?