Addon: Language Pack with 10 languages:
The Light Services bot is a complete solution for a service team. It is built using the latest discord.js version, supports slash commands (interactions, dropdown menus, etc). It includes features such as PayPal invoices, wallet balance, complete system (similar to Fiverr), fee calculator, fully customizable panel, review system, and more! Providing support 24/7 on discord, feel free to contact us for any questions.
You get:
Troubleshooting FAQ:
Addon: Language Pack with 10 languages:
- German
- Spanish
- French
- Italian
- Polish
- Brazilian Portuguese
- Russian
- Turkish
- Simplified Chinese
- Traditional Chinese
The Light Services bot is a complete solution for a service team. It is built using the latest discord.js version, supports slash commands (interactions, dropdown menus, etc). It includes features such as PayPal invoices, wallet balance, complete system (similar to Fiverr), fee calculator, fully customizable panel, review system, and more! Providing support 24/7 on discord, feel free to contact us for any questions.
You get:
- A lifelong license with access to updates
- Included documentation (install guides and reference)
Troubleshooting FAQ:
What is
Error during creating an invoice or other PayPal error
Do I have to make the SQL tables myself?
Error: Cannot find module 'node:events'
Error that looks like
dbUrl
?The
If you have no idea about system administrating and databases, input
dbUrl
is the URL to a SQL-based database. The database URL looks like: protocol://username:password@host:port/database_name
(except SQLite), where:protocol
is the database type, for examplemysql
,postgres
,sqlite
username
andpassword
is a pair of credentials to your databasehost
andport
is the address to your database, for exampledatabase.hosting123.com:5432
database_name
is the name of the database. The chosen database must exist beforehand and will not be created by the bot.
If you have no idea about system administrating and databases, input
sqlite://database.db
to use a local SQLite database.Error during creating an invoice or other PayPal error
First off, check your credentials and sandbox mode. PayPal (and some other gateways) have "sandbox" modes which basically are designed for testing.
Make sure when getting credentials you're on the appropriate tab and set the
Make sure when getting credentials you're on the appropriate tab and set the
useSandbox
flag to false/true accordingly.Do I have to make the SQL tables myself?
No, you don't. Tables and their fields are managed by the bot. The only thing you have to create is the database itself.
Error: Cannot find module 'node:events'
The bot requires Node.js version 18 or higher. Upgrade your version of Node to v18 or v20.
Error that looks like
options.dialect = urlParts.protocol.replace(/:$/, "")
TypeError: Cannot read properties of null (reading 'replace')
The error signals a malformed database URL. Make sure you've entered the URL correctly and that the
dbUrl
is not commented out (check for a hashtag # before the word). For reference on configuring the database, refer to the third question.