You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: bot/modules/dogeTipper.js
+87-21
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,8 @@ exports.tipdoge = {
25
25
helpmsg=
26
26
'**!tipdoge** : Displays This Message\n **!tipdoge balance** : get your balance\n **!tipdoge deposit** : get address for your deposits\n **!tipdoge withdraw <ADDRESS> <AMOUNT>** : withdraw coins to specified address\n **!tipdoge <@user> <amount>** :mention a user with @ and then the amount to tip them\n **!tipdoge private <user> <amount>** : put private before Mentioning a user to tip them privately.\n\n**!multitipdoge** : Displays This Message Below\n'+
27
27
' **!multitipdoge <@user1> <@user2> <amount>** : Mention one or more users, seperated by spaces, then an amount that each mentioned user will receive.\n **!multitipdoge private <@user1> <@user2> <amount>** : Put private before Mentioning one or more users to have each user tipped privately.\n\n**!roletipdoge** : Displays This Message Below\n **!roletipdoge <@role> <amount>** : Mention a single role, then an amount that each user in that role will receive.\n **!roletipdoge private <@role> <amount>** : Put private before the role to have each user tipped privately.\n **<> : Replace with appropriate value.**',
28
-
channelwarning='Please use <#'+spamchannel+'> or DMs to talk to bots.',
28
+
channelwarning=
29
+
'Please use <#'+spamchannel+'> or DMs to talk to bots.',
'**!multitipdoge** : Displays This Message\n **!multitipdoge <@user1> <@user2> <amount>** : Mention one or more users, seperated by spaces, then an amount that each mentioned user will receive.\n **!multitipdoge private <@user1> <@user2> <amount>** : Put private before Mentioning one or more users to have each user tipped privately.\n ** <> : Replace with appropriate value.**',
64
-
channelwarning='Please use <#'+spamchannel+'> or DMs to talk to bots.',
69
+
channelwarning=
70
+
'Please use <#'+spamchannel+'> or DMs to talk to bots.',
65
71
MultiorRole=true;
66
72
switch(subcommand){
67
73
case'help':
@@ -89,7 +95,8 @@ exports.roletipdoge = {
89
95
subcommand=words.length>=2 ? words[1] : 'help',
90
96
helpmsg=
91
97
'**!roletipdoge** : Displays This Message\n **!roletipdoge <@role> <amount>** : Mention a single role, then an amount that each user in that role will receive.\n **!roletipdoge private <@role> <amount>** : Put private before the role to have each user tipped privately.\n ** <> : Replace with appropriate value.**',
92
-
channelwarning='Please use <#'+spamchannel+'> or DMs to talk to bots.',
98
+
channelwarning=
99
+
'Please use <#'+spamchannel+'> or DMs to talk to bots.',
93
100
MultiorRole=true;
94
101
switch(subcommand){
95
102
case'help':
@@ -117,7 +124,9 @@ function doHelp(message, helpmsg) {
0 commit comments