Advertisement
twogz

Untitled

Jul 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. command /sell [<text>]:
  2. trigger:
  3. if arg 1 is not set:
  4. open chest with 5 rows named "Sell your items..." to player
  5.  
  6. wait 0.6 ticks
  7.  
  8. format slot 0 of player with book named "&e&l%player%'s balance" with lore "&fMoney &a%player's balance%" to be unstealable
  9.  
  10. format slot 10 of player with coal ore named "&e&lCoal Ore" with lore "&r ||&fPrice &a$0.15 each||&r ||&6&lClick &fto sell all your coal ore." to run [player command "/sell coalore"]
  11. if arg 1 is "coalore":
  12. if player has coal ore:
  13. while amount of coal ore in player's inventory is bigger than 0:
  14. add 1 to {_amount.%player%}
  15. remove 1 coal ore from player's inventory
  16. add 0.15 to {_payout.%player%}
  17. message ""
  18. message " &e&lSold %{_amount.%player%}% Items:"
  19. message ""
  20. message "&7 You sold %{_amount.%player%}% &7items for $%{_payout.%player%} / {_amount.%player%}% &7each"
  21. message "&7 and received &a$%{_payout.%player%}% &7in total."
  22. message ""
  23. add {_payout.%player%} to player's balance
  24. stop
  25. else:
  26. message "&c&lHey! &7You don't have enough of this item to sell it."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement