Skip to content

Commit

Permalink
Peercoin (PPC) support (#25)
Browse files Browse the repository at this point in the history
Peercoin (PPC) support
  • Loading branch information
jointhepartypooper authored and MSFTserver committed Apr 15, 2019
1 parent 1ed3c40 commit 2e8b2b1
Show file tree
Hide file tree
Showing 5 changed files with 391 additions and 1 deletion.
1 change: 1 addition & 0 deletions bot/alias.json
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
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
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

0 comments on commit 2e8b2b1

Please sign in to comment.