channels.conf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Channel System Configuration File
  2. chsys: (
  3. {
  4. /* Default channels (available to all players) */
  5. default_channels: {
  6. /* channel_name : channel_messages_color */
  7. main: "Yellow"
  8. support: "Blue"
  9. trade: "Red"
  10. chat: "Default"
  11. /* Add as many channels as you'd like. */
  12. }
  13. /* Colors available */
  14. colors: {
  15. Default: "0xffffff" /* Custom channels will use the first in the list unless a color is selected through @channel. */
  16. Red: "0xff0000"
  17. Blue: "0x83cfe9"
  18. Orange: "0xe57c00"
  19. Cyan: "0x00b89d"
  20. Yellow: "0xffff90"
  21. Green: "0x28bf00"
  22. Normal: "0x00ff00"
  23. /* Add as many colors as you'd like. */
  24. }
  25. /* Allow users to create their own (private) channels through @channel command? */
  26. /* (must also allow players to use @channel in groups.conf) */
  27. allow_user_channel_creation: true
  28. /* "map_local_channel" is an instanced channel unique to each map. */
  29. map_local_channel: false
  30. map_local_channel_name: "map"
  31. map_local_channel_color: "Yellow"
  32. map_local_channel_autojoin: true /* Disable autojoin in specific maps through mapflag 'nomapchannelautojoin'. */
  33. /* "ally_channel" is a channel shared by all your guild allies. */
  34. ally_channel_enabled: true
  35. ally_channel_name: "ally"
  36. ally_channel_color: "Green"
  37. ally_channel_autojoin: true
  38. }
  39. )