Advertisement
Guest User

Untitled

a guest
Jul 13th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.36 KB | None | 0 0
  1. # MultiHome config file.
  2. #
  3. # settings:
  4. # messages: Plugin messages are stored here. Customize messages using these entries. Missing entries will not be sent.
  5. # tooManyParameters: Message for when user specifies too many parameters. Variables: none
  6. # defaultHomeSetMessage: Message for when default home is set. Variables: none
  7. # cannotDeleteDefaultHomeMessage: Message for when player tries to delete deafult home. Variables: none
  8. # homeSetMessage: Message for when home is set. Variables: {HOME}
  9. # homeDeletedMessage: Message for when home deleted. Variables: {HOME}
  10. # noHomeMessage: Message for when home not found. Variables: {HOME}
  11. # noDefaultHomeMessage: Message for when default home not found.
  12. # noPlayerMessage: Message for when target player not found. Variables: {PLAYER}'
  13. # warmupMessage: Message for when home warmup initiated. Variables: {SECONDS}
  14. # warmupCompleteMessage: Message for when home warmup completes. Variables: none
  15. # warmupDisruptMessage: Message for when home warmup is disrupted. Variables: none
  16. # cooldownMessage: Message for when cooldown hasn't expired yet. Variables: {SECONDS}
  17. # tooManyHomesMessage: Message for when user tries to set too many homes. Variables: {CURRENT}, {MAX}
  18. # homeListMessage: Message for when home locations listed. Variables: {LIST}
  19. # homeListOthersMessage: Message for when home locations for another player are listed. Variables: {PLAYER}, {LIST}
  20. # homeInviteOwnerMessage: Message to home owner for when invite is granted. Variables: {TARGET} {HOME}
  21. # homeInviteTargetMessage: Message to invite target for when invite is granted. Variables: {OWNER} {HOME}
  22. # homeInviteTimedOwnerMessage: Message to home owner for when timed invite is granted. Variables: {TARGET} {HOME} {TIME}
  23. # homeInviteTimedTargetMessage: Message to invite target for when timed invite is granted. Variables: {OWNER} {HOME} {TIME}
  24. # homeUninviteOwnerMessage: Message to home owner for when invite is retracted. Variables: {TARGET} {HOME}
  25. # homeUninviteTargetMessage: Message to invite target for when invite is retracted. Variables: {OWNER} {HOME}
  26. # homeListInvitesToMe: Message to use when listing invites open to this player. Variables: {TARGET} {LIST}
  27. # homeListInvitesToOthers: Message to use when listing invites open to other players. Variables: {OWNER} {LIST}
  28. # econNotEnoughFunds: Message to use when a player does not have enough money for a command. Variables {AMOUNT}
  29. # econDeductedForHome: Message to use when a player is charged for teleporting. Variables: {AMOUNT}
  30. # econDeductForSet: Message to use when a player is charged for setting a home. Variables: {AMOUNT}
  31. # deafult: Default settings for all users are stored here.
  32. # warmup: Amount of time to wait before a /home command executes.
  33. # cooldown: Amount of time to wait before /home can be used again.
  34. # maxhomes: Maximum number of homes this group may have. Use -1 to signify no limit.
  35. # disruptWarmup: Whether a players teleport will be cancelled if they are attacked. 0 for false, 1 for true
  36. # setHomeCost: Amount to charge a player when setting their default home
  37. # setNamedHomeCost: Amount to charge a player when setting a named home
  38. # homeCost: Amount to charge a player when they use /home
  39. # namedHomeCost: Amount to charge a player when using /home to a named home
  40. # othersHomeCost: Amount to charge a player when they use /home to warp to another players home
  41. #
  42. # When editing this file for the first time, please duplicate the groups.default section
  43. # for each of your defined Permissions groups.
  44.  
  45. MultiHome:
  46. enableHomeOnDeath: false
  47. enableEconomy: false
  48. messages:
  49. tooManyParameters: 'Too many parameters.'
  50. defaultHomeSetMessage: 'Deafult home set.'
  51. cannotDeleteDefaultHomeMessage: 'You cannot delete your default home location.'
  52. homeSetMessage: 'Home {HOME} set.'
  53. homeDeletedMessage: 'Home {HOME} deleted.'
  54. noHomeMessage: 'Home {HOME} not set.'
  55. noDefaultHomeMessage: 'Home not set.'
  56. noPlayerMessage: 'Player {PLAYER} not found.'
  57. warmupMessage: 'Home initiated. Transfer in {SECONDS} seconds.'
  58. warmupCompleteMessage: 'Teleporting now!'
  59. warmupDisruptMessage: 'Your teleport has been disrupted!'
  60. cooldownMessage: 'You may not teleport yet. Please wait another {SECONDS} seconds.'
  61. tooManyHomesMessage: 'Cannot set home location. You have already set {CURRENT} out of {MAX} homes.'
  62. homeListMessage: 'Home locations: {LIST}'
  63. homeListOthersMessage: 'Home locations for {PLAYER}: {LIST}'
  64. homeInviteOwnerMessage: 'Invite extended to {TARGET}.'
  65. homeInviteTargetMessage: '{OWNER} invited you to their home. To accept, use this command: /home {OWNER}:{HOME}'
  66. homeInviteTimedOwnerMessage: 'Invite extended to {TARGET} for {TIME} seconds.'
  67. homeInviteTimedTargetMessage: '{OWNER} invited you to their home for {TIME} seconds. To accept, use this command: /home {OWNER}:{HOME}'
  68. homeUninviteOwnerMessage: 'You have retracted your invite for {TARGET} to visit your home: [{HOME}]'
  69. homeUninviteTargetMessage: '{OWNER} has retracted their invite to to their home: [{HOME}]'
  70. homeListInvitesToMe: 'Invites open to you: {LIST}'
  71. homeListInvitesToOthers: 'Invites you have open: {LIST}'
  72. econNotEnoughFunds: 'You did not have {AMOUNT} to do that.'
  73. econDeductedForHome: '{AMOUNT} was removed from your account for going home.'
  74. econDeductForSet: '{AMOUNT} was removed from your account for setting a home.'
  75. econNotEnoughFunds: 'You did not have {AMOUNT} to do that.'
  76. default:
  77. warmup: 0
  78. cooldown: 0
  79. maxhomes: 5
  80. disruptWarmup: true
  81. setHomeCost: 0
  82. setNamedHomeCost: 0
  83. homeCost: 0
  84. namedHomeCost: 0
  85. othersHomeCost: 0
  86. Guest:
  87. warmup: 0
  88. cooldown: 0
  89. maxhomes: 1
  90. disruptWarmup: true
  91. setHomeCost: 0
  92. setNamedHomeCost: 0
  93. homeCost: 0
  94. namedHomeCost: 0
  95. othersHomeCost: 0
  96. Member:
  97. warmup: 0
  98. cooldown: 0
  99. maxhomes: 3
  100. disruptWarmup: true
  101. setHomeCost: 0
  102. setNamedHomeCost: 0
  103. homeCost: 0
  104. namedHomeCost: 0
  105. othersHomeCost: 0
  106. Seasoned:
  107. warmup: 0
  108. cooldown: 0
  109. maxhomes: 4
  110. disruptWarmup: true
  111. setHomeCost: 0
  112. setNamedHomeCost: 0
  113. homeCost: 0
  114. namedHomeCost: 0
  115. othersHomeCost: 0
  116. Veteran:
  117. warmup: 0
  118. cooldown: 0
  119. maxhomes: 5
  120. disruptWarmup: true
  121. setHomeCost: 0
  122. setNamedHomeCost: 0
  123. homeCost: 0
  124. namedHomeCost: 0
  125. othersHomeCost: 0
  126. Iron:
  127. warmup: 0
  128. cooldown: 0
  129. maxhomes: 10
  130. disruptWarmup: true
  131. setHomeCost: 0
  132. setNamedHomeCost: 0
  133. homeCost: 0
  134. namedHomeCost: 0
  135. othersHomeCost: 0
  136. Gold:
  137. warmup: 0
  138. cooldown: 0
  139. maxhomes: 15
  140. disruptWarmup: true
  141. setHomeCost: 0
  142. setNamedHomeCost: 0
  143. homeCost: 0
  144. namedHomeCost: 0
  145. othersHomeCost: 0
  146. Diamond:
  147. warmup: 0
  148. cooldown: 0
  149. maxhomes: 20
  150. disruptWarmup: true
  151. setHomeCost: 0
  152. setNamedHomeCost: 0
  153. homeCost: 0
  154. namedHomeCost: 0
  155. othersHomeCost: 0
  156. Platinum:
  157. warmup: 0
  158. cooldown: 0
  159. maxhomes: 25
  160. disruptWarmup: true
  161. setHomeCost: 0
  162. setNamedHomeCost: 0
  163. homeCost: 0
  164. namedHomeCost: 0
  165. othersHomeCost: 0
  166. Mod:
  167. warmup: 0
  168. cooldown: 0
  169. maxhomes: -1
  170. disruptWarmup: true
  171. setHomeCost: 0
  172. setNamedHomeCost: 0
  173. homeCost: 0
  174. namedHomeCost: 0
  175. othersHomeCost: 0
  176. Admin:
  177. warmup: 0
  178. cooldown: 0
  179. maxhomes: -1
  180. disruptWarmup: true
  181. setHomeCost: 0
  182. setNamedHomeCost: 0
  183. homeCost: 0
  184. namedHomeCost: 0
  185. othersHomeCost: 0
  186. Owner:
  187. warmup: 0
  188. cooldown: 0
  189. maxhomes: -1
  190. disruptWarmup: true
  191. setHomeCost: 0
  192. setNamedHomeCost: 0
  193. homeCost: 0
  194. namedHomeCost: 0
  195. othersHomeCost: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement