ID:140239
 
Code:
var/mob/new_mob
mob
verb
gender1()
set hidden=1
set category="Skinverbs"
new_mob.gender="male"
new_mob.hairselection=1
mob
verb
gender2()
set hidden=1
set category="Skinverbs"
new_mob.gender="female"
new_mob.hairselection=2


Problem description:
I am creating a radio push button with the above verbs.
Your indentation is off, the stuff after 'set' should be indented the same as the 'set' line. You should also be sure you're actually creating new_mob with new() and not just making an empty variable.
There's also no reason to use another mob/verb with the gender2 verb.