Posts: 87
	Threads: 26
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		what do you mean by this? I can't understand you!
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 87
	Threads: 26
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		So why should I use Variable NEW?
and when you wrote..
NEW var;
var=1
what this will do in my server?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 6,236
	Threads: 310
	Joined: Jan 2011
	
Reputation: 
0
	 
	
	
		It will create the variable called 'var' and set it to 1. 'new' declares (creates) a variable.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 87
	Threads: 26
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		I mean : 
new variable
what this will Change in my server?
BTW thanks for helping me Special thank for you!! (+1 Rep for you)
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 2,169
	Threads: 206
	Joined: Jul 2010
	
Reputation: 
0
	 
	
	
		@Andrew97 
It will not change you're server, just defining a variable to the gamemode.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 6,236
	Threads: 310
	Joined: Jan 2011
	
Reputation: 
0
	 
	
	
		It won't 'DO' anything. It's memory.
P.S. You need 50 posts to give rep.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 87
	Threads: 26
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		Like If I made: New PLayers= 0
then onplayerconnect:
players ++
this will Count the players online?