inter_server.conf 1013 B

1234567891011121314151617181920212223242526
  1. /**
  2. * Config for Storages
  3. *
  4. * To access the premium storage, use script command 'openstorage2'.
  5. * If premium storages are added, copy the structure of the storage table and match the table name in this config.
  6. * The 'max' of premium storages are not adjusted by 'vip_storage_increase' config nor MIN_STORAGE.
  7. *
  8. * Structure:
  9. {
  10. id: <storage_id> // (int) Storage ID will be used for script command 'openstorage2'.
  11. name: "<storage name>" // (string) Storage name will be sent to the client to display on the title bar.
  12. table: "<storage_table>" // (string) Name of table where storage is saved. The table stucture is the same as the default storage table.
  13. max: <max_amount> // (int) *optional* Maximum number of items in storage. MAX_STORAGE will be used if no value is defined.
  14. }, // Use comma to add more storages
  15. **/
  16. storages: (
  17. {
  18. // Default Storage
  19. // DO NOT CHANGE THIS UNLESS YOU KNOW WHAT YOU ARE DOING
  20. id: 0
  21. name: "Storage"
  22. table: "storage"
  23. //max: 600
  24. }
  25. )