ID:150180
 
Here's my attempt at letting the user edit an existing variable. When the message box pops up, it's blank, even if usr.curDatum.blurb already has a value... how else might I approach this?

verb/blurb(T = usr.curDatum.blurb as message)
Setting it like this could allow you to edit it from default value:

mob/verb/Edit()
var/T = input("What to edit?","",usr.blah)as message//The third argument is the default value
usr.blah=T


I doubt this is what you wanted by I thought I would try though.
In response to Nadrew
I doubt this is what you wanted by I thought I would try though.

Actually, come to think of it, that might work better for my purposes. Thanks!
In response to Gughunter
No problem, glad I could help!