/mob/verb/say_verb(message as text) //The arguments create a popup box automagically.
set name = "Say"
set category = "IC"
usr.say(message)
...
winset(client, "say_window.say_input", "text=[null]") // I need a window ID of the verb input box.
Problem description:
Basically, I need to be able to get a window ID of the input box a verb creates. Is that even possible to do? Or do I really have to create my own skin to replace the verb one and go from that?