Avatars

I was surprised to not find any topics for that. I want to make the players to be able to insert their own avatar images in the game with a browse button during runtime. I want the avatars to be copied in some folder so they won’t disappear if the player deletes the avatar from where it has beed when inserted in the game. I have no clue for how do I even approach this. Has somebody done such thing?

Nobody knows ? I searched a lot, bt I couldn’t find functions that would look for an external file. There’s gotta be someone that knows the answer. :spades:

System.IO.File is the framework you are looking for to store files in your standalone windows / osx application or mobile game.
you can store and load data this way.

if you are using the webplayer, you can’t store anything locally only on your own webhost

Thanks, but I couldn’t find such thing in the reference neither in Google, where do I search for this ?

Microsofts MSDN or go-mono where you find documentation on the .NET frameworks in general

and I had a typo above, its System.IO.File actually

So I found it:
http://msdn.microsoft.com/en-us/library/system.io.file.aspx, but I can’t figure out how to use this . Also it says that Javascript is not supported and I’m working with Javascript. All my menus are written in JS :frowning:

Um, sorry for double posting again, but I need help with this. I Can’t seem to find out how to use the framework.

EDIT: Never mind, I got it!