Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. # How many stocks is the player allowed in total?
  2. max-total-stocks-per-player: 10000
  3.  
  4. # How many stocks is a player allowed per company?
  5. max-total-stocks-per-player-per-stock: 1000
  6.  
  7. #Time (minutes) between each event. These affect price
  8. random-event-frequency: 60
  9. # Currently disabled
  10. dividend-frequency: 1440
  11. pay-offline-players: true
  12. broadcast-events: false
  13. debug-mode: false
  14. broadcast-payouts: true
  15. mysql-update-interval: 60000
  16. mysql:
  17. ip: localhost
  18. port: 3306
  19. username: bandit_stockmark
  20. password: dfqpBxPqdbWqnF5x
  21. database: bandit_stockmarket
  22. events:
  23. '0':
  24. message: The CEO of %s has abandoned the business. New CEO is incapable of anything.
  25. effect: 40
  26. up: false
  27. frequency: 50
  28. '1':
  29. message: The CEO of %s has died of a heart attack. The replacement looks like he is even better than his successor!
  30. effect: 40
  31. up: true
  32. frequency: 50
  33. '2':
  34. message: '%s has announced a new product to be released! Speculation is high!'
  35. effect: 8
  36. up: true
  37. frequency: 250
  38. '3':
  39. message: '%s has announced a new product to be released! Speculation is high!'
  40. effect: 8
  41. up: false
  42. frequency: 250
  43. '4':
  44. message: '%s''s announced product was a huge success, customers are extremely
  45. satisfied!'
  46. effect: 45
  47. up: true
  48. frequency: 250
  49. '5':
  50. message: '%s''s announced product was poorly made, causing poor customer satisfaction!'
  51. effect: 45
  52. up: false
  53. frequency: 250
  54. '6':
  55. message: '%s had a bad quarter.'
  56. effect: 30
  57. up: false
  58. frequency: 100
  59. '7':
  60. message: '%s had a fantastic quarter.'
  61. effect: 30
  62. up: true
  63. frequency: 100
  64. '8':
  65. message: Everyone is speculating that %s is soon to come out with an extremely amazing product!
  66. effect: 65
  67. up: true
  68. frequency: 5
  69. '9':
  70. message: '%s is on the brink of bankruptcy.'
  71. effect: 65
  72. up: false
  73. frequency: 5
  74. '10':
  75. message: '%s just invented the next best thing since sliced bread!'
  76. effect: 400
  77. up: true
  78. frequency: 1
  79. '11':
  80. message: '%s just went bankrupt.'
  81. effect: 400
  82. up: false
  83. frequency: 1
  84. '12':
  85. message: '%s just announced that they are replacing their current CEO, who has
  86. a bad reputation.'
  87. effect: 25
  88. up: true
  89. frequency: 25
  90. '13':
  91. message: '%s just announced that they are replacing their current CEO, who everyone
  92. loves.'
  93. effect: 25
  94. up: false
  95. frequency: 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement