Source

lib/avatar/setAvatarBodyColors.js

  1. const http = require('../util/http.js').func
  2. const getGeneralToken = require('../util/getGeneralToken.js').func
  3. exports.required = ['headColorId', 'torsoColorId', 'rightArmColorId', 'leftArmColorId', 'rightLegColorId', 'leftLegColorId']
  4. exports.optional = ['jar']
  5. // Docs
  6. /**
  7. * 🔐 Set the colors of your avatar.
  8. * @category Avatar
  9. * @alias setAvatarBodyColors
  10. * @param {number} headColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the head.
  11. * @param {number} torsoColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the torso.
  12. * @param {number} rightArmColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the right arm.
  13. * @param {number} leftArmColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the left arm.
  14. * @param {number} rightLegColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the right leg.
  15. * @param {number} leftLegColorId - The [BrickColor Code]{@link https://developer.roblox.com/en-us/articles/BrickColor-Codes} of the left leg.
  16. * @returns {Promise<void>}
  17. * @example const noblox = require("noblox.js")
  18. * // Login using your cookie
  19. * noblox.setAvatarBodyColors(125, 125, 125, 125, 125, 125)
  20. **/
  21. const nextFunction = (jar, token, headColorId, torsoColorId, rightArmColorId, leftArmColorId, rightLegColorId, leftLegColorId) => {
  22. return http({
  23. url: '//avatar.roblox.com/v1/avatar/set-body-colors',
  24. options: {
  25. method: 'POST',
  26. jar,
  27. headers: {
  28. 'X-CSRF-TOKEN': token
  29. },
  30. json: {
  31. headColorId,
  32. torsoColorId,
  33. rightArmColorId,
  34. leftArmColorId,
  35. rightLegColorId,
  36. leftLegColorId
  37. },
  38. resolveWithFullResponse: true
  39. }
  40. }).then((res) => {
  41. if (res.statusCode === 200) {
  42. if (!res.body.success) {
  43. throw new Error(res.body)
  44. }
  45. } else {
  46. throw new Error('Set body colors failed')
  47. }
  48. })
  49. }
  50. exports.func = (args) => {
  51. const jar = args.jar
  52. return getGeneralToken({ jar }).then((xcsrf) => {
  53. return nextFunction(jar, xcsrf, args.headColorId, args.torsoColorId, args.rightArmColorId, args.leftArmColorId, args.rightLegColorId, args.leftLegColorId)
  54. })
  55. }