Posts: 1,534
	Threads: 179
	Joined: Apr 2009
	
	
 
	
	
		
Quote:
					Originally Posted by  Reklez
 
 
good tutorial but theres mistakes on your code 
pawn Код: 
new RandomMessages[][] = {     "~y~Community Name: ~w~Your Text ~g~here.",     "~y~Community Name: ~w~Your Text ~r~here.",     "~y~Community Name: ~w~Your Text ~y~here.",     "~y~Community Name: ~w~Your Text ~b~here." ] //<<<< will cause errors  
 
should be
 
pawn Код: 
new RandomMessages[][] = {     "~y~Community Name: ~w~Your Text ~g~here.",     "~y~Community Name: ~w~Your Text ~r~here.",     "~y~Community Name: ~w~Your Text ~y~here.",     "~y~Community Name: ~w~Your Text ~b~here." };  
  
 | 
 Thank you, fixed