ID:162490
 
What should my proc look like and contain for character creation? Also, what vars should be used?

Also, if you provide code, please leave comments so I understand them better.

Thanks
DadGun
Your proc should look something like this:
proc/character_creation()


You should use normal vars.
mob
var
varone


If you want a demonstration, you can find more than enough if you look in the library/demo section of the developer area. Just look for "login" and "character creation", or just "creation".
In response to Keeth
Keeth wrote:
Your proc should look something like this:
> proc/character_creation()
>


No, no. It should be one of the following:

mob/proc/character_creation()

client/proc/character_creation()

proc/character_creation(var/client/C)

proc/character_creation(var/mob/M)
DadGun wrote:
What should my proc look like and contain for character creation? Also, what vars should be used?

Also, if you provide code, please leave comments so I understand them better.

Thanks
DadGun


Ok here's the thing, no one can tell you anything useful because we don't know what structure your character's information has exactly.
In response to Obs
Nevermind, I've figured it out a long time ago (yesterday). If I could delete this topic I would, but I can't.