I thought of two ways... Either define t as text by calling it in the verb name, and SOMEHOW... make the "typing" variable set once the verb is used...
Or ask for a way to get command_text to work with a verb like the following:
mob/verb/say()
typing = "Typing..."
var/t = input("What would you like to say?")as text|null
world<<"[src]: [t]"
typing = null
Otherwise I can't make it tell when someone is typing with this:
mob/verb/say(t as text)
typing = "Typing..." //This wouldn't work whatsoever.
world<<"[src]: [t]
typing=null
Any ideas?