mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-31 09:21:34 +00:00
fixes + updates
This commit is contained in:
parent
0952daf34b
commit
dfbe7fbfd7
1 changed files with 9 additions and 11 deletions
|
@ -43,12 +43,12 @@ exports.commands = [
|
|||
exports.helpcommands = {
|
||||
usage: " ",
|
||||
description:
|
||||
"Displays Helpful Commands:\n!what, !beta, !begging, !github, !appdownload, !daemondownload, !directories, !faq, !name, !mining, !pricestance, !publisher, !publish, !random, !referrals, !rewards, !rewardsvsreferrals, !cc, !verify, !verification, !logfile, !backup, !startup, !streamingissues, !ports, !migrate, !tipping, !email, !cli, !ipfstorrent",
|
||||
"Displays Helpful Commands:\n!what, !beta, !begging, !github, !appdownload, !daemondownload, !directories, !faq, !name, !mining, !pricestance, !publisher, !publish, !random, !referrals, !rewards, !rewardsvsreferrals, !cc, !verify, !verification, !logfile, !backup, !startup, !streamingissues, !ports, !migrate, !tipping, !email, !cli, !ipfstorrent, !shapeshift",
|
||||
process: function(bot, msg) {
|
||||
msg.channel.send({
|
||||
embed: {
|
||||
description:
|
||||
"**!what, !beta, !begging, !github, !appdownload, !daemondownload, !directories, !faq, !name, !mining, !pricestance, !publisher, !publish, !random, !referrals, !rewards, !rewardsvsreferrals, !cc, !verify, !verification, !logfile, !backup, !startup, !streamingissues, !ports, !migrate, !tipping, !email, !cli, !ipfstorrent**",
|
||||
"**!what, !beta, !begging, !github, !appdownload, !daemondownload, !directories, !faq, !name, !mining, !pricestance, !publisher, !publish, !random, !referrals, !rewards, !rewardsvsreferrals, !cc, !verify, !verification, !logfile, !backup, !startup, !streamingissues, !ports, !migrate, !tipping, !email, !cli, !ipfstorrent, !shapeshift**",
|
||||
color: 7976557,
|
||||
author: {
|
||||
name: "List of Helpful LBRY Commands",
|
||||
|
@ -276,7 +276,7 @@ exports.publisher = {
|
|||
process: function(bot, msg) {
|
||||
const embed = {
|
||||
description:
|
||||
"Interested in publishing on LBRY? Have a look at [lbry.io/publish](https://lbry.io/publish)",
|
||||
"Interested in publishing on LBRY? Have a look at [lbry.io/youtube](https://lbry.io/youtube)",
|
||||
color: 7976557,
|
||||
author: {
|
||||
name: "Want to Publish?",
|
||||
|
@ -348,11 +348,11 @@ exports.rewards = {
|
|||
process: function(bot, msg) {
|
||||
const embed = {
|
||||
description:
|
||||
"Rewards are given to legitimate users who are using the system (and in turn are testing things for us). In order to redeem rewards, you may need to verify your identity through a Credit Card or other manual methods.\n Please see [lbry.io/faq/identity-requirements](https://lbry.io/faq/identity-requirements)",
|
||||
"[Rewards](https://lbry.io/faq/rewards) are given to legitimate users who are using the system (and in turn are testing things for us). In order to redeem rewards, you may need to verify your identity through a Credit Card or other manual methods.\n Please see [lbry.io/faq/identity-requirements](https://lbry.io/faq/identity-requirements)",
|
||||
color: 7976557,
|
||||
author: {
|
||||
name: "Rewards",
|
||||
url: "https://lbry.io/faq/identity-requirements",
|
||||
url: "https://lbry.io/faq/rewards",
|
||||
icon_url: "https://i.imgur.com/yWf5USu.png"
|
||||
}
|
||||
};
|
||||
|
@ -419,18 +419,18 @@ exports.verification = {
|
|||
var message =
|
||||
"If you would like to be verified go to <#" +
|
||||
verificationChannel +
|
||||
">. After joining, post that you would like verification and a mod will get to your request as soon as possible. We appreciate your patience. Only one account per person is allowed access to LBRY Rewards. This channel is not for YouTube sync, which is a separate process that requires a minimum number of views on Youtube (If you restarted LBRY and didn't get verified, you most likely don't qualify).";
|
||||
">. After joining, post that you would like verification and a mod will get to your request as soon as possible. We appreciate your patience. Only one account per person is allowed access to LBRY Rewards. Check out our [YouTube Sync](https://lbry.io/faq/youtube) for assistance with the YouTube Sync rewards verification method.";
|
||||
msg.channel.send(message);
|
||||
}
|
||||
};
|
||||
|
||||
exports.logfile = {
|
||||
usage: " ",
|
||||
description: "How to fine LBRY-app Log File?",
|
||||
description: "How to find LBRY-app Log File?",
|
||||
process: function(bot, msg) {
|
||||
const embed = {
|
||||
description:
|
||||
"You can find your log files by following the tutorial [HERE](https://lbry.io/faq/how-to-find-lbry-log-file)",
|
||||
"You can find your log files by following the guide [HERE](https://lbry.io/faq/how-to-find-lbry-log-file)",
|
||||
color: 7976557,
|
||||
author: {
|
||||
name: "How to find my LogFile?",
|
||||
|
@ -624,15 +624,13 @@ exports.ipfstorrent = {
|
|||
}
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
exports.shapeshift = {
|
||||
usage: " ",
|
||||
description: "How can I convert my crypto into LBC?",
|
||||
process: function(bot, msg) {
|
||||
const embed = {
|
||||
description:
|
||||
"Please see this guide on how to convert my crypto into LBC, check out [lbry.io/faq/shapeshift](https://lbry.io/faq/shapeshift)",
|
||||
"Please see this guide on how to convert your crypto into LBC: [lbry.io/faq/shapeshift](https://lbry.io/faq/shapeshift)",
|
||||
color: 7976557,
|
||||
author: {
|
||||
name: "How can I convert my crypto into LBC?",
|
||||
|
|
Loading…
Add table
Reference in a new issue