Advertisement
jwinterm

config.yaml

Mar 5th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.57 KB | None | 0 0
  1. connection:
  2.   host: irc.freenode.net
  3.   port: 6697
  4.   secure: true
  5.   debug: false
  6. login:
  7.   nickname: myrbot
  8.   username: myrbot
  9.   realname: node.js myriad tipping bot
  10.   nickserv_password: ***
  11. channels:
  12.   - '##myriadcoin'
  13. log:
  14.   file: tipbot.log
  15. rpc:
  16.   host: localhost
  17.   port: 10889
  18.   user: ***
  19.   pass: ***
  20.   prefix: ''
  21. coin:
  22.   withdrawal_fee: 2
  23.   min_withdraw: 5
  24.   min_confirmations: 5
  25.   min_tip: 10
  26.   min_rain: 1
  27.   short_name: ' MYR'
  28.   full_name: myriadcoin
  29. webadmin:
  30.   enabled: false
  31.   port: 8080
  32.   users:
  33.     jwinterm: ***
  34. commands:
  35.   help:
  36.     pm: true
  37.     channel: true
  38.   tip:
  39.     pm: true
  40.     channel: true
  41.   balance:
  42.     pm: true
  43.     channel: true
  44.   withdraw:
  45.     pm: true
  46.     channel: true
  47.   address:
  48.     pm: true
  49.     channel: true
  50.   terms:
  51.     pm: true
  52.     channel: false
  53.   rain:
  54.     pm: false
  55.     channel: true
  56.     rain_on_last_active: 1800 # amount in seconds. rain tips will fall only on users active within x seconds. leave 0 for no such behavior.
  57.   rainall:
  58.     pm: false
  59.     channel: true
  60.   dice:
  61.     pm: true
  62.     channel: true
  63. messages:
  64.   error: 'Sorry %name%, something went wrong.'
  65.   no_funds: "Sorry %name%, you don't have enough funds (you're %short%%short_name% short)"
  66.   not_identified: '%name%: You need to be identified with NickServ to tip.'
  67.   tipped: '%from% tipped %to% %amount%%short_name%! "/msg %nick% help" to claim.'
  68.   balance: '%name% has %balance%%short_name%.'
  69.   balance_unconfirmed: '%name% has %balance%%short_name% (unconfirmed: %unconfirmed%%short_name%)'
  70.   deposit_address: Your deposit address %address%
  71.   withdraw_too_small: 'Sorry %name%, you need to withdraw at least %min_withdraw%%short_name% (you have %balance%%short_name%)'
  72.   invalid_address: 'Sorry %name%, the address you specified is invalid (%address%).'
  73.   tip_too_small: 'Sorry %from%, your tip to %to% (%amount%%short_name%) is too small (min. %min_tip%%short_name%).'
  74.   rain_too_small: 'Sorry %from%, your rain (%amount%%short_name%) is too small (min. %min_rain%%short_name%). Increase the value or decrease max wet users.'
  75.   tip_self: "Sorry %name%, you can't tip yourself!"
  76.   invalid_amount: 'Sorry %name%, "%amount%" is not a correct amount.'
  77.   rain: '%name% rained %amount%%short_name% upon %list%.'
  78.   rainall: '%name% rained %amount%%short_name% upon %list%.'
  79.   withdraw_success:
  80.     - '%name%: %amount%%short_name% has been withdrawn from your account to %address%'
  81.     - 'You have been charged %withdrawal_fee%%short_name% withdrawal fee.'
  82.     - 'Transaction %transaction% completed.'
  83.   help:
  84.    - 'You can use following commands:'
  85.     - 'balance - displays your current wallet balance'
  86.     - 'address - displays %full_name% address where you can send your funds to the tip bot'
  87.     - 'withdraw <%full_name% address> - withdraws your whole wallet balance to specified address (you will be charged %withdrawal_fee%%short_name% withdrawal fee)'
  88.     - 'tip <nick> <amount> - sends the specified amount of %full_name% to the specified nickname'
  89.     - 'rain <amount> [max] - splits amount coins between max users or the whole channel'
  90.     - 'rainall <amount> - splits amount coins between users of the whole channel'
  91.     - 'dice <amount> [multiplier] - play dice with myrbot, default multiplier is 2, use 5 or 10 for lower odds and higher reward (1% house edge)'
  92.     - 'terms - displays terms and conditions for using %nick%'
  93.   terms:
  94.    - 'There are no fees to use %nick%, with the exception of %withdrawal_fee%%short_name% fee on withdrawals.'
  95.     - 'In no event shall %nick% be responsible in the event of lost, stolen or misdirected funds.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement