-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathhelpTipper.js
More file actions
49 lines (49 loc) · 2.73 KB
/
helpTipper.js
File metadata and controls
49 lines (49 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'use strict';
let config = require('config');
let ravenFee = config.get('rvn').paytxfee;
let dogeFee = config.get('doge').paytxfee;
let lbryFee = config.get('lbc').paytxfee;
let phaseFee = config.get('phase').paytxfee;
let ufoFee = config.get('ufo').paytxfee;
let phoenixFee = config.get('pxc').paytxfee;
let featherFee = config.get('ftc').paytxfee;
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 prefix = config.get('bot').prefix;
exports.commands = ['tiphelp'];
exports.tiphelp = {
usage: '<subcommand>',
description: 'This commands has been changed to currency specific commands!',
process: function(bot, message) {
message.author.send(
'__**:bank: Coins :bank:**__\n' +
' **Ravencoin (RVN) Tipper**\n Transaction Fees: **' + ravenFee + '**\n' +
' **Dogecoin (DOGE) Tipper**\n Transaction Fees: **' + dogeFee + '**\n' +
' **LBRY Credit (LBC) Tipper**\n Transaction Fees: **' + lbryFee + '**\n' +
' **Phase (PHASE) Tipper**\n Transaction Fees: **' + phaseFee + '**\n' +
' **Uniform Fiscal Object (UFO) Tipper**\n Transaction Fees: **' + ufoFee + '**\n' +
' **Phoenixcoin (PXC) Tipper**\n Transaction Fees: **' + phoenixFee + '**\n' +
' **Feathercoin (FTC) Tipper**\n Transaction Fees: **' + featherFee + '**\n' +
' **Vertical (VTL) Tipper**\n Transaction Fees: **' + verticalFee + '**\n' +
' **Neblio (NEBL) Tipper**\n Transaction Fees: **' + neblioFee + '**\n' +
' **Xuez (XUEZ) Tipper**\n Transaction Fees: **' + xuezFee + '**\n' +
' **SparksPay (SPK) Tipper**\n Transaction Fees: **' + spkFee + '**\n' +
'__**Commands**__\n' +
' **' + prefix + 'tip<CoinSymbol>** : Displays This Message\n' +
' **' + prefix + 'tip<CoinSymbol> balance** : get your balance\n' +
' **' + prefix + 'tip<CoinSymbol> deposit** : get address for your deposits\n' +
' **' + prefix + 'tip<CoinSymbol> withdraw <ADDRESS> <AMOUNT>** : withdraw coins to specified address\n' +
' **' + prefix + 'tip<CoinSymbol> <@user> <amount>** :mention a user with @ and then the amount to tip them\n' +
' **' + prefix + 'tip<CoinSymbol> private <user> <amount>** : put private before Mentioning a user to tip them privately\n' +
'**<> : Replace carrot <> symbole with appropriate value.**\n' +
'__**Examples**__\n' +
' **' + prefix + 'tiprvn @MSFTserver 10**\n' +
' **' + prefix + 'tipdoge withdraw DOGEaddressHERE 10**\n' +
' **' + prefix + 'tipftc private @MSFTserver 10**\n' +
' **' + prefix + 'tiplbc balance**\n' +
' **' + prefix + 'tippxc deposit**\n'
);
}
};