ID:273098
 
Say I wanted to give players the option to upload custom avatars, and have that displayed on a label control

How would I go about doing that?

winset(usr,"default.avatar","image=[usr.avatar]") isn't cutting it
You'll need to do something like this:

var/image = fcopy_rsc(whatever)
winset(,,"image=\ref[image]")


For more information: [link]