Advertisement
Guest User

halpme

a guest
Apr 23rd, 2011
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.86 KB | None | 0 0
  1. Link to the plugin: http://forums.bukkit.org/threads/econ-jobs-v1-2-0-jobs-plugin-for-minecraft-677-iconomy-boseconomy-permissions.13294/page-2
  2.  
  3.  
  4.  
  5. # storage method, can be MySQL, sqlite, flatfile
  6. storage-method: MySQL
  7.  
  8. # Requires Mysql.
  9. mysql-username: Correctdatagoeshere
  10. mysql-password: thepassword
  11. mysql-database: minecraft
  12. mysql-url: jdbc:mysql://localhost:3306/
  13. sqlite-url: jdbc:sqlite:test.db
  14.  
  15. # choose the prefix in chat- full = job and skill level, skill = skill level only,
  16. # job = job level only, none = no prefix
  17. chat-display: full
  18.  
  19. # choose to broadcast when the user goes up a skill rank to everyone
  20. broadcast-skill-up: true
  21.  
  22. # How often in minutes you want it to save, 0 disables periodic saving and
  23. # the system will only save on logout
  24. save-period: 10
  25.  
  26. # money you get paid for any block placed or destroyed not in the list for your job
  27. flat-rate-payout: 10.0
  28.  
  29. # Create Jobs
  30. # All jobs must follow this framework, <...> means optional
  31. #
  32. # Jobs:
  33. # [NAME]
  34. # ChatColour: [COLOUR]
  35. # levelingProgressionRate: [double]
  36. # incomeProgressionRate: [double]
  37. # Break:
  38. # <object_name: [price]>
  39. # ...
  40. # <object_name: [price]>
  41. # Place:
  42. # <object_name: [price]>
  43. # ...
  44. # <object_name: [price]>
  45. #
  46. # * In the break section they users will be given or subtracted money on breaking the object.
  47. # * In the place section they users will be given or subtracted money on placing the object.
  48. # * levelingProgressionRate is the rate at which the experience required to get to the next
  49. # level increases between levels.
  50. # * incomeProgressionRate is the rate at which the money gained per item.
  51. # * ChatColour is the colour of the title.
  52. #
  53. # NOTE: the object name must be exactly what the material is in the code. e.g:
  54. # cobblestone -> COBBLESTONE
  55. # diamond ore -> DIAMOND_ORE
  56. # tree trunks(any) -> LOG
  57. # wooden boards -> WOOD
  58. #
  59. Jobs:
  60. Woodcutter:
  61. ChatColour: GREEN
  62. levelingProgressionRate: 0.15
  63. incomeProgressionRate: 0.05
  64. Break:
  65. LOG: 2.0
  66. Place:
  67. SAPLING: 1.0
  68. WOOD: 2.0
  69. Miner:
  70. ChatColour: DARK_GRAY
  71. levelingProgressionRate: 0.15
  72. incomeProgressionRate: 0.05
  73. Break:
  74. STONE: 2.0
  75. COAL_ORE: 3.0
  76. REDSTONE_ORE: 3.0
  77. IRON_ORE: 4.0
  78. GOLD_ORE: 5.0
  79. LAPIS_ORE: 5.0
  80. DIAMOND_ORE: 6.0
  81. OBSIDIAN: 7.5
  82. Place:
  83. RAILS: 2.0
  84. IRON_ORE: -5.0
  85. GOLD_ORE: -6.0
  86. Builder:
  87. ChatColour: WHITE
  88. levelingProgressionRate: 0.15
  89. incomeProgressionRate: 0.05
  90. Place:
  91. COBBLESTONE: 2.0
  92. STONE: 3.0
  93. GLASS: 5.0
  94. BRICK: 7.0
  95. Digger:
  96. ChatColour: YELLOW
  97. levelingProgressionRate: 0.15
  98. incomeProgressionRate: 0.05
  99. Break:
  100. DIRT: 2.0
  101. GRASS: 2.0
  102. GRAVEL: 2.0
  103. SAND: 2.0
  104.  
  105. # Create titles
  106. # to create a title, they must follow this patter.
  107. # Titles:
  108. # [Title Name]:
  109. # ChatColour: [ChatColor]
  110. # levelReq : [Integer]
  111. #
  112. # NOTE: levelReq must be the lowest level you can be to gain this title. It is recommended
  113. # but not neccessary to have a title at 0.
  114. Titles:
  115. Apprentice:
  116. ChatColour: WHITE
  117. levelReq: 0
  118. Novice:
  119. ChatColour: GRAY
  120. levelReq: 30
  121. Journeyman:
  122. ChatColour: GOLD
  123. levelReq: 60
  124. Master:
  125. ChatColour: BLACK
  126. levelReq: 90
  127. __________________________________________________________________________________________
  128.  
  129. ERROR
  130. __________________________________________________________________________________________
  131.  
  132.  
  133. 2011-04-23 19:09:43 [SEVERE] com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column 'username' in 'field list'
  134. 2011-04-23 19:09:43 [SEVERE] at sun.reflect.GeneratedConstructorAccessor54.newInstance(Unknown Source)
  135. 2011-04-23 19:09:43 [SEVERE] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
  136. 2011-04-23 19:09:43 [SEVERE] at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
  137. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.Util.handleNewInstance(Util.java:407)
  138. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.Util.getInstance(Util.java:382)
  139. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1052)
  140. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3593)
  141. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3525)
  142. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1986)
  143. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2140)
  144. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2626)
  145. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:2111)
  146. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2407)
  147. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2325)
  148. 2011-04-23 19:09:43 [SEVERE] at com.mysql.jdbc.PreparedStatement.executeUpdate(PreparedStatement.java:2310)
  149. 2011-04-23 19:09:43 [SEVERE] at me.alex.jobs.dao.MySQLJobsDAO.changeJob(MySQLJobsDAO.java:119)
  150. 2011-04-23 19:09:43 [SEVERE] at me.alex.jobs.Jobs.onCommand(Jobs.java:261)
  151. 2011-04-23 19:09:43 [SEVERE] at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
  152. 2011-04-23 19:09:43 [SEVERE] at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:80)
  153. 2011-04-23 19:09:43 [SEVERE] at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:255)
  154. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:650)
  155. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:613)
  156. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:607)
  157. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.Packet3Chat.a(SourceFile:36)
  158. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetworkManager.a(NetworkManager.java:195)
  159. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:73)
  160. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.NetworkListenThread.a(SourceFile:100)
  161. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:370)
  162. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:285)
  163. 2011-04-23 19:09:43 [SEVERE] at net.minecraft.server.ThreadServerApplication.run(SourceFile:394)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement