Page 1 of 1

Saving a players Custom name

PostPosted: Sat Feb 06, 2010 9:25 pm
by Hblade
Hey I'm making a name-input function, the kind like in pokemon, would it be possible to save the players name? If you cant do this normally then maybe by arrays? For example, NameInput[0] = a, Nameinput[1] = A, stuff like that.

I just need a way to save and load the players name :D

Re: Saving a players Custom name

PostPosted: Sun Feb 07, 2010 1:33 am
by skydereign
You would just use the saveVars and loadVars, like this. The text actor allows you to edit it, though you won't have this when you are normally displaying the name. Click the pacman to save the name.

Re: Saving a players Custom name

PostPosted: Sun Feb 07, 2010 1:55 am
by Hblade
I'm not sure what you mean but I'll download the demo later on :D

What I ment was, say you named a character, okay? (in the game of course), clicked save, and how would you save the name and load the text all in the same saved file as the game's saved files, for example...

You start a new game, input the players name, play for a bit, save, select slot 1, (Which makes a file called Save1.sav). But in that same file that stores the players Stats... Any idea? :D

Re: Saving a players Custom name

PostPosted: Sun Feb 07, 2010 6:13 am
by skydereign
It would be the same thing as in the demo. Assuming you are saving everything using gameEditor made variables, then it is just a string variable. The string variable is a char array size 255.. Since it is one of the gui created variables it should work like any saveVars loadVars variable. Then whenever you want to put the text, you would just use the char string. I don't know how you will be displaying the name, but if you understand string functions than that part should be easy.

Re: Saving a players Custom name

PostPosted: Tue Feb 09, 2010 4:21 pm
by Hblade
LOL i got it mixed up... I thought you couldn't save strings AND actor variables but it was only actor variables lol...

Re: Saving a players Custom name

PostPosted: Thu Feb 11, 2010 8:06 pm
by Bee-Ant
Oh, this is remind me of "Rename" feature on WB2.
Using conversion from hexa code (ascii) to character code :D

Re: Saving a players Custom name

PostPosted: Thu Feb 11, 2010 8:09 pm
by Hblade
Hehe :D