Skip to content

Commit 2e8b2b1

Browse files
jointhepartypooperMSFTserver
jointhepartypooper
authored andcommitted
Peercoin (PPC) support (#25)
Peercoin (PPC) support
1 parent 1ed3c40 commit 2e8b2b1

File tree

5 files changed

+391
-1
lines changed

5 files changed

+391
-1
lines changed

Diff for: bot/alias.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"rvntip":"tiprvn",
33
"dogetip":"tipdoge",
44
"lbctip":"tiplbc",
5+
"ppctip":"tipppc",
56
"protontip":"tipproton",
67
"ufotip":"tipufo",
78
"pxctip":"tippxc",

Diff for: bot/bot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bot.on('ready', function() {
7777
'tiphelp in Discord for a commands list.'
7878
);
7979
bot.user.setActivity(config.prefix + 'Intialized!');
80-
var text = ['tiprvn', 'tipdoge', 'tiplbc', 'tipufo', 'tipphase', 'tippxc', 'tipftc', 'tipvtl', 'tipnebl', 'tipxuez', 'tipspk', 'tiphelp'];
80+
var text = ['tiprvn', 'tipdoge', 'tiplbc', 'tipufo', 'tipppc','tipphase', 'tippxc', 'tipftc', 'tipvtl', 'tipnebl', 'tipxuez', 'tipspk', 'tiphelp'];
8181
var counter = 0;
8282
setInterval(change, 10000);
8383

Diff for: bot/modules/helpTipper.js

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ let verticalFee = config.get('vtl').paytxfee;
1111
let neblioFee = config.get('nebl').paytxfee;
1212
let xuezFee = config.get('xuez').paytxfee;
1313
let spkFee = config.get('spk').paytxfee;
14+
let ppcFee = config.get('ppc').paytxfee;
1415
let prefix = config.get('bot').prefix;
1516
exports.commands = ['tiphelp'];
1617
exports.tiphelp = {
@@ -30,6 +31,7 @@ exports.tiphelp = {
3031
' **Neblio (NEBL) Tipper**\n Transaction Fees: **' + neblioFee + '**\n' +
3132
' **Xuez (XUEZ) Tipper**\n Transaction Fees: **' + xuezFee + '**\n' +
3233
' **SparksPay (SPK) Tipper**\n Transaction Fees: **' + spkFee + '**\n' +
34+
' **Peercoin (PPC) Tipper**\n Transaction Fees: **' + ppcFee + '**\n' +
3335
'__**Commands**__\n' +
3436
' **' + prefix + 'tip<CoinSymbol>** : Displays This Message\n' +
3537
' **' + prefix + 'tip<CoinSymbol> balance** : get your balance\n' +

0 commit comments

Comments
 (0)