mob/player
if mob/Races=
(icon='player.dmi')(icon_state="Hylian")
icon='player.dmi'
icon_state="player"
_________________________________
I am trying to refer to this code(below) in the code above but i'm not sure how.
mob/Races
Human
Hylian
Goron
Gerudo
Zora
mob/var/mob/Races/raceMob
mob/proc/SelectRace()
var/list/raceOptions=list()
for(var/v in typesof(/mob/Races)-/mob/Races) raceOptions+=new v
src.raceMob=input(src,"Select Race","Race") in raceOptions
src<<"You are a [src.raceMob]"
mob/Login()
src.SelectRace()
return ..()
Read over the Guide and Reference and learn some more.