A good example of what I mean is when you want to make an introduction message for new users... the easiest way is to do it like this:
mob
proc
WelcomeMessage(msg as message)
usr << "Thank you for playing Gangsters Ambition - Dope Wars... In this game you will start off as the underdog and slowly make your way up the ladder to that big guy everyone on your block wishes they could be... How do you get there?"
sleep(100)
usr << "The first thing you need to know is that on the streets, Drug Dealing with the right state of mind, can lead you all the way to success, or end you up in Jail. You need to know how to strategize to evade the law and make that paper you want so bad."
sleep (50)
usr << "Let's Begin, Welcome to Gangsters Amibition - Dope Wars."
world << "New User: [usr] Logged In"
What I'm wondering is how to get the dialogues that would usually be output in the browser under {usr} to show up as a textbox with dialogue, and if possable a next, cancel button.
Problem description:I'm not familiar with how to make basic text box dialogue in coding.
the "as" type affects how the input() box shows up.
acceptable "as" types are:
alert() is also a way to show dialogue using the built-in windows controls. Alert() is probably what you are looking for instead.