gms_chat_istyping
	
		Usage: gms_chat_istyping (  )
	
 
Description
	Returns whether the player is typing anything in the chat box. By default, you can use Enter to send a chat message.
 
	
 
Replies (5)
	
		
			
				
					Last message on 21 Apr 2020
				
				
					
				
			
		 
		
		
		
	
		
		
			Hi I have a problem here is my command
in steped event
if (gms_chat_istyping)
{
}
else if (C = true) 
{
inventory = true
}
		
		
	 
	
	
		
		
			it works but after i chat i cant open gui anymore
		
		
	 
	
	
		
			
				
					Size43
					
					(Administrator)
					
					on
					21 Apr 2020, 10:48:48
				
				
					
				
			 
		 
		
			You're missing the () on the gms_chat_istyping call.
		
		
	 
	
  
  
 
	
		
		
			Is there a way to get if another person is typing? Like a gms_chat_other_istyping()?
		
		
	 
	
	
		
		
			Oh wait, nevermind. Disregard this. I found out I could use gms_self_set and gms_other_get to achieve what I wanted.