ID:145124
 
Code:
mob
proc
Icon()
if(usr.sex == "1")
usr.icon = 'MageMaleBase.dmi'
usr.SkinChoose()
if(usr.sex == "2")
usr.icon = 'MageFemaleBase.dmi'
usr.SkinChoose()


Thats my Icon() proc.

                if("Mage")
usr.profession="Mage"
usr.strength=3
usr.defence=4
usr.exp=0
usr.maxexp=50
usr.gold=25
usr.energy=50
usr.maxenergy=50
usr.health=75
usr.maxhealth=75
usr.level=1
usr.Icon()

Above is what is supposed to send me to the Icon() proc
Below is my proc where you choose your sex
mob
proc
Sex()
switch(input("What Gender are you?","Avon.",text) in list("Male","Female"))
if("Male")
usr.sex=1
usr.ProfessionChoose()
if("Female")
usr.sex=2
usr.ProfessionChoose()


Problem description:
Why when I try to call on the Icon() proc it doesnt send me there? The screen doesnt move after you choose your profession. Any help is much appreciated :)
No usr in proc
In response to Derekjeterisgod
Problem Resolved :)