idfactory.properties 1.3 KB

1234567891011121314151617181920212223242526272829
  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. # ---------------------------------------------------------------------------
  8. # Standard Settings
  9. # ---------------------------------------------------------------------------
  10. # Allows selection of new Classes for storage of World Objects.
  11. # This may help servers with large amounts of players receiving error messages related to the L2ObjectHashMap and L2ObejctHashSet classes.
  12. #
  13. # 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.
  14. L2Map = WorldObjectMap
  15. L2Set = WorldObjectSet
  16. # Tell server which IDFactory Class to use:
  17. # Compaction = Original method
  18. # BitSet = One non compaction method
  19. # Stack = Another non compaction method
  20. # Default: BitSet
  21. IDFactory = BitSet
  22. # Check for bad ids in the database on server boot up.
  23. # Much faster load time without it, but may cause problems.
  24. # Default: True
  25. BadIdChecking = True