SA-MP Forums Archive
roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized (/showthread.php?tid=614234)



roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized - ShiffeyTheGamer - 06.08.2016

Код:
(1024) : error 052: multi-dimensional arrays must be fully initialized
1029) : error 052: multi-dimensional arrays must be fully initialized


new const Float:arrHospitalDeliver[6][3] = {
    {-334.9757, 1063.0171, 19.7392}
    
Line1024:   };

new const Float:arrHospitalSpawns[6][4] = {
	{-318.8799, 1049.2433, 20.3403, 0.0000}
	
Line 1029:   };



Re: roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized - SyS - 06.08.2016

replace size of column and row in empty indexes
[][]
PHP код:
new const Float:arrHospitalDeliver[][] = {
    {-
334.97571063.017119.7392}
    
}; 
PHP код:
new const Float:arrHospitalSpawns[][] = {
    {-
318.87991049.243320.34030.0000}
    
}; 



Re: roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized - ShiffeyTheGamer - 06.08.2016

did not work


Re: roleplay.pwn(1029) : error 052: multi-dimensional arrays must be fully initialized - WhiteGhost - 06.08.2016

PHP код:
new const Float:arrHospitalDeliver[] = { 
    {-
334.97571063.017119.7392
     
};  
new const 
Float:arrHospitalSpawns[] = { 
    {-
318.87991049.243320.34030.0000
     
}; 
Get rid of the empty "[]"