Advertisement
SynergyRS

Runner

Dec 10th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.*?>
  4. <?import javafx.scene.layout.AnchorPane?>
  5. <?import javafx.scene.layout.VBox?>
  6. <VBox prefHeight="241.0" prefWidth="266.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="scripts.Runner.UI.GUIController">
  7. <children>
  8. <TabPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="266.0" prefWidth="266.0" tabClosingPolicy="UNAVAILABLE">
  9. <tabs>
  10. <Tab text="Runner">
  11. <content>
  12. <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="241.0" prefWidth="266.0">
  13. <children>
  14. <Label layoutX="14.0" layoutY="18.0" prefHeight="17.0" prefWidth="122.0" text="Master Name:" />
  15. <Label layoutX="14.0" layoutY="57.0" prefHeight="17.0" prefWidth="89.0" text="Running Mode:" />
  16. <Label layoutX="14.0" layoutY="96.0" prefHeight="17.0" prefWidth="57.0" text="Location:" />
  17. <TextField fx:id="masterName" layoutX="110.0" layoutY="14.0" prefHeight="25.0" prefWidth="142.0" />
  18. <ChoiceBox fx:id="modeChoice" layoutX="110.0" layoutY="53.0" prefHeight="25.0" prefWidth="142.0" />
  19. <ChoiceBox fx:id="locationChoice" layoutX="110.0" layoutY="92.0" prefHeight="25.0" prefWidth="142.0" />
  20. <Button fx:id="startButton" layoutX="211.0" layoutY="198.0" mnemonicParsing="false" onAction="#startScript" text="Start" />
  21. </children>
  22. </AnchorPane>
  23. </content>
  24. </Tab>
  25. <Tab text="Location Details">
  26. <content>
  27. <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
  28. <children>
  29. <Label layoutX="18.0" layoutY="18.0" prefHeight="17.0" prefWidth="85.0" text="Location Name:" />
  30. <Label layoutX="178.0" layoutY="46.0" prefHeight="17.0" prefWidth="8.0" text="Y" />
  31. <Label layoutX="119.0" layoutY="46.0" prefHeight="17.0" prefWidth="8.0" text="X" />
  32. <Label layoutX="26.0" layoutY="73.0" prefHeight="17.0" prefWidth="50.0" text="Top Left:" />
  33. <Label layoutX="14.0" layoutY="114.0" prefHeight="17.0" prefWidth="74.0" text="Bottom Right:" />
  34. <TextField fx:id="locationName" layoutX="114.0" layoutY="14.0" prefHeight="25.0" prefWidth="135.0" />
  35. <TextField fx:id="topLeftX" layoutX="98.0" layoutY="69.0" prefHeight="25.0" prefWidth="49.0" />
  36. <TextField fx:id="topLeftY" layoutX="157.0" layoutY="69.0" prefHeight="25.0" prefWidth="49.0" />
  37. <TextField fx:id="bottomRightX" layoutX="98.0" layoutY="110.0" prefHeight="25.0" prefWidth="49.0" />
  38. <TextField fx:id="bottomRightY" layoutX="157.0" layoutY="110.0" prefHeight="25.0" prefWidth="49.0" />
  39. <Button fx:id="addLocationButton" layoutX="165.0" layoutY="198.0" mnemonicParsing="false" onAction="#addLocation" text="Add Location" />
  40. </children>
  41. </AnchorPane>
  42. </content>
  43. </Tab>
  44. <Tab text="Options">
  45. <content>
  46. <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
  47. <children>
  48. <Label disable="true" layoutX="16.0" layoutY="18.0" text="Mouse Speed:" />
  49. <Label layoutX="135.0" layoutY="119.0" text=":" />
  50. <Label layoutX="181.0" layoutY="119.0" text=":" />
  51. <TextField fx:id="minMouseSpeed" disable="true" layoutX="97.0" layoutY="14.0" prefHeight="25.0" prefWidth="39.0" text="85" />
  52. <TextField fx:id="stopAfterHour" disable="true" layoutX="95.0" layoutY="115.0" prefHeight="25.0" prefWidth="37.0" text="HH" />
  53. <TextField fx:id="maxMouseSpeed" disable="true" layoutX="149.0" layoutY="14.0" prefHeight="25.0" prefWidth="39.0" text="150" />
  54. <TextField fx:id="stopAfterMinute" disable="true" layoutX="141.0" layoutY="115.0" prefHeight="25.0" prefWidth="37.0" text="MM" />
  55. <TextField fx:id="stopAfterSecond" disable="true" layoutX="187.0" layoutY="115.0" prefHeight="25.0" prefWidth="37.0" text="SS" />
  56. <TextField fx:id="stopAfterItemsAmount" disable="true" layoutX="141.0" layoutY="179.0" prefHeight="25.0" prefWidth="64.0" text="1000" />
  57. <CheckBox fx:id="isDismissRandoms" disable="true" layoutX="11.0" layoutY="53.0" mnemonicParsing="false" text="Dismiss Randoms" />
  58. <CheckBox fx:id="isTalkToGenie" disable="true" layoutX="11.0" layoutY="87.0" mnemonicParsing="false" text="Talk to Genie" />
  59. <CheckBox fx:id="isStopAfterTime" disable="true" layoutX="11.0" layoutY="119.0" mnemonicParsing="false" text="Stop After" />
  60. <CheckBox fx:id="isStopIfLost" disable="true" layoutX="11.0" layoutY="151.0" mnemonicParsing="false" text="Stop if can't find master" />
  61. <CheckBox fx:id="isStopAfterItemsAmount" disable="true" layoutX="11.0" layoutY="183.0" mnemonicParsing="false" text="Stop After Amount" />
  62. </children>
  63. </AnchorPane>
  64. </content>
  65. </Tab>
  66. </tabs>
  67. </TabPane>
  68. </children>
  69. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement