ID:2632065
 
Code:


Problem description:

I'm having some problems to do a proper character creation system. I've actually created one already, but someone with proper BYOND experience told me that creating a character with src.client.mob wasn't a good idea and could give problems with bug abuse.

What i've done before was basically this:

mob/proc
New_Character()
Race()
Name()
Gender()
some other commands.


And basically assigning some icons, vars such as str, hp, and a spawn point for each thing selected. But now, i'm not sure if i can do the same thing with what i've done before, and i'm stuck in:

mob/BeforeCreation/proc
New_Character()
var/mob/character

And i'm stuck here. Can i have some help? I want to do the same system from before, or something better.