Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. module.exports = {
  2. "name": "tos",
  3. "args": false,
  4. "usage": "-tos",
  5. async execute(client, message, args) {
  6. const Discord = require("discord.js");
  7.  
  8. const embed = new Discord.MessageEmbed()
  9. .setColor(0xFF0000)
  10. .setTitle("Endurable Services TOS")
  11. .setThumbnail("https://cdn.donorperfect.com/images/doc_blu.png")
  12. .addField("If you purchase something or use Endurable Services you automatically agree to our terms of use.")
  13. .addField("We may change, remove, add and or edit any of our terms of use with or without notice it is your responsibility to make sure that you know them.")
  14. .addField("You are required to pay 50% before starting the work and 50% before receiving the product.")
  15. .addField("You may not resell our creations without an executives approval.")
  16. .addField("You may not claim any work as your own.")
  17. .addField("We may keep logs of the payments you or any other client sends.")
  18. .addField("We may decline any commission that breaks our terms of use or any laws.")
  19. .addField("We may use your completed commission on our portfolio.")
  20. .addField("If you break our terms of service any of your active commissions will not be refunded.")
  21. .addField("------------------------------------------------------------------------------------------------------------")
  22. .addField("**Refund Policy**")
  23. .addField("We will only refund you if the problem is on our end for example for")
  24. .addField("• The freelancer can't complete your commission adequately")
  25. .addField("If the freelancer bails you will receive a 100% refund, if you request additional changes that we are unable to make and you request a refund you will receive an 85% refund,")
  26. .addField("or you may continue with your order without receiving those additional features.")
  27. .addField("------------------------------------------------------------------------------------------------------------")
  28. .addField("_Disclamer_")
  29. .addField("If you break the terms of service you may be severely punished and you may be blacklisted from all teams related to Endurable Services.")
  30. .addField("You breaking our terms of service will also immediately revoke any sort of refund possibility unless otherwise decided by an executive.")
  31. .setTimestamp();
  32. message.channel.send(embed);
  33.  
  34.  
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement