ID:149318
 
How can I assign several characters from a string into another seperate string?

E.g.

var/thing = "Hello" var/edit_thing = thing[1] + thing[2] + thing[3]

Thank yap.
You can use copytext() to copy sections of the original (thing) and then add them into the separate string (edit_thing).
In response to ACWraith
ACWraith wrote:
You can use copytext() to copy sections of the original (thing) and then add them into the separate string (edit_thing).

Thank yap.