Posts: 534
	Threads: 265
	Joined: Jul 2014
	
	
 
	
	
		Hi,
If player in dialog which is input type write anything it will be null? i can check
Код:
if( isnull( inputtext ) )
{
}
 ??
	
		
	
 
 
	
	
	
		
	Posts: 802
	Threads: 41
	Joined: Oct 2014
	
Reputation: 
0
	 
	
	
		this is not good he will get tag mistakes warrning
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 749
	Threads: 76
	Joined: Apr 2013
	
Reputation: 
0
	 
	
	
		You can use Strlen, but i suggest to you to use what Alvord said.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 534
	Threads: 265
	Joined: Jul 2014
	
	
 
 
	
	
	
		
	Posts: 534
	Threads: 265
	Joined: Jul 2014
	
	
 
	
	
		If player write a space and then text? " hello" 
if(inputtext[0] == EOS) //some code here
This mean that this check is == EOS or != EOS?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 10,066
	Threads: 38
	Joined: Sep 2007
	
Reputation: 
0
	 
	
	
		Or just use isnull, correctly demonstrated in the first post. Why must everything be so difficult?