For example lets say var/a = "Haha", is it possible to later ADD(not literally change)"it sucks to be you"? So later when I refer to that variable it'd have the information "Haha it sucks to be you".
To make it more clear:
var/thevar = "Haha"
mob/verb/Sucks()
thevar += "it sucks to be you" //i'm pretty sure you can't do this...
usr << "[thevar]" //this should output "Haha it sucks to be you"
I was thinking of a list approach...
var/list/ha = list("Haha")
mob/verb/Sucks()
var/thing
ha += "it sucks to be you"
for(var/a in ha)
thing = a
usr << "[thing]"
This outputs the last thing in the list not everything.
Outputs:
Haha!Sucks to be you!