Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bot/alias.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"rvntip":"tiprvn",
"dogetip":"tipdoge",
"lbctip":"tiplbc",
"ppctip":"tipppc",
"protontip":"tipproton",
"ufotip":"tipufo",
"pxctip":"tippxc",
Expand Down
2 changes: 1 addition & 1 deletion bot/bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ bot.on('ready', function() {
'tiphelp in Discord for a commands list.'
);
bot.user.setActivity(config.prefix + 'Intialized!');
var text = ['tiprvn', 'tipdoge', 'tiplbc', 'tipufo', 'tipphase', 'tippxc', 'tipftc', 'tipvtl', 'tipnebl', 'tipxuez', 'tipspk', 'tiphelp'];
var text = ['tiprvn', 'tipdoge', 'tiplbc', 'tipufo', 'tipppc','tipphase', 'tippxc', 'tipftc', 'tipvtl', 'tipnebl', 'tipxuez', 'tipspk', 'tiphelp'];
var counter = 0;
setInterval(change, 10000);

Expand Down
2 changes: 2 additions & 0 deletions bot/modules/helpTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ let verticalFee = config.get('vtl').paytxfee;
let neblioFee = config.get('nebl').paytxfee;
let xuezFee = config.get('xuez').paytxfee;
let spkFee = config.get('spk').paytxfee;
let ppcFee = config.get('ppc').paytxfee;
let prefix = config.get('bot').prefix;
exports.commands = ['tiphelp'];
exports.tiphelp = {
Expand All @@ -30,6 +31,7 @@ exports.tiphelp = {
' **Neblio (NEBL) Tipper**\n Transaction Fees: **' + neblioFee + '**\n' +
' **Xuez (XUEZ) Tipper**\n Transaction Fees: **' + xuezFee + '**\n' +
' **SparksPay (SPK) Tipper**\n Transaction Fees: **' + spkFee + '**\n' +
' **Peercoin (PPC) Tipper**\n Transaction Fees: **' + ppcFee + '**\n' +
'__**Commands**__\n' +
' **' + prefix + 'tip<CoinSymbol>** : Displays This Message\n' +
' **' + prefix + 'tip<CoinSymbol> balance** : get your balance\n' +
Expand Down
Loading