Advertisement
LakeBigHead

Untitled

May 16th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.52 KB | None | 0 0
  1. #============================================[ Tokens Module ]============================================#
  2. # %target - specifies the player receiving the token.
  3. # %amount - specifies the amount you are sending.
  4. # %price - this variable is only used below in the 'shop-items' section.
  5. #
  6. # ENCHANTMENTS: http://prntscr.com/6bgwx3
  7. # - if an item does not have an enchantment, leave it in this format: ' enchantments: {} '
  8. #
  9. # MATERIALS: https://github.com/Bukkit/Bukkit/blob/master/src/main/java/org/bukkit/Material.java
  10. # - if you do not put the material like it is in the above link (case sensitive), you will get an error.
  11. #=========================================================================================================#
  12.  
  13. TOKENS_PREFIX: '&bTokens &7ยป '
  14. TOKENS_NO_PERMISSION: '&cYou do not have permission to execute this command.'
  15. TOKENS_INVALID_SENDER: '&cInvalid sender. This command can only be performed by a player.'
  16. TOKENS_BALANCE_ZERO: '&7You currently have a token balance of &c0&7.'
  17. TOKENS_BALANCE_MESSAGE: '&7You currently have a token balance of &c%amount&7.'
  18. TOKENS_BALANCE_OTHERS_ZERO: '&c%target &7currently has a token balance of &c0&7.'
  19. TOKENS_BALANCE_OTHERS_MESSAGE: '&c%target &7currently has a token balance of &c%amount&7.'
  20. TOKENS_OFFLINE_PLAYER: '&cThe specified player is not online.'
  21. TOKENS_NUMBER_EXCEPTION: '&cThe specified amount must be a positive integer.'
  22. TOKENS_GIVE_SUCCESSFUL: '&c%target &7has been successfully given &c%amount &7token(s).'
  23. TOKENS_GIVEALL_SUCCESSFUL: '&7You have successfully gave &c%amount &7token(s) to everyone.'
  24. TOKENS_TAKE_SUCCESSFUL: '&7You have successfully taken &c%amount &7token(s) from &c%target&7.'
  25. TOKENS_TAKE_FAILURE: '&cThe specified target does not have enough tokens to take away from.'
  26. TOKENS_SET_SUCCESSFUL: '&7The token balance of &c%target &7has been successfully set to &c%amount&7.'
  27. TOKENS_PAY_IMPROPER_USAGE: '&cImproper usage. Proper usage for this command: ./at pay <player> <amount>.'
  28. TOKENS_PAY_SUCCESSFUL: '&7You have successfully paid &c%amount &7tokens to &c%target&7.'
  29. TOKENS_PAY_FAILURE: '&cYou do not have enough tokens to pay this user.'
  30. TOKENS_PAY_YOURSELF_DENY: '&cYou cannot pay yourself.'
  31. TOKENS_PURCHASE_FAILURE: '&cYou do not have enough tokens.'
  32.  
  33. TOKENS_HELP_MESSAGE:
  34. - '&7&m|======&r&7[MEMBERS]&7&m======|'
  35. - ' &b> /vt help.'
  36. - ' &b> /vt shop.'
  37. - ' &b> /vt balance [player].'
  38. - ' &b> /vt pay <player> <amount>.'
  39. - '&7&m|======&r&7[OP]&7&m======|'
  40. - ' &4> /vt give <player> <amount>.'
  41. - ' &4> /vt giveall <amount>.'
  42. - ' &4> /vt take <player> <amount>.'
  43. - ' &4> /vt set <player> <amount>.'
  44. - '&7&m|=====================|'
  45.  
  46.  
  47. shop-size: 45
  48. shop-prefix: '&bTokens'
  49.  
  50. shop-items:
  51. 0:
  52. material: COBBLESTONE
  53. material-id: 4
  54. amount: 16
  55. enchantments: {}
  56. name: '&716x Cobblestone'
  57. lore:
  58. - '&6Price&7: &c1'
  59. price: 1
  60. message: '&cYou have successfully bought &a16x Cobblestone &cfor &a%price &btoken(s).'
  61. console-commands:
  62. - give {username} 4 16
  63. 1:
  64. material: STONE
  65. material-id: 1
  66. amount: 16
  67. enchantments: {}
  68. name: '&716x Stone'
  69. lore:
  70. - '&6Price&7: &c1'
  71. price: 1
  72. message: '&cYou have successfully bought &716x Stone &cfor &a%price &btoken(s).'
  73. console-commands:
  74. - give {username} 1 16
  75. 2:
  76. material: SAND
  77. material-id: 12
  78. amount: 8
  79. enchantments: {}
  80. name: '&68x Sand'
  81. lore:
  82. - '&6Price&7: &c1'
  83. price: 1
  84. message: '&cYou have successfully bought a &68x Sand &cfor &a%price &btoken(s).'
  85. console-commands:
  86. - give {username} 12 8
  87. 3:
  88. material: GRASS
  89. material-id: 2
  90. amount: 8
  91. enchantments: {}
  92. name: '&28x Grass'
  93. lore:
  94. - '&6Price&7: &c1'
  95. price: 1
  96. message: '&cYou have successfully bought a &28x Grass &cfor &a%price &btoken(s).'
  97. console-commands:
  98. - give {username} 12 8
  99. 4:
  100. material: NETHERRACK
  101. material-id: 87
  102. amount: 16
  103. enchantments: {}
  104. name: '&c16x Netherrack'
  105. lore:
  106. - '&6Price&7: &c2'
  107. price: 2
  108. message: '&cYou have successfully bought a &c16x &cfor &a%price &btoken(s).'
  109. console-commands:
  110. - Silkspawner give {username} Spider 1
  111. 5:
  112. material: NETHER_BRICK
  113. material-id: 112
  114. amount: 4
  115. enchantments: {}
  116. name: '&44xNether Brick'
  117. lore:
  118. - '&6Price&7: &c2'
  119. price: 2
  120. message: '&cYou have successfully bought a &44xNether Brick &cfor &a%price &btoken(s).'
  121. console-commands:
  122. - give {username} 112 4
  123. 6:
  124. material: GLOWSTONE
  125. material-id: 89
  126. amount: 4
  127. enchantments: {}
  128. name: '&64x Glowstone'
  129. lore:
  130. - '&6Price&7: &c2'
  131. price: 2
  132. message: '&cYou have successfully bought a &64x Glowstone &cfor &a%price &btoken(s).'
  133. console-commands:
  134. - give {username} 89 4
  135. 7:
  136. material: MYCELIUM
  137. material-id: 110
  138. amount: 1
  139. enchantments: {}
  140. name: '&51x Mycelium'
  141. lore:
  142. - '&6Price&7: &c2'
  143. price: 2
  144. message: '&cYou have successfully bought a &51x Mycelium &cfor &a%price &btoken(s).'
  145. console-commands:
  146. - Silkspawner give {username} Sheep 1
  147. 8:
  148. material: SOUL_SAND
  149. material-id: 88
  150. amount: 2
  151. enchantments: {}
  152. name: '&62x Soul Sand'
  153. lore:
  154. - '&6Price&7: &c1'
  155. price: 1
  156. message: '&cYou have successfully bought a &62x Soul Sand &cfor &a%price &btoken(s).'
  157. console-commands:
  158. - give {username} 88 2
  159. 9:
  160. material: LAVA_BUCKET
  161. material-id: 327
  162. amount: 1
  163. enchantments: {}
  164. name: '&61x Lava Bucket'
  165. lore:
  166. - '&6Price&7: &c3'
  167. price: 3
  168. message: '&cYou have successfully bought a &6Lava Bucket &cfor &a%price &btoken(s).'
  169. console-commands:
  170. - give {username} 327 1
  171. 10:
  172. material: WATER_BUCKET
  173. material-id: 326
  174. amount: 1
  175. enchantments: {}
  176. name: '&91x Water Bucket'
  177. lore:
  178. - '&6Price&7: &c3'
  179. price: 3
  180. message: '&cYou have successfully bought a &9Water Bucket &cfor &a%price &btoken(s).'
  181. console-commands:
  182. - give {username} 326 1
  183. 11:
  184. material: BONE
  185. material-id: 0
  186. amount: 16
  187. enchantments: {}
  188. name: '&fBone'
  189. lore:
  190. - '&6Price&7: &c2'
  191. price: 2
  192. message: '&cYou have successfully bought a &f16x Bone &cfor &a%price &btoken(s).'
  193. console-commands:
  194. - give {username} bone 16
  195. 12:
  196. material: HOPPER
  197. material-id: 0
  198. amount: 1
  199. enchantments: {}
  200. name: '&71x Hopper'
  201. lore:
  202. - '&6Price&7: &c3'
  203. price: 3
  204. message: '&cYou have successfully bought a &7Hopper &cfor &a%price &btoken(s).'
  205. console-commands:
  206. - give {username} hopper 1
  207. 13:
  208. material: ENDER_CHEST
  209. material-id: 0
  210. amount: 1
  211. enchantments: {}
  212. name: '&3&1 Enderchest'
  213. lore:
  214. - '&6Price&7: &c5'
  215. price: 5
  216. message: '&cYou have successfully bought an &3Ender Chest &cfor &a%price &btoken(s).'
  217. console-commands:
  218. - give {username} ender_chest 1
  219. 14:
  220. material: ENCHANTING_TABLE
  221. material-id: 0
  222. amount: 1
  223. enchantments: {}
  224. name: '&31xEnchanting Table'
  225. lore:
  226. - '&6Price&7: &c5'
  227. price: 5
  228. message: '&cYou have successfully bought an &3Enchanting Table &cfor &a%price &btoken(s).'
  229. console-commands:
  230. - give {username} enchanting_table 1
  231. 15:
  232. material: ANVIL
  233. material-id: 0
  234. amount: 1
  235. enchantments: {}
  236. name: '&81x Anvil'
  237. lore:
  238. - '&6Price&7: &c10'
  239. price: 5
  240. message: '&cYou have successfully bought an &8Anvil &cfor &a%price &btoken(s).'
  241. console-commands:
  242. - give {username} anvil 1
  243. 16:
  244. material: BEACON
  245. material-id: 0
  246. amount: 1
  247. enchantments: {}
  248. name: '&b1x Beacon'
  249. lore:
  250. - '&6Price&7: &c25'
  251. price: 25
  252. message: '&cYou have successfully bought a &bBeacon &cfor &a%price &btoken(s).'
  253. console-commands:
  254. - give {username} beacon 1
  255. 17:
  256. material: LAPIS
  257. material-id: 0
  258. amount: 24
  259. enchantments: {}
  260. name: '&124x Lapis Lazuli'
  261. lore:
  262. - '&6Price&7: &c2'
  263. price: 2
  264. message: '&cYou have successfully bought &124x Lapis Lazuli &cfor &a%price &btoken(s).'
  265. console-commands:
  266. - give {username} lapis 24
  267. 18:
  268. material: REDSTONE
  269. material-id: 0
  270. amount: 8
  271. enchantments: {}
  272. name: '&48x Redstone'
  273. lore:
  274. - '&6Price&7: &c1'
  275. price: 1
  276. message: '&cYou have successfully bought &48x Redstone &cfor &a%price &btoken(s).'
  277. console-commands:
  278. - give {username} redstone 8
  279. 19:
  280. material: EMERALD
  281. material-id: 0
  282. amount: 6
  283. enchantments: {}
  284. name: '&a6x Emerald'
  285. lore:
  286. - '&6Price&7: &c2'
  287. price: 2
  288. message: '&cYou have successfully bought &a6x Emerald &cfor &a%price &btoken(s).'
  289. console-commands:
  290. - give {username} emerald 6
  291. 20:
  292. material: QUARTZ
  293. material-id: 0
  294. amount: 8
  295. enchantments: {}
  296. name: '&f8x Nether Quartz'
  297. lore:
  298. - '&6Price&7: &c2'
  299. price: 2
  300. message: '&cYou have successfully bought &f8x Nether Quartz &cfor &a%price &btoken(s).'
  301. console-commands:
  302. - give {username} quartz 8
  303. 21:
  304. material: GOLD_INGOT
  305. material-id: 0
  306. amount: 4
  307. enchantments: {}
  308. name: '&e4x Gold Ingot'
  309. lore:
  310. - '&6Price&7: &c1'
  311. price: 1
  312. message: '&cYou have successfully bought &e4x Gold Ingot &cfor &a%price &btoken(s).'
  313. console-commands:
  314. - give {username} gold_ingot 4
  315. 22:
  316. material: IRON_INGOT
  317. material-id: 0
  318. amount: 6
  319. enchantments: {}
  320. name: '&f6x Iron Ingot'
  321. lore:
  322. - '&6Price&7: &c1'
  323. price: 1
  324. message: '&cYou have successfully bought &f6x Iron Ingot &cfor &a%price &btoken(s).'
  325. console-commands:
  326. - give {username} iron_ingot 6
  327. 23:
  328. material: DIAMOND
  329. material-id: 0
  330. amount: 1
  331. enchantments: {}
  332. name: '&b1x Diamond'
  333. lore:
  334. - '&6Price&7: &c3'
  335. price: 3
  336. message: '&cYou have successfully bought a &bDiamond &cfor &a%price &btoken(s).'
  337. console-commands:
  338. - give {username} diamond 1
  339. 24:
  340. material: SPAWNER
  341. material-id: 0
  342. amount: 1
  343. enchantments: {}
  344. name: '&ePig &fSpawner'
  345. lore:
  346. - '&6Price&7: &c45'
  347. price: 45
  348. message: '&cYou have successfully bought a &ePig &fSpawner &cfor &a%price &btoken(s).'
  349. console-commands:
  350. - ss give {username} pig 1
  351. 25:
  352. material: SPAWNER
  353. material-id: 0
  354. amount: 1
  355. enchantments: {}
  356. name: '&eSheep &fSpawner'
  357. lore:
  358. - '&6Price&7: &c45'
  359. price: 45
  360. message: '&cYou have successfully bought a &eSheep &fSpawner &cfor &a%price &btoken(s).'
  361. console-commands:
  362. - ss give {username} sheep 1
  363. 26:
  364. material: SPAWNER
  365. material-id: 0
  366. amount: 1
  367. enchantments: {}
  368. name: '&eCow &fSpawner'
  369. lore:
  370. - '&6Price&7: &c45'
  371. price: 45
  372. message: '&cYou have successfully bought a &eCow &fSpawner &cfor &a%price &btoken(s).'
  373. console-commands:
  374. - ss give {username} Cow 1
  375. 27:
  376. material: SPAWNER
  377. material-id: 0
  378. amount: 1
  379. enchantments: {}
  380. name: '&eChicken &fSpawner'
  381. lore:
  382. - '&6Price&7: &c45'
  383. price: 45
  384. message: '&cYou have successfully bought a &eChicken &fSpawner &cfor &a%price &btoken(s).'
  385. console-commands:
  386. - ss give {username} chicken 1
  387. 28:
  388. material: SPAWNER
  389. material-id: 0
  390. amount: 1
  391. enchantments: {}
  392. name: '&eMooshroom &fSpawner'
  393. lore:
  394. - '&6Price&7: &c50'
  395. price: 50
  396. message: '&cYou have successfully bought a &eMooshroom &fSpawner &cfor &a%price &btoken(s).'
  397. console-commands:
  398. - ss give {username} Mooshroom 1
  399. 29:
  400. material: SPAWNER
  401. material-id: 0
  402. amount: 1
  403. enchantments: {}
  404. name: '&eCreeper &fSpawner'
  405. lore:
  406. - '&6Price&7: &c65'
  407. price: 65
  408. message: '&cYou have successfully bought a &eCreeper &fSpawner &cfor &a%price &btoken(s).'
  409. console-commands:
  410. - ss give {username} Creeper 1
  411. 30:
  412. material: SPAWNER
  413. material-id: 0
  414. amount: 1
  415. enchantments: {}
  416. name: '&eZombie &fSpawner'
  417. lore:
  418. - '&6Price&7: &c65'
  419. price: 65
  420. message: '&cYou have successfully bought a &eZombie &fSpawner &cfor &a%price &btoken(s).'
  421. console-commands:
  422. - ss give {username} Zombie 1
  423. 31:
  424. material: SPAWNER
  425. material-id: 0
  426. amount: 1
  427. enchantments: {}
  428. name: '&eSpider &fSpawner'
  429. lore:
  430. - '&6Price&7: &c65'
  431. price: 65
  432. message: '&cYou have successfully bought a &eSpider &fSpawner &cfor &a%price &btoken(s).'
  433. console-commands:
  434. - ss give {username} Spider 1
  435. 32:
  436. material: SPAWNER
  437. material-id: 0
  438. amount: 1
  439. enchantments: {}
  440. name: '&eSkeleton &fSpawner'
  441. lore:
  442. - '&6Price&7: &c75'
  443. price: 75
  444. message: '&cYou have successfully bought a &eSkeleton &fSpawner &cfor &a%price &btoken(s).'
  445. console-commands:
  446. - ss give {username} Skeleton 1
  447. 33:
  448. material: SPAWNER
  449. material-id: 0
  450. amount: 1
  451. enchantments: {}
  452. name: '&eSlime &fSpawner'
  453. lore:
  454. - '&6Price&7: &c100'
  455. price: 100
  456. message: '&cYou have successfully bought a &eSlime &fSpawner &cfor &a%price &btoken(s).'
  457. console-commands:
  458. - ss give {username} Slime 1
  459. 34:
  460. material: SPAWNER
  461. material-id: 0
  462. amount: 1
  463. enchantments: {}
  464. name: '&eEnderman &fSpawner'
  465. lore:
  466. - '&6Price&7: &c125'
  467. price: 125
  468. message: '&cYou have successfully bought an &eEnderman &fSpawner &cfor &a%price &btoken(s).'
  469. console-commands:
  470. - ss give {username} Enderman 1
  471. 35:
  472. material: SPAWNER
  473. material-id: 0
  474. amount: 1
  475. enchantments: {}
  476. name: '&eIron Golem &fSpawner'
  477. lore:
  478. - '&6Price&7: &c250'
  479. price: 250
  480. message: '&cYou have successfully bought a &eVillager &fSpawner &cfor &a%price &btoken(s).'
  481. console-commands:
  482. - ss give {username} Villager 1
  483. 36:
  484. material: SPAWNER
  485. material-id: 0
  486. amount: 1
  487. enchantments: {}
  488. name: '&Iron Golem &fSpawner'
  489. lore:
  490. - '&6Price&7: &c500'
  491. price: 500
  492. message: '&cYou have successfully bought an &eIron Golem &fSpawner &cfor &a%price &btoken(s).'
  493. console-commands:
  494. - ss give {username} IronGolem 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement