ID:160376
 
Most games in input bar have something like: OCC " and so on.
How to remove any command there, and force default command to be say, or some else?
client
command_text = "What i want it to say here"
In response to Jamckell
Per the reference, client.command_text is outmoded and should no longer be used unless you're intent on using the default skin. For users creating their own skin, it's better to set the input control's command parameter to something like "!defaultverb", where the ! goes in front of the command.

// an example of how to do this at runtime
var/params = list("command" = "!say \"")
winset(usr, "input", list2params(params))


Lummox JR