Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2014
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. case "!rules"://Backround
  2. {
  3. insim.Send(new IS_BTN
  4. {
  5. ReqI = 255,
  6. UCID = MSO.UCID,
  7. ClickID = 1,
  8. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK,
  9. T = 30,
  10. L = 45,
  11. W = 100,
  12. H = 50,
  13. Text = "",
  14. });
  15. var buttons = new List<IS_BTN> {
  16. new IS_BTN
  17. {
  18. ReqI = 3,
  19. UCID = MSO.UCID,
  20. ClickID = 2,
  21. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK,
  22. T = 30,
  23. L = 45,
  24. W = 100,
  25. H = 10,
  26. Text = "^4N^1C^7 Rule List", },
  27. new IS_BTN
  28. {
  29. ReqI = 4,
  30. UCID = MSO.UCID,
  31. ClickID = 3,
  32. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  33. T = 40,
  34. L = 45,
  35. W = 100,
  36. H = 5,
  37. Text = "^4N^1C^3**^7Ramming Is Not Allowed!", },
  38. new IS_BTN
  39. {
  40. ReqI = 5,
  41. UCID = MSO.UCID,
  42. ClickID = 5,
  43. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  44. T = 45,
  45. L = 45,
  46. W = 100,
  47. H = 5,
  48. Text = "^4N^1C^3**^7Respect Others Including Admins!", },
  49. new IS_BTN
  50. {
  51. ReqI = 6,
  52. UCID = MSO.UCID,
  53. ClickID = 6,
  54. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  55. T = 50,
  56. L = 45,
  57. W = 100,
  58. H = 5,
  59. Text = "^4N^1C^3**^7No Swearing Is Allowed!", },
  60. new IS_BTN
  61. {
  62. ReqI = 7,
  63. UCID = MSO.UCID,
  64. ClickID = 7,
  65. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  66. T = 55,
  67. L = 45,
  68. W = 100,
  69. H = 5,
  70. Text = "^4N^1C^3**^7No Racism!", },
  71. new IS_BTN
  72. {
  73. ReqI = 8,
  74. UCID = MSO.UCID,
  75. ClickID = 8,
  76. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  77. T = 60,
  78. L = 45,
  79. W = 100,
  80. H = 5,
  81. Text = "^4N^1C^3**^7No Namecalling!", },
  82. new IS_BTN
  83. {
  84. ReqI = 9,
  85. UCID = MSO.UCID,
  86. ClickID = 9,
  87. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  88. T = 65,
  89. L = 45,
  90. W = 100,
  91. H = 5,
  92. Text = "^4N^1C^3**^7No Insulting!", },
  93. new IS_BTN
  94. {
  95. ReqI = 10,
  96. UCID = MSO.UCID,
  97. ClickID = 10,
  98. BStyle = ButtonStyles.ISB_DARK | ButtonStyles.ISB_CLICK | ButtonStyles.ISB_LEFT,
  99. T = 70,
  100. L = 45,
  101. W = 100,
  102. H = 10,
  103. Text = "^4N^1C^3**^3>>>>>>^7SHIFT+I - To Delete This^3<<<<<<<<<<<", },
  104. // Etc...
  105.  
  106. };
  107.  
  108. // Send list in one go.
  109. insim.Send(buttons);
  110. break;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement