Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. /* ___ ____ ___ _
  2. | __|_ / |_ _|_ ___ _____ _ _| |_ ___ _ _ _ _
  3. | _| / / | || ' \ V / -_) ' \ _/ _ \ '_| || |
  4. |___/___| |___|_||_\_/\___|_||_\__\___/_| \_, |
  5. |Copyright Inside 2014| |__/
  6. |Config|
  7. */
  8.  
  9. EZI.config = {
  10. ToggleKey = KEY_F1, // Replace if you want with any keys from here http://wiki.garrysmod.com/page/Enums/KEY
  11. MaxItems = 255, // Maximum amount of items allowed in inventory.
  12. MaxBankSpace = 20, // Maximum amount of items allowed in bank. This is for the Bank Module.
  13. PickUpSound = Sound("weapons/zoom.wav"), // Sound played when item picked up.
  14.  
  15. ItemRows = 5, // Amount of extra rows for displaying items.
  16. ItemCollumns = 5, // Amount of extra collumns for displaying items.
  17.  
  18. // For example putting 1 on both will give you 4x4 instead of 3x3.
  19. // The window will resize everything for you.
  20.  
  21. AllowEmpty = true, // Allow users to empty their inventory
  22.  
  23. ULX = true, // Set to true if you have ULX
  24. ULXGroups = { "superadmin" }, // Add ULX groups here that you wish to give Admin Access to.
  25.  
  26. ContainerSpace = 25 // Amount of items a container can hold.
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement