GlorifiedPig

GlorifiedBanking Default Config

Aug 16th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.41 KB | None | 0 0
  1.  
  2. -- NORMAL CONFIGURATION --
  3. glorifiedBanking.config.CONFIGURER_CONFIG_ENABLED = true -- [Temporarily Disabled] If this is enabled, you use the in-game configurer. Changing the configs below will be pointless.
  4.  
  5. glorifiedBanking.config.MAX_WITHDRAWAL = 100000 -- The maximum amount you can withdraw.
  6. glorifiedBanking.config.MAX_DEPOSIT = 100000 -- The maximum amount you can deposit.
  7. glorifiedBanking.config.MAX_TRANSFER = 100000 -- The maximum amount you can transfer.
  8.  
  9. glorifiedBanking.config.ATM_3D2D_COLOUR = Color( 0, 155, 0, 255 ) -- The 3D2D Colour of the "ATM Machine" text.
  10. glorifiedBanking.config.ATM_3D2D_COLOUR_DOLLAR = Color( 0, 255, 0, 255 ) -- The 3D2D Colour of the rotating dollar on top of the ATM.
  11.  
  12. glorifiedBanking.config.ATM_3D2D_ROTATION_SPEED = 0 -- The rotation speed of the floating dollar sign.
  13.  
  14. glorifiedBanking.config.DERMA_BACKGROUND_COLOR = Color( 255, 255, 255, 255 ) -- The default colour of the background on the Derma menu.
  15. glorifiedBanking.config.DEMA_BACKGROUND_SECONDARY_COLOR = Color( 0, 190, 255 ) -- The top colour of the Derma menu.
  16. glorifiedBanking.config.DERMA_BACKGROUND_COLOR_SUBSECTION = Color( 255, 255, 255, 255 ) -- The default colour on the Withdrawal, Deposit and Transfer section.
  17. glorifiedBanking.config.DERMA_BUTTON_COLOUR = Color( 185, 185, 185, 35 ) -- The default button colours of the ATM menu. We suggest you keep the alpha value as low as possible.
  18. glorifiedBanking.config.DERMA_ONCLICK_COLOUR = Color( 55, 55, 55 ) -- The colour that is lerped to when the button is clicked.
  19. glorifiedBanking.config.DERMA_CLOSE_BUTTON_COLOR = Color( 255, 0, 0 ) -- The close button colour.
  20.  
  21. glorifiedBanking.config.ADMIN_INHERIT_MINIMUM = "superadmin" -- The minimum rank requirement (inherits from "x") to be able to use administrative commands.
  22.  
  23. -- All the usergroups that are able to use administrative commands. Group must inherit from 'superadmin'
  24. glorifiedBanking.config.ADMIN_USERGROUPS = {
  25.     "superadmin",
  26.     "owner"
  27. }
  28.  
  29. -- MYSQL CONFIGURATION --
  30. glorifiedBanking.config.MYSQL_ENABLE = false -- Whether or not to enable MySQL. Please be sure you have the libmysql.dll and MySQLOO installed.
  31.  
  32. glorifiedBanking.config.MYSQL_DATABASE_HOST = "127.0.0.1"
  33. glorifiedBanking.config.MYSQL_DATABASE_USERNAME = "root"
  34. glorifiedBanking.config.MYSQL_DATABASE_PASSWORD = ""
  35. glorifiedBanking.config.MYSQL_DATABASE_NAME = "glorifiedBankingDatabase"
  36. glorifiedBanking.config.MYSQL_DATABASE_PORT = 3306
Add Comment
Please, Sign In to add comment