Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.68 KB | None | 0 0
  1. ###################################################################################################
  2. # Transmogrification config
  3. ###################################################################################################
  4. #
  5. # SETTINGS
  6. #
  7. # Logger.custom.transmog
  8. # Description: Transmogrification logging setting, see logger settings
  9. # Default: 3, Console Server
  10. #
  11. # Transmogrification.EnableTransmogInfo
  12. # Description: Enables / Disables the info button for transmogrification
  13. # Default: 1
  14. #
  15. # Transmogrification.TransmogNpcText
  16. # Description: The npc_text entry of the info menu for transmogrification
  17. # Default: 65000
  18. #
  19. # Transmogrification.Allowed
  20. # Description: A list of item entries that are allowed for transmogrification (skips quality and CanUseItem check)
  21. # Example: "25 35674 5623"
  22. # Default: ""
  23. #
  24. # Transmogrification.NotAllowed
  25. # Description: A list of item entries that are NOT allowed for transmogrification
  26. # Example: "25 35674 5623"
  27. # Default: ""
  28.  
  29. Logger.custom.transmog = 3, Console Server
  30.  
  31. Transmogrification.EnableTransmogInfo = 1
  32. Transmogrification.TransmogNpcText = 65000
  33.  
  34. Transmogrification.Allowed = ""
  35. Transmogrification.NotAllowed = ""
  36.  
  37. #
  38. # COPPER COST
  39. #
  40. # Transmogrification.ScaledCostModifier
  41. # Description: A multiplier for the default gold cost (change to 0 for no default cost)
  42. # Default: 1.0
  43. #
  44. # Transmogrification.CopperCost
  45. # Description: Cost added on top of other costs (can be negative)
  46. # Default: 0
  47. #
  48. # For custom gold cost set ScaledCostModifier to 0.0 and CopperCost to what ever cost you want
  49.  
  50. Transmogrification.ScaledCostModifier = 1.0
  51. Transmogrification.CopperCost = 0
  52.  
  53. #
  54. # TOKEN COST
  55. #
  56. # Transmogrification.RequireToken
  57. # Description: Adds/disables token cost
  58. # Default: 0
  59. #
  60. # Transmogrification.TokenEntry
  61. # Description: Entry of the token item
  62. # Default: 49426
  63. #
  64. # Transmogrification.TokenAmount
  65. # Description: Amount of tokens required
  66. # Default: 1
  67.  
  68. Transmogrification.RequireToken = 0
  69. Transmogrification.TokenEntry = 49426
  70. Transmogrification.TokenAmount = 1
  71.  
  72. #
  73. # REQUIREMENTS
  74. #
  75. # Transmogrification.AllowPoor
  76. # Description: Allow poor quality items to be used as source and target items
  77. # Default: 0
  78. #
  79. # Transmogrification.AllowCommon
  80. # Description: Allow common quality items to be used as source and target items
  81. # Default: 0
  82. #
  83. # Transmogrification.AllowUncommon
  84. # Description: Allow uncommon quality items to be used as source and target items
  85. # Default: 1
  86. #
  87. # Transmogrification.AllowRare
  88. # Description: Allow rare quality items to be used as source and target items
  89. # Default: 1
  90. #
  91. # Transmogrification.AllowEpic
  92. # Description: Allow epic quality items to be used as source and target items
  93. # Default: 1
  94. #
  95. # Transmogrification.AllowLegendary
  96. # Description: Allow legendary quality items to be used as source and target items
  97. # Default: 0
  98. #
  99. # Transmogrification.AllowArtifact
  100. # Description: Allow artifact quality items to be used as source and target items
  101. # Default: 0
  102. #
  103. # Transmogrification.AllowHeirloom
  104. # Description: Allow heirloom quality items to be used as source and target items
  105. # Default: 1
  106. #
  107. # Transmogrification.AllowMixedArmorTypes
  108. # Description: Allow cloth items to be transmogrified with plate for example
  109. # Default: 0
  110. #
  111. # Transmogrification.AllowMixedWeaponTypes
  112. # Description: Allow axe to be transmogrified with dagger for example
  113. # Default: 0
  114. #
  115. # Transmogrification.AllowFishingPoles
  116. # Description: Allow fishing poles to be transmogrified
  117. # Default: 0
  118. #
  119. # Transmogrification.IgnoreReqRace
  120. # Description: Ignore required race for source items
  121. # Default: 0
  122. #
  123. # Transmogrification.IgnoreReqClass
  124. # Description: Ignore required class for source items
  125. # Default: 0
  126. #
  127. # Transmogrification.IgnoreReqSkill
  128. # Description: Ignore required skill for source items
  129. # Default: 0
  130. #
  131. # Transmogrification.IgnoreReqSpell
  132. # Description: Ignore required spell for source items
  133. # Default: 0
  134. #
  135. # Transmogrification.IgnoreReqLevel
  136. # Description: Ignore required level for source items
  137. # Default: 0
  138. #
  139. # Transmogrification.IgnoreReqEvent
  140. # Description: Ignore required event for source items
  141. # Default: 0
  142. #
  143. # Transmogrification.IgnoreReqStats
  144. # Description: Ignore stat count > 0 requirement for source items
  145. # Default: 0
  146.  
  147. Transmogrification.AllowPoor = 0
  148. Transmogrification.AllowCommon = 0
  149. Transmogrification.AllowUncommon = 1
  150. Transmogrification.AllowRare = 1
  151. Transmogrification.AllowEpic = 1
  152. Transmogrification.AllowLegendary = 0
  153. Transmogrification.AllowArtifact = 0
  154. Transmogrification.AllowHeirloom = 1
  155.  
  156. Transmogrification.AllowMixedArmorTypes = 0
  157. Transmogrification.AllowMixedWeaponTypes = 0
  158. Transmogrification.AllowFishingPoles = 0
  159.  
  160. Transmogrification.IgnoreReqRace = 0
  161. Transmogrification.IgnoreReqClass = 0
  162. Transmogrification.IgnoreReqSkill = 0
  163. Transmogrification.IgnoreReqSpell = 0
  164. Transmogrification.IgnoreReqLevel = 0
  165. Transmogrification.IgnoreReqEvent = 0
  166. Transmogrification.IgnoreReqStats = 0
  167.  
  168. #
  169. # SET FEATURE
  170. #
  171. # Transmogrification.EnableSets
  172. # Description: Enables / Disables the set feature. If you want permanent disable, check Transmogrification.h
  173. # Default: 1
  174. #
  175. # Transmogrification.MaxSets
  176. # Description: Maximum amount of sets a player can save (hardcap at 25)
  177. # Default: 10
  178. #
  179. # Transmogrification.EnableSetInfo
  180. # Description: Enables / Disables the info button for set fature
  181. # Default: 1
  182. #
  183. # Transmogrification.SetNpcText
  184. # Description: The npc_text entry of the info menu for the set feature
  185. # Default: 65001
  186. #
  187. # Transmogrification.SetCostModifier
  188. # Description: A multiplier for the default gold cost (all costs summed together) (change to 0 for no default cost)
  189. # Default: 3.0
  190. #
  191. # Transmogrification.SetCopperCost
  192. # Description: Cost added on top of other costs (can be negative)
  193. # Default: 0
  194.  
  195. Transmogrification.EnableSets = 1
  196. Transmogrification.MaxSets = 10
  197.  
  198. Transmogrification.EnableSetInfo = 1
  199. Transmogrification.SetNpcText = 65001
  200.  
  201. Transmogrification.SetCostModifier = 3.0
  202. Transmogrification.SetCopperCost = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement