ID:178829
 
how do you let the player choose their race at login, i've thought and thought but i just can't get it. help me please
thanx, EvilGotenks
EvilGotenks wrote:
how do you let the player choose their race at login, i've thought and thought but i just can't get it. help me please
thanx, EvilGotenks

The Tutorial and Demos and Libraries sections all have stuff covering this.
mob/Login()
..()
var/choice = input("What is your race?") in list("Person","Face")
switch(choice)
if("Person")
icon = 'Person.dmi'
if("Face")
icon = 'Face.dmi'

Also the demos and libs,and my character choice demo(another version im working on right now).

-Kappa the Imp