Advertisement
iPlain

config.py

Jun 20th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.87 KB | None | 0 0
  1. username = ""
  2. password = ""
  3. client_id = ""
  4. client_secret = ""
  5. user_agent = "Coinflip gambling bot made by /u/DmesticG and /u/iPlain"
  6. subreddits = ["reddit_casino", "casino_bot"]
  7. flair_subreddit = "reddit_casino"
  8.  
  9. reset_text = "Your balance was reset to 1000."
  10. footer_text = "\n\n---I am a bot made by /u/DmesticG, PM him for any help."
  11.  
  12. def lose_text(flip, betSize, finalBal):
  13.     return ("Flipping a coin... It landed on {}, which means you lost {} coins. You now have {} coins.".format(flip, betSize, finalBal))
  14.    
  15. def win_text(flip, betSize, finalBal):
  16.     return ("Flipping a coin... It landed on {}, which means you won {} coins! You now have {} coins.".format(flip, betSize, finalBal))
  17.    
  18. def low_money_text(currentMoney):
  19.     return ("You only have {} coins! Try again with a value below that or type \"!coinflip resetbalance\" to reset your balance to 1000.".format(currentMoney))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement