ID:2250680
 
(See the best response by Nadrew.)
Code:
mob
var/message_board_slot = 0
verb
MessagePane(t as text) // We use this to change the interface.
set hidden = 1
for(var/obj/Message_Board/O in world)
if(t == "oneoutput")
message_board_slot = 1
winset(usr,"mboutput.Topic","text=[O.Topic_1]")
winset(usr,"mboutput.Message","text=[O.Message_1]")


Problem description:
I keep gettng this error in options and messages but im quite sure I used the correct code lines.

"winset: Parameter mbinput.Message.(null) not found."

The messages and topics come up on the interface board but not in full, just the first word for each.
Best response
You'll want to add escaped quotes around your values like
"text=\"[value]\""
Oh! Yes, completely forgot that! I had them before, no idea why i took them out Feel so stupid.