Advertisement
kiwijunglist

Untitled

Aug 3rd, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #singleinstance force
  2.  
  3. Gui, Add, DropDownList, vHome w300, You want to live on the farm|You love living in the house|You love the ocean
  4. Gui, Add, Button, gSubmit, Submit
  5. Gui, Show
  6. Return
  7.  
  8. ; 1=Farm
  9. ; 2=House
  10. ; 3=Ocean
  11.  
  12. Submit:
  13. Gui, Submit, NoHide
  14. if (Home = "You want to live on the farm")
  15.     Choice := "Farm"
  16. if (Home = "You love living in the house")
  17.     Choice := "House"
  18. if (Home = "You love the ocean")
  19.     Choice := "Ocean"
  20. Msgbox % Choice
  21. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement