skill_nocast_db.txt 852 B

123456789101112131415161718192021222324
  1. // Forbidden Skills Database
  2. // Defines unusable skills in map types and zones.
  3. //
  4. // Structure of Database:
  5. // SkillID,Flag
  6. //
  7. // Legend for 'Flag' field (bitmask):
  8. // 1 - cannot be used in normal maps
  9. // 2 - cannot be used in PvP maps (use this instead of 1 for PK-mode servers)
  10. // 4 - cannot be used in GvG maps
  11. // 8 - cannot be used in Battleground maps
  12. // 16 - cannot be cloned (clones will not copy this skill)
  13. // Restricted zones - configured by 'restricted <number>' mapflag
  14. // 32 - cannot be used in zone 1 maps
  15. // 64 - cannot be used in zone 2 maps
  16. // 128 - cannot be used in zone 3 maps
  17. // 256 - cannot be used in zone 4 maps
  18. // 512 - cannot be used in zone 5 maps
  19. // 1024 - cannot be used in zone 6 maps
  20. // 2048 - cannot be used in zone 7 maps
  21. //
  22. // Example:
  23. // 8,6 // Endure cannot be used in PvP and GvG maps (2+4)