In response to Miran94
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.
In response to Chrome Solider
Now can we add a save and load verb?? if so were all set now..

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.
In response to Robertg0123
You're in no position to say that he's wasting forum space. You've wasted just as much space on this forum as him, and your a fool to think that the DM guide doesn't help, and you, therefor wont read it, when you obviously need to. If you read the DM guide, you should be able to interpret what someone is talking about when they explain how to do it, without giving out code.


If you want HTML included in it, mix it together, after you learn HTML.

Take a look at Dantom's form demo, too.
In response to Miran94
lmao tbh i dont see what youve done to greatly improve it?
In response to Tweelik
You are in no position to be rude. But you are doing it anyway. Obviously I read it by now and I am still having difficulty. Posting in the developer how-to forum is saying I have looked into it and cannot figure it out. That is why I am asking of some help. You said if I read the DM guide I SHOULD be able to figure out what is happening, well I read it and nothing. Only reason for your post is to be mean. That was not helpful in the least.

Tweelik wrote:
You're in no position to say that he's wasting forum space. You've wasted just as much space on this forum as him, and your a fool to think that the DM guide doesn't help, and you, therefor wont read it, when you obviously need to. If you read the DM guide, you should be able to interpret what someone is talking about when they explain how to do it, without giving out code.


If you want HTML included in it, mix it together, after you learn HTML.

Take a look at Dantom's form demo, too.
In response to Robertg0123
How was that not helpful? Do I just have to give it away to you? Are you too lazy to learn html, search the forum and look over dantom's form demo, so you CAN know how to do this?

HTML will teach you what you need to know to actually create things like radio buttons, drop-down menus, ect.

The form demo by Dantom and his html_lib should help with implementing it into BYOND.


Searching the forum will find other topics asking the same question.
In response to Tweelik
It was not helpful. I know how to HTML just not that well. I am not spending hours trying to learn it and understand it. HTML does teach you much. Obviously one thing it did not teach you is how not to be rude. It should help, does not mean it will. Searching the forum, do not think I am an idiot, before I posted I searched the forums.
Page: 1 2