Chrome Solider wrote:
Miran94 wrote:
Jonatjan135 wrote:
mob
> > > Login()
> > > usr.name = input("What Is Your Name?","Jonathans Coding") as text
> > > var/g = input("What Gender?",null) in list("Male","Female")
> > > if(g=="Male")
> > > loc = locate(1,1,1)//u need to map the icons then making them clickable by using the Click()//
> > > if(g=="Female")
> > > loc = locate(1,1,2)//map all the female icons around this coord and make them clickable by yet again using the Click()//
This is a terrbile code, I fixed it up.
> > mob
> > Login()
> > ..()
> > src.name = input("What Is Your Name?","Jonathans Fixed Coding") as text
> > var/g = input("What Gender?",null) in list("Male","Female")
> > switch(g)
> > if("Male")
> > src.gender = MALE
> > if("Female")
> > src.gender = FEMALE
> > src.loc = locate(1,1,2)
- Miran94
> > mob
> > Login()
> > ..()
> > var/g = input("What Is Your Name?","Jonathans Fixed Coding") as text
> src.name = html_encode(g)//so they can't use html in their name
> > switch(input("What Gender?",null) in list("Male","Female"))
> > if("Male")
> > src.gender = MALE
> > if("Female")
> > src.gender = FEMALE
> > src.loc = locate(1,1,2)
Even better.
Even better.