Machica38

Traduction

May 17th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. # |\---------------ItemSlotMachine------------/|
  2. # |/ \|
  3. # |\ Config /|
  4. # |/ \|
  5. # |\------------------------------------------/|
  6.  
  7. # Copyright DarkBlade12; Tout droit reserve.
  8. # DarkBlade12 est le createur respective du plugins.
  9. # Configuration modifie et traduit par machica38
  10. # Parametre de l argent
  11. Money:
  12.  
  13. # C est la valeurs de base du pot
  14. # Il faut mettre des chiffres
  15. DefaultPotSize: 100000.0
  16.  
  17. # C est le pris des hetons
  18. # Il faut mettre des chiffres
  19. CoinCost: 10.0
  20.  
  21. # C est se qui est ajoute au pot quand on met un jetons
  22. # Il faut mettre des chiffres
  23. PotAdd: 1000.0
  24.  
  25. # Mettre false si vous voulez desactive les multiplier ou touchez pas si vous voulez garde
  26. EnableMultipliers: true
  27.  
  28. # C est la list des multipliers
  29. # Sa multiplie le pot quand vous gagns
  30. # Vous pouvez ajoute des combot spécifique
  31. Multipliers:
  32.  
  33. # Voici un exemple
  34. # Si tu a trois fois l item 279 tu fait un combot
  35. # Data value usage: ITEMID,DATA
  36. 279: 2.0
  37.  
  38.  
  39. # List des item bonus
  40. ItemSettings:
  41.  
  42. # Mettais fals si vous voulez pas qu on gagne des item
  43. DistributeItems: true
  44.  
  45. # List des items qui peuvent etre gagne
  46. # Les multiplier sont aussi applique ici
  47. # Data value usage: ITEMID,AMOUNT,DATA
  48. # Normal usage: ITEMID,AMOUNT
  49. Items:
  50. - 388,5
  51. - 348,10
  52. - 371,9
  53. - 264,1
  54. - 265,20
  55. - 351,10,4
  56.  
  57. # This enables/disables that all items on the list will be given to the player
  58. # If this is disabled it'll use the "DistributeAmount"
  59. DistributeAll: false
  60.  
  61. # This is the amount of items that will be given to the player
  62. # This will pick a specific amount of random items from the list
  63. # "DistributeAll" will override this
  64. DistributeAmount: 3
  65.  
  66. # This enables/disables combo settings
  67. EnableCombos: true
  68.  
  69. # This is a list of combos
  70. # These will give the player special items instead of the normal in the list above
  71. Combos:
  72.  
  73. # This is an example for a combo
  74. # If you have 3 of them in a row it'll be active (item with id 279)
  75. # Data value usage: ITEMID,DATA
  76. 279:
  77.  
  78. # Data value usage: ITEMID,AMOUNT,DATA
  79. # Normal usage: ITEMID,AMOUNT
  80. - 264,3
  81. - 49,30
  82. - 267,1
  83. - 19,20
  84.  
  85. # List of general settings
  86. General:
  87.  
  88. # This enables/disables that a user can only play at one slot machine at the same time
  89. OnlyOneTime: true
  90.  
  91. # This enables/disables the ticking noise of a slot machine while running
  92. TickingNoise: true
  93.  
  94. # This enables/disables the chance setting
  95. # If this value is false, the chance is completely random and it can be really hard to win
  96. ChanceEnabled: true
  97.  
  98. # This is the value of winning in percent (1% = Chance of 1/100)
  99. Chance: 1
  100.  
  101. # This is the ID of the item that should be used
  102. CoinItem: 371
  103.  
  104. # This enables/disables fireworks exploding when someone wins something
  105. WinEffect: true
  106.  
  107. # This enables/disables that the console will execute an command when someone wins something
  108. ExecuteCommand: false
  109.  
  110. # This is the list of commands that should be executed
  111. # Only active if "ExecuteCommand" is set to true
  112. # "%player%" will be replaced with the player's name
  113. # "%money%" will be replaced with the amount of money the player won
  114. Commands:
  115. - say %player% has won %money% from a slot machine!
  116.  
  117. # This is a list of items that can appear on the itemframes of a slot machine
  118. # You can just add some ids
  119. # Data value usage: ITEMID,DATA
  120. ItemList:
  121. - 35
  122. - 35:1
  123. - 35:2
  124. - 35:3
  125. - 35:4
  126. - 279
  127. - 35:5
  128. - 35:6
  129. - 35:7
  130. - 35:8
  131. - 35:9
  132. - 35:10
  133. - 35:11
  134. - 35:12
  135. - 35:13
  136. - 35:14
  137. - 35:15
  138. - 35:16
  139. -
  140. - 399
Advertisement
Add Comment
Please, Sign In to add comment