Guest User

Untitled

a guest
Apr 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(bb_fovappGUI) {
  3. profile = "GuiDefaultProfile";
  4. horizSizing = "right";
  5. vertSizing = "bottom";
  6. position = "0 0";
  7. extent = "640 480";
  8. minExtent = "8 2";
  9. visible = "1";
  10.  
  11. new GuiWindowCtrl() {
  12. profile = "GuiWindowProfile";
  13. horizSizing = "right";
  14. vertSizing = "bottom";
  15. position = "103 68";
  16. extent = "184 339";
  17. minExtent = "8 2";
  18. visible = "1";
  19. text = "Fov Swap 1.0";
  20. maxLength = "255";
  21. resizeWidth = "1";
  22. resizeHeight = "1";
  23. canMove = "1";
  24. canClose = "1";
  25. canMinimize = "1";
  26. canMaximize = "1";
  27. minSize = "50 50";
  28. };
  29. new GuiButtonCtrl() {
  30. profile = "GuiButtonProfile";
  31. horizSizing = "right";
  32. vertSizing = "bottom";
  33. position = "127 154";
  34. extent = "140 30";
  35. minExtent = "8 2";
  36. visible = "1";
  37. command = "setfov(90);";
  38. text = "90° (Default)";
  39. groupNum = "-1";
  40. buttonType = "PushButton";
  41. };
  42. new GuiButtonCtrl() {
  43. profile = "GuiButtonProfile";
  44. horizSizing = "right";
  45. vertSizing = "bottom";
  46. position = "127 198";
  47. extent = "140 30";
  48. minExtent = "8 2";
  49. visible = "1";
  50. command = "setfov(110);";
  51. text = "110° (Quake 3 Pro)";
  52. groupNum = "-1";
  53. buttonType = "PushButton";
  54. };
  55. new GuiButtonCtrl() {
  56. profile = "GuiButtonProfile";
  57. horizSizing = "right";
  58. vertSizing = "bottom";
  59. position = "127 242";
  60. extent = "140 30";
  61. minExtent = "8 2";
  62. visible = "1";
  63. command = "setfov(120);";
  64. text = "120°";
  65. groupNum = "-1";
  66. buttonType = "PushButton";
  67. };
  68. new GuiButtonCtrl() {
  69. profile = "GuiButtonProfile";
  70. horizSizing = "right";
  71. vertSizing = "bottom";
  72. position = "127 285";
  73. extent = "140 30";
  74. minExtent = "8 2";
  75. visible = "1";
  76. command = "setfov(160);";
  77. text = "160° (Real Life FoV)";
  78. groupNum = "-1";
  79. buttonType = "PushButton";
  80. };
  81. new GuiButtonCtrl() {
  82. profile = "GuiButtonProfile";
  83. horizSizing = "right";
  84. vertSizing = "bottom";
  85. position = "126 331";
  86. extent = "140 30";
  87. minExtent = "8 2";
  88. visible = "1";
  89. command = "setfov(180);";
  90. text = "180° (Trippin\')";
  91. groupNum = "-1";
  92. buttonType = "PushButton";
  93. };
  94. new GuiTextCtrl() {
  95. profile = "GuiTextProfile";
  96. horizSizing = "right";
  97. vertSizing = "bottom";
  98. position = "125 116";
  99. extent = "140 25";
  100. minExtent = "8 2";
  101. visible = "1";
  102. text = "Welcome to FoV Swap 1.0!";
  103. maxLength = "255";
  104. };
  105. };
  106. //--- OBJECT WRITE END ---
Add Comment
Please, Sign In to add comment