Advertisement
Guest User

DropDown to new window

a guest
Oct 3rd, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Home:
  2. Gui, Home:Add, Button, x255 y75 w43 h23 gNext, Next
  3. Gui, Home:Add, DropDownList, x85 y45 w120 h90 vSkill, Crafting|Smithing|Cooking|Fletching|Runecraft|Construction|Herblore
  4. Gui, Home:Add, Text, x65 y20 w210 h20, Please select the skill you are training
  5. Gui, Home:Show, w307 h104, Prime Skill Helper - Home
  6. return
  7.  
  8. Crafting:
  9. {
  10.     Gui, Crafting:Add, Button, x255 y75 w43 h23, Next
  11.     Gui, Crafting:Add, DropDownList, x85 y45 w120 h21, DropDownList
  12.     Gui, Crafting:Add, Text, x65 y20 w210 h20, Please select the item you are making
  13.     Gui, Crafting:Show, w307 h104, Prime Skill Helper - Crafting
  14. }
  15. return
  16.  
  17.  
  18. Next:
  19. Gui,Home:Submit
  20. {
  21.     if (Skill = Crafting)
  22.     {
  23.         goto Crafting
  24.     }
  25.     if (Skill = Smithing)
  26.     {
  27.         msgbox,,Prime Skill,Smithing is still a WIP
  28.     }
  29.     if (Skill = Cooking)
  30.     {
  31.         msgbox,,Prime Skill,Cooking is still a WIP
  32.     }
  33.     if (Skill = Fletching)
  34.     {
  35.         msgbox,,Prime Skill,Fletching is still a WIP
  36.     }
  37.     if (Skill = Runecraft)
  38.     {
  39.         msgbox,,Prime Skill,Runecraft is still a WIP
  40.     }
  41.     if (Skill = Herblore)
  42.     {
  43.         msgbox,,Prime Skill,Herblore is still a WIP
  44.     }
  45. }
  46. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement