Tebex | Zyno Bot Addon v1.1.2

A Zyno Bot add-on that interacts with Tebex (giftcard, lookup, payments).
tebex_addon_banner.png
It is an add-on for Zyno Bot that interacts with Tebex to fulfill its functions (This add-on is only for Minecraft).

WARNING: This supplement requires the Tebex plus plan.


Features

[] = Required | () = Optional
  • GiftCard:
  • Create [Amount] [Expire] (Note)
  • List [Page]
  • Delete [ID]
  • Addfunds [ID] [Amount]
  • Payments:
  • Info [Transaction ID]
  • List [Page]
  • Lookup [Nick/Uuid]
Dependencies

imagen_2023-01-30_153337466.pngimagen_2023-01-30_153432975.pngimagen_2023-01-30_153501097.pngimagen_2023-01-30_153941712.pngimagen_2023-01-30_154017266.pngimagen_2023-01-30_154645983.png
imagen_2023-08-19_143239660.pngimagen_2023-08-19_143208850.png
YAML:
#  ______                                           _       _      
# |___  /                               /\         | |     | |     
#    / /   _   _   _ __     ___        /  \      __| |   __| |   ___    _ __
#   / /   | | | | | "_ \   / _ \      / /\ \    / _` |  / _` |  / _ \  | "_ \
#  / /__  | |_| | | | | | | (_) |    / ____ \  | (_| | | (_| | | (_) | | | | |
# /_____|  \__, | |_| |_|  \___/    /_/    \_\  \__,_|  \__,_|  \___/  |_| |_|
#           __/ |                                                  
#          |___/
# (⚠️) The commands of this add-on require to be used with a tebex Plus account.
Settings:
  License: "#YOUR_LICENSE"
  Token: "#YOUR_TEBEX_TOKEN"
  Dates: "EN" # EN/ES
  Commands:
    GiftCard:
      Description: "Manage the giftcard of your tebex store"
      Permission: "Administrator" # https://discord-api-types.dev/api/discord-api-types-payloads/common#PermissionFlagsBits
      SubCommands:
        Create:
          Description: "Create a gift card"
          Options:
            Descriptions:
              Amount: "Provide the amount that the giftcard will hold"
              Expire: "Provide the expiration date (YYYY-MM-DD)"
              Note: "Write a note, this will be attached to the creation of the gift card."
              Send: "Mention the user you want to send the license to"
        Delete:
          Description: "Remove a gift card"
          Options:
            Descriptions:
              Id: "Provide the id of the giftcard to be deleted"
        List:
          Description: "Get a list of created giftcards"
          Options:
            Descriptions:
              Page: "Provide the page of the list you wish to check."
        Info:
          Description: "Get information about a giftcard"
          Options:
            Descriptions:
              Id: "Indicate the ID of the card you wish to obtain information about."
   
        AddFunds:
          Description: "Add funds to GiftCard"
          Options:
            Descriptions:
              Id: "Indica el ID de la tarjeta regalo para añadir fondos"
              Amount: "Indicate the amount you wish to add"
    Lookup:
      Description: "Command to look up user information"
      Permission: "Administrator" # https://discord-api-types.dev/api/discord-api-types-payloads/common#PermissionFlagsBits
      Options:
        Descriptions:
          User: "Provide the user or uuid from which you wish to obtain information."
    Payments:
      Description: "Manage payments made in your tebex store"
      Permission: "Administrator" # https://discord-api-types.dev/api/discord-api-types-payloads/common#PermissionFlagsBits
      SubCommands:
        Info:
          Description: "Get information about a payment"
          Options:
            Descriptions:
              TransactionID: "Provide the id of the payment you wish to check."
        List:
          Description: "Obtain a list of payments"
          Options:
            Descriptions:
              Page: "Provide the page of the list you wish to check."
GiftCard:
  General:
    Messages:
      NoNote: "No note has been registered"
      GiftActive: "Active"
      GiftInactive: "Inactive"
  Create:
    Messages:
      Length: "The note cannot be longer than 250 characters"
      NoSent: "The message could not be sent"
      NoUser: "User could not be found"
    Embeds:
      Title: "Giftcard Created"
      Description:
        - "```Giftcard information```"
        - "**ID:** ``{id}``"
        - "**Creation date:** ``{creation}``"
        - "**GiftCard Number:** ``{giftcard}``"
        - "**Balance:** ``${balance}``"
        - "**Note:** ```{note}```"
      Color: "Green"
      Ephemeral: true
  Delete:
    Messages:
      ErrorID: "The entered id does not exist"
      AlredyRemove: "This giftcard is now unusable"
    Embeds:
      Title: "Giftcard Deleted"
      Description:
        - "```Giftcard information```"
        - "**ID:** ``{id}``"
        - "**GiftCard Number:** ``{giftcard}``"
        - "**Starting Balance:** ``${start_balance}``"
        - "**Remaining Balance:** ``${current_balance}``"
        - "**Note:** ```{note}```"
      Color: "Red"
      Ephemeral: true
  List:
    Messages:
      NoGiftCard: "There are currently no giftcards created"
      PageInvalid: "The page number entered is invalid."
    Embeds:
      Title: "Giftcard List"
      Description:
        - ""
        - "```Giftcard #{id}```"
        - "> **ID:** {id}"
        - "> **Giftcard Number:** {giftcard}"
        - "> **Starting Balance:** ${start_balance}"
        - "> **Remaining Balance:** ${current_balance}"
        - "> **Status:** {status}"
        - "> **Note:** ```{note}```"
        - ""
      Footer: "Page {current}/{total}"
      Color: "Aqua"
      Ephemeral: true
  Info:
    Messages:
      NoExist: "The entered giftcard does not exist"
    Embeds:
      Title: "Giftcard Info"
      Description:
        - ""
        - "```Giftcard #{id}```"
        - "> **ID:** {id}"
        - "> **Giftcard Number:** {giftcard}"
        - "> **Starting Balance:** ${start_balance}"
        - "> **Remaining Balance:** ${current_balance}"
        - "> **Status:** {status}"
        - "> **Note:** ```{note}```"
        - ""
      Color: "Aqua"
      InactiveColor: "Red"
      Ephemeral: true
  AddFunds:
    Messages:
    Embeds:
      Title: "Funds added to Giftcard"
      Description:
        - "> **ID:** {id}"
        - "> **Starting Balance:** ${start_balance}"
        - "> **Previous balance:** ${previous_balance}"
        - "> **New balance:** ${new_balance}"
        - "> **Aggregated funds:** {amount}"
        - "> **Giftcard Number:** {giftcard}"
      Color: "Aqua"
      Ephemeral: true
 
Lookup:
  General:
    Messages:
      Payments: "{payment_id} **|** ${payment_amount}"
      NoPayments: "No payments are currently registered"
      NoUser: "No player with that username or uuid has been found."
    Embeds:
      Title: "{nick} Lookup"
      Description:
        - "```Minecraft Information```"
        - "**Nick:** {nick}"
        - "**Uuid:** {uuid}"
        - ""
        - "```Store Information```"
        - "**Total Bans:** {total_bans}"
        - "**Chargeback Rate:** {chargebackrate}%"
        - "```Payment History```"
        - "{payments}"
        - "``For more information on payments occupy /payments``"
      Thumbnail:
        Enabled: true
        Type: "head" #head, avatar
      Color: "Aqua"
      Ephemeral: true
Payments:
  General:
    Messages:
      NoCreatorCode: "This payment was not made with a creator code."
  Info:
    Messages:
      NoExist: "The transaction ID entered is not valid."
      Packages: "> ``Package: {package_name} | Quantity: {package_quantity}``"
      NoGiftCard: "There are currently no payments registered"
      PageInvalid: "The page number entered is invalid."
    Embeds:
      Title: "Payment Information"
      Description:
        - "```Payment Information #{payment_id}```"
        - "**Transaction ID:** {transactionid} "
        - "**Date:** {payment_date}"
        - "**Status:** {payment_status}"
        - "**Amount:** {payment_amount}"
        - "**Creator code:** {payment_creatorcode}"
        - "```Customer Information```"
        - "**Nick:** ``{nick}``"
        - "**Uuid:** ``{uuid}``"
        - "**Email:** ``{payment_email}``"
        - "```Packages```"
        - "{payment_packages}"
      Thumbnail:
        Enabled: true
        Type: "head" #head, avatar
      Color: "Aqua"
      Ephemeral: true
  List:
    Embeds:
      Title: "List of payments"
      Description:
        - "```Payment #{id}```"
        - "> **Amount:** {payment_amount}"
        - "> **Date:** {payment_date}"
        - "> **Status:** {payment_status}"
        - "> **Email:** {payment_email}"
        - "> **Creator code:** {payment_creatorcode}"
        - "> ```Minecraft Information```"
        - "> **Nick:** ``{nick}``"
        - "> **Uuid:** ``{uuid}``"
        - ""
      Footer: "Page {current}/{total}"
      Color: "Aqua"
      Ephemeral: true



If you have any questions or suggestions, please enter our discord: https://discord.gg/xYpPtUfxe6

Latest reviews

Great addon to help my staff manage the Tebex store without giving them full access to an account on the Tebex website. Helpful developer as well.
This license was given for free. What's this?
Excellent addon, managing my tebex from discord has made my existence easier since I am away from home for a long time and I can do it from my cell phone, as well as excellent support from the creator.
Buy a license now
Name a fair price:
EULA: Standard EULA
$
Secure checkout:
Share and earn
Refer this resource and earn a 10% commission.
1,779 Views
18 Purchases
19 Downloads
Jan 29, 2023 Published
Dec 31, 2023 Updated
5.00 star(s)
Average rating (2)
97.2 KB File size
Type
  1. Other
Creators
Owner
Recommended for you
This is an addon with which users will be able to leave their review regarding the service provided
3.00 star(s) 2 ratings
22 purchases
Say goodbye to scattered support requests and hello to an organized and efficient solution
5.00 star(s) 41 ratings
683 purchases
Moderation, Music, Tickets, Giveaways, Buttons, Backups, Leveling, Addons System
5.00 star(s) 33 ratings
617 purchases
#1 by features Tickets/Service Team Bot featuring Commissions, Reviews, Invoices, Dashboard & more
5.00 star(s) 42 ratings
586 purchases
Everything you need: Multi-Server, Music, Moderation, Tickets, Economy, Leveling and much more
5.00 star(s) 34 ratings
457 purchases
Share and earn
Refer this resource and earn a 10% commission.
1,779 Views
18 Purchases
19 Downloads
Jan 29, 2023 Published
Dec 31, 2023 Updated
5.00 star(s)
Average rating (2)
97.2 KB File size
Type
  1. Other
Creators
Owner
Recommended for you
This is an addon with which users will be able to leave their review regarding the service provided
3.00 star(s) 2 ratings
22 purchases
Say goodbye to scattered support requests and hello to an organized and efficient solution
5.00 star(s) 41 ratings
683 purchases
Moderation, Music, Tickets, Giveaways, Buttons, Backups, Leveling, Addons System
5.00 star(s) 33 ratings
617 purchases
#1 by features Tickets/Service Team Bot featuring Commissions, Reviews, Invoices, Dashboard & more
5.00 star(s) 42 ratings
586 purchases
Everything you need: Multi-Server, Music, Moderation, Tickets, Economy, Leveling and much more
5.00 star(s) 34 ratings
457 purchases
Top