IdFactory.properties 1.2 KB

1234567891011121314151617181920212223242526
  1. # ---------------------------------------------------------------------------
  2. # ID Factory Settings
  3. # ---------------------------------------------------------------------------
  4. # Warning:
  5. # Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
  6. # ---------------------------------------------------------------------------
  7. # Standard Settings
  8. # ---------------------------------------------------------------------------
  9. # Allows selection of new Classes for storage of World Objects.
  10. # This may help servers with large amounts of players receiving error messages related to the L2ObjectHashMap and L2ObejctHashSet classes.
  11. #
  12. # By default it uses the new method, to use the old classes add the comment tag at the front of each of the following two lines.
  13. L2Map = WorldObjectMap
  14. L2Set = WorldObjectSet
  15. # Tell server which IDFactory Class to use:
  16. # Compaction = Original method
  17. # BitSet = One non compaction method
  18. # Stack = Another non compaction method
  19. # Default: BitSet
  20. IDFactory = BitSet
  21. # Check for bad ids in the database on server boot up.
  22. # Much faster load time without it, but may cause problems.
  23. # Default: True
  24. BadIdChecking = True