Advertisement
Guest User

Sue Script Config File

a guest
Nov 27th, 2014
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.55 KB | None | 0 0
  1. -- CONFIG SECTION -- Any questions please contact me on ScriptFodder / Steam: JacksonPeeven
  2.  
  3. -- Coloring --
  4.  
  5. SUEMENU.Custom = false -- Set to true to select you own colors, or false to choose one of the premade ones!
  6. SUEMENU.Theme = "thanksgiving" -- Type the theme name into this! Themes: blue, red, green, gold, thanksgiving, and christmas.
  7.  
  8. -- Custom Coloring Below!
  9. if(SUEMENU.Custom == true)then
  10. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  11. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  12. SUEMENU.ChatColor = Color(150,25,25) -- The RGB color for the [SUEMENU] tag for chat informs.
  13. SUEMENU.ChatBaseColor = Color(249,228,123) -- The RGB color for the regular text for chat informs.
  14. SUEMENU.TopicColor = Color(180,130,0) -- The RGB color for the main topics (Ex. Name:, Job:).
  15. SUEMENU.HintColor = Color(150,25,25) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  16. SUEMENU.MainTopicColor = Color(150,25,25) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  17. SUEMENU.HeadColor = Color(84,70,0) -- The RGB color for the background for the title.
  18. SUEMENU.ButtonColor = Color(150,25,25) -- The RGB color for the text on the buttons.
  19. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  20. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  21. end
  22.    
  23.     -- Notification Options --
  24.     SUEMENU.Notify = 3 -- Choose the way the player is notified of the events. 1 = Chat, 2 = On Screen Popup (Ex. Undo Notification), 3 = Both
  25.     SUEMENU.NotificationTimer = 7 -- Sets how long the message will be displayed on the screen. Only applies if Screen Popups above are chosen. (Seconds)
  26.    
  27.     -- Plantiff Options --
  28.    
  29.     SUEMENU.SueWaitTime = .5 -- Time in minutes a player must wait to sue someone again
  30.     SUEMENU.GetSueWaitTime = 1 -- Time in minutes after a player has been sued until he can be sued again
  31.     SUEMENU.MaxSuePrice = 10000 -- Sets the Max Sue Amount
  32.     SUEMENU.MinSuePrice = 1 -- Sets the Min Sue Amount. Do not go below 0!
  33.     SUEMENU.Decay = true -- Sets whether Law Suits will delete themselves after a certain amoun of time.
  34.     SUEMENU.DecayTime = 10 -- Sets the amount of time until a Law Suit is removed. (Minutes) If ^^ is set to true.
  35.    
  36.     -- Defendant Options --
  37.     SUEMENU.RespondTime = 1 -- The time in minutes that a player has to defend his case before it is sent to the Judge.
  38.     SUEMENU.MaxCounterSueEquals =   2 -- 0 : Set the Max Counter-Sue Price below , 1 : Set the maximum Counter-Sue Amount to the Sue Amount. (Sued for 10,000 = Max is 10,000), 2 : Set it for the Counter-Sue Amount max to be a percentage of the Sue Amount.
  39.     SUEMENU.MaxCounterSuePercetageAmount = 80 -- The percentage of the Sue Amount to be the Max Counter-Sue Amount. In Percentage! No '%'!
  40.     SUEMENU.MaxCounterSuePrice = 1000 -- The maximum price a person can Counter-Sue. If MaxCounterSueEquals is set to 0
  41.     SUEMENU.MinCounterSuePrice = 1 -- The minimum price a person can Counter-Sue. Not below 0!
  42.    
  43.     -- Job Options --
  44.     -- Put job name in between the ""
  45.    
  46.     -- Add the Judge classes!
  47.     -- I would seriously recomend that there is a max of 1 player for the job and only 1 job, or else the judge's may judge the same law suit and cause problems.
  48.     SUEMENU.Judge = {"Mayor"}
  49.    
  50.     -- Add jobs that can't sue
  51.     -- To add jobs put a , after "" and add "*teamname*"
  52.     -- Example: {"Mayor", "Civil Protection", "Fire Fighter"}
  53.     SUEMENU.NoSue = {"Civil Protection", "Civil Protection Chief"}
  54.    
  55.     -- Add jobs that can't be sued
  56.     -- To add jobs put a , after "" and add "*teamname*"
  57.     -- Example: {"Mayor", "Civil Protection", "Fire Fighter"}
  58.     SUEMENU.NoSueTeam = {"Admin on Duty"}
  59.    
  60. -- CONFIG SECTION --  MAKE SURE TO RESTART SERVER AFTER ALTERING!!!
  61.  
  62.     SUEMENU.SueSelf = false -- Don't change this, this is for testing purposes only! Make sure it is set to false, or else players can sue themselves, which is No Bueno.
  63.    
  64.     -- Themes --
  65.     -- Here are all of the themes that may be used. Please do not edit these, and only add new ones if you know how it works.
  66.  
  67. if(SUEMENU.Custom == false and SUEMENU.Theme == "blue")then
  68. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  69. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  70. SUEMENU.ChatColor = Color(0,80,150) -- The RGB color for the [SUEMENU] tag for chat informs.
  71. SUEMENU.ChatBaseColor = Color(255,255,255) -- The RGB color for the regular text for chat informs.
  72. SUEMENU.TopicColor = Color(0,110,255) -- The RGB color for the main topics (Ex. Name:, Job:).
  73. SUEMENU.HintColor = Color(0,80,150) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  74. SUEMENU.MainTopicColor = Color(0,80,150) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  75. SUEMENU.HeadColor = Color(65,75,90) -- The RGB color for the background for the title.
  76. SUEMENU.ButtonColor = Color(0,80,150) -- The RGB color for the text on the buttons.
  77. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  78. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  79. end
  80.  
  81. if(SUEMENU.Custom == false and SUEMENU.Theme == "red")then
  82. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  83. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  84. SUEMENU.ChatColor = Color(150,0,0) -- The RGB color for the [SUEMENU] tag for chat informs.
  85. SUEMENU.ChatBaseColor = Color(255,255,255) -- The RGB color for the regular text for chat informs.
  86. SUEMENU.TopicColor = Color(255,0,0) -- The RGB color for the main topics (Ex. Name:, Job:).
  87. SUEMENU.HintColor = Color(150,0,0) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  88. SUEMENU.MainTopicColor = Color(150,0,0) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  89. SUEMENU.HeadColor = Color(60,0,0) -- The RGB color for the background for the title.
  90. SUEMENU.ButtonColor = Color(150,0,0) -- The RGB color for the text on the buttons.
  91. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  92. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  93. end
  94.  
  95. if(SUEMENU.Custom == false and SUEMENU.Theme == "green")then
  96. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  97. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  98. SUEMENU.ChatColor = Color(0,90,10) -- The RGB color for the [SUEMENU] tag for chat informs.
  99. SUEMENU.ChatBaseColor = Color(255,255,255) -- The RGB color for the regular text for chat informs.
  100. SUEMENU.TopicColor = Color(0,150,20) -- The RGB color for the main topics (Ex. Name:, Job:).
  101. SUEMENU.HintColor = Color(0,90,10) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  102. SUEMENU.MainTopicColor = Color(0,90,10) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  103. SUEMENU.HeadColor = Color(0,60,30) -- The RGB color for the background for the title.
  104. SUEMENU.ButtonColor = Color(0,90,10) -- The RGB color for the text on the buttons.
  105. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  106. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  107. end
  108.  
  109. if(SUEMENU.Custom == false and SUEMENU.Theme == "gold")then
  110. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  111. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  112. SUEMENU.ChatColor = Color(170,105,2) -- The RGB color for the [SUEMENU] tag for chat informs.
  113. SUEMENU.ChatBaseColor = Color(249,228,123) -- The RGB color for the regular text for chat informs.
  114. SUEMENU.TopicColor = Color(234,152,40) -- The RGB color for the main topics (Ex. Name:, Job:).
  115. SUEMENU.HintColor = Color(170,105,2) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  116. SUEMENU.MainTopicColor = Color(170,105,2) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  117. SUEMENU.HeadColor = Color(155,103,3) -- The RGB color for the background for the title.
  118. SUEMENU.ButtonColor = Color(170,105,2) -- The RGB color for the text on the buttons.
  119. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  120. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  121. end
  122.  
  123. if(SUEMENU.Custom == false and SUEMENU.Theme == "christmas")then
  124. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  125. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  126. SUEMENU.ChatColor = Color(0,120,15) -- The RGB color for the [SUEMENU] tag for chat informs.
  127. SUEMENU.ChatBaseColor = Color(150,0,0) -- The RGB color for the regular text for chat informs.
  128. SUEMENU.TopicColor = Color(0,150,20) -- The RGB color for the main topics (Ex. Name:, Job:).
  129. SUEMENU.HintColor = Color(150,0,0) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  130. SUEMENU.MainTopicColor = Color(150,0,0) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  131. SUEMENU.HeadColor = Color(0,60,30) -- The RGB color for the background for the title.
  132. SUEMENU.ButtonColor = Color(150,0,0) -- The RGB color for the text on the buttons.
  133. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  134. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  135. end
  136.  
  137. if(SUEMENU.Custom == false and SUEMENU.Theme == "thanksgiving")then
  138. SUEMENU.BackColor = Color(220,220,220,255) -- The RGB color for the background color.
  139. SUEMENU.TitleColor = Color(255,255,255) -- The RGB color for the titles of the menus.
  140. SUEMENU.ChatColor = Color(150,25,25) -- The RGB color for the [SUEMENU] tag for chat informs.
  141. SUEMENU.ChatBaseColor = Color(249,228,123) -- The RGB color for the regular text for chat informs.
  142. SUEMENU.TopicColor = Color(180,130,0) -- The RGB color for the main topics (Ex. Name:, Job:).
  143. SUEMENU.HintColor = Color(150,25,25) -- The RGB color for when there are little hints (Minimum Price:, Maximum Price:).
  144. SUEMENU.MainTopicColor = Color(150,25,25) -- The RGB color for the larger main topics (Defendant *Stuff*, Plantiff *Stuff*).
  145. SUEMENU.HeadColor = Color(84,70,0) -- The RGB color for the background for the title.
  146. SUEMENU.ButtonColor = Color(150,25,25) -- The RGB color for the text on the buttons.
  147. SUEMENU.TextFieldColor = Color(0,0,0) -- The RGB color for the job names.
  148. SUEMENU.OutlineColor = Color(0,0,0) -- The RGB color for the outline of the menu.
  149. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement