ID:177001
 
how do i make a pop-up where if u choose a thing ur that character?
Leahcim wrote:
how do i make a pop-up where if u choose a thing ur that character?

Do you mean a text/list-style popup box, or one that looks more like a Web page in layout?

If you mean the former, you can use input() for that. Otherwise you should look up browse() and client.Topic().

Lummox JR
In response to Lummox JR
um....... im very new to scripting and i need the text pop-up...... i stink at this
In response to Leahcim
Ok, for the text one you simply call input(Message,Title), and it will return the value entered or selected.
Look up "input proc" in 'Help' -> 'Help On...' -> 'Topic' in Dream Maker.
-DogMan
In response to Dog Man
thx dogman now how do I do the select pop-up? like i click somethin then click ok
In response to Leahcim
Ok, thats an input() as atom in list.
For what your after it will probably look like this.
input("What type of person are you?","Person Test") in list("Tall","Skinny","Ugly")
-DogMan
In response to Dog Man
what if somone chooses somthin? ex: Goku
how would i make it where their icon is that?
In response to Leahcim
STOP CALLING YOUR SELF A BIG NEWBIE, your just a begginer coder, stop doing what all those dbz people do!
In response to Mrhat99au
ok ok i just need help..... i need the Full script of the choosing thing Dogmans didnt work on mine and i also need to know where to put it.....
In response to Leahcim
Ok, look up Login proc, Input proc, list, icon and if proc in 'Help On...' in Dream Maker.
Or take a look at the many tutorials designed for beggingers. Ive heard the ZBT series are rather good.
-DogMan
ok now how do i do if someone chooses a guy it set his icon to that?
In response to Leahcim
You put:
var/I = input("Who do you want to be?","Icon Chooser") in list("An ugly one","A boring one")
if(I == "An ugly one")
usr.icon = 'Ugly.dmi'
if(I == "A boring one")
usr.icon = 'boring.dmi'

'K?