Advertisement
Guest User

Untitled

a guest
Dec 13th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. [settings]
  2. ## max_points: Maximum points before a player is kicked for tk damage. If a player reaches 150% this amount he will be kicked without warning.
  3. max_points: 400
  4.  
  5. ## levels: Level definitions for tk point levels, comma separated
  6. levels: 0,1,2,20,40
  7.  
  8. ## round_grace: How many seconds after round start is considered firing at spawn (0 = disabled)
  9. round_grace: 7
  10.  
  11. ## issue_warning: Warning issued to players firing at spawn. (before <round_grace> seconds after round start)
  12. issue_warning: sfire
  13.  
  14. ## grudge_enable: [yes/no] should the !grudge command be available
  15. grudge_enable: yes
  16.  
  17. ## private_messages: [yes/no] should messages sent privately to the offending player or should it be sent publicly ?
  18. private_messages: yes
  19.  
  20. ## damage_threshold: [0-100] how many damage points are enough will trigger a tk warning ? (100 damage points represent a kill)
  21. damage_threshold: 100
  22.  
  23. ## warn_level: [0-100] only offenders in a B3 group of level lesser than warn_level will get warned
  24. warn_level: 2
  25.  
  26. ## halflife: how many seconds after the start of the round will all players see their tk points halved. (0 = disabled)
  27. halflife: 0
  28.  
  29. ## warn_duration: how long should tk warnings remain active. 30m = thirty minutes, 1h = one hour, 2d = two days
  30. warn_duration: 30m
  31.  
  32. [messages]
  33. ## ban: message given to banned players as a reason
  34. ban: ^7team damage over limit
  35.  
  36. ## forgive: Message used when a player !forgives another.
  37. ## You can use keywords :
  38. ## $vname : victim's name
  39. ## $aname : attacker's name
  40. ## $point : tk points
  41. ##
  42. forgive: ^7$vname^7 has forgiven $aname [^3$points^7]
  43.  
  44. ## grudged: Message used when a player !grudges another.
  45. ## You can use keywords :
  46. ## $vname : victim's name
  47. ## $aname : attacker's name
  48. ## $point : tk points
  49. ##
  50. grudged: ^7$vname^7 has a ^1grudge ^7against $aname [^3$points^7]
  51.  
  52. ## forgive_many: Message used when a player !forgives many players.
  53. ## You can use keywords :
  54. ## $vname : the victim name
  55. ## $attackers : the list of attacker names
  56. ##
  57. forgive_many: ^7$vname^7 has forgiven $attackers
  58.  
  59. ## forgive_warning: Warning displays when a user is about to be kicked for reaching the max_points.
  60. ## You can use keywords :
  61. ## $name : the player name
  62. ## $cid : the player database identifier
  63. ## $points : the number of damage points to forgive
  64. ##
  65. forgive_warning: ^1ALERT^7: $name^7 auto-kick if not forgiven. Type ^3!forgive $cid ^7to forgive. [^3damage: $points^7]
  66.  
  67. no_forgive: ^7no one to forgive
  68.  
  69. ## players: Message displayed for !forgivelist. "%s" will be replaced with the list of players that can be forgiven
  70. players: ^7Forgive who? %s
  71.  
  72. ## forgive_info: Message displayed for !forgiveinfo
  73. ## You can use keywords :
  74. ## $name : the player name
  75. ## $points : the number of damage points to forgive
  76. ##
  77. forgive_info: ^7$name^7 has ^3$points^7 TK points
  78.  
  79. ## forgive_clear: Message displayed for !forgiveclear
  80. ## You can use keywords :
  81. ## $name : the player name
  82. ## $points : the number of damage points to forgive
  83. ##
  84. forgive_clear: ^7$name^7 cleared of ^3$points^7 TK points
  85.  
  86. ## tk_warning_reason: Warning reason used if a player kill a teammate.
  87. ## You can use keywords :
  88. ## $vname : victim's name
  89. ## $points : tk points
  90. ##
  91. tk_warning_reason: ^3Do not attack teammates, ^1Attacked: ^7$vname ^7[^3$points^7]
  92.  
  93. ## tk_request_action: Call to action is displayed to the victim. "%s" will be replaced with the player name that can be forgiven.
  94. tk_request_action: ^7type ^3!fp ^7 to forgive ^3%s
  95.  
  96. ########################### Levels definitions ##########################
  97. ##
  98. ## For each level define above in 'settings/levels', there must be one
  99. ## section below named after the level number and prefixed with 'level_'.
  100. ##
  101. ## kill_multiplier: How many points times the damage dealt for kills
  102. ## damage_multiplier: How many points times the damage dealt for damage
  103. ## ban_length: How long bans last for players who reach max_points
  104. ##
  105. [level_0]
  106. kill_multiplier: 0.75
  107. damage_multiplier: 0.5
  108. ban_length: 2
  109.  
  110. [level_1]
  111. kill_multiplier: 2
  112. damage_multiplier: 1
  113. ban_length: 2
  114.  
  115. [level_2]
  116. kill_multiplier: 1
  117. damage_multiplier: 0.5
  118. ban_length: 1
  119.  
  120. [level_20]
  121. kill_multiplier: 1
  122. damage_multiplier: 0.5
  123. ban_length: 0
  124.  
  125. [level_40]
  126. kill_multiplier: 0.75
  127. damage_multiplier: 0.5
  128. ban_length: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement