Sir_Spaceboi

Untitled

Mar 20th, 2022
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. commands ?.create({
  2. name: 'dm',
  3. description: 'DM users.',
  4. options: [
  5. {
  6. name: 'user',
  7. description: 'the user you would like to message using the bot',
  8. required: true,
  9. type: 6
  10. },
  11. {
  12. name: 'color',
  13. description: 'what color?',
  14. required: true,
  15. type: 3,
  16. choices: [{ name: 'Green', value: 'Green' }, {name: 'Red', value: 'Red'}, {name: 'Yellow/Orange', value: 'Yellow/Orange'}, {name: 'White', value: 'White'}]
  17. },
  18. {
  19. name: 'title',
  20. description: 'what title?',
  21. required: true,
  22. type: 3
  23. },
  24. {
  25. name: 'body',
  26. description: 'what body text?',
  27. required: true,
  28. type: 3
  29. },
  30. {
  31. name: 'footer',
  32. description: 'what footer text?',
  33. required: true,
  34. type: 3
  35. },
  36. {
  37. name: 'display time',
  38. description: 'do you want to display the time?',
  39. required: false,
  40. type: 5
  41. },
  42. {
  43. name: 'sent by',
  44. description: 'do you want to display the user who sent?',
  45. required: false,
  46. type: 5
  47. },
  48. ],
  49. })
Advertisement
Add Comment
Please, Sign In to add comment