Posts: 973
	Threads: 10
	Joined: Sep 2012
	
Reputation: 
0
	 
	
	
		Nothing wrong with that line look before that, you put the , character on the last coords.
In short you did this
{x, y, z},
{x, y, z},
{x, y, z},
{x, y, z},
When you should have done this
{x, y, z},
{x, y, z},
{x, y, z},
{x, y, z}
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 98
	Threads: 14
	Joined: Dec 2012
	
Reputation: 
0
	 
	
	
		[nvm i was wrong] And show us the full error.. God, what the * man? -.- FACEPALM.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 213
	Threads: 3
	Joined: Oct 2011
	
Reputation: 
0
	 
	
	
		example:
new Float:RandomSpawnSNIPERDM[][4] = {
    {x,y,z,angle},
    {x,y,z,angle},
    {x,y,z,angle} // look at this line
};