aboutsummaryrefslogtreecommitdiff
path: root/modules/coins.py
Commit message (Expand)AuthorAgeFilesLines
* coins should be (nickname, coins) not just coinsGravatar jesopo2018-10-181-1/+2
* Typo in modules/coins.py, "coin_settings" -> "coins"Gravatar jesopo2018-10-181-1/+1
* Use "wallets" for !richest, not "coins"Gravatar jesopo2018-10-181-1/+5
* Internally use "wallets" to track users coinsGravatar jesopo2018-10-181-10/+22
* Coin amount is the second arg to !givecoinsGravatar jesopo2018-10-171-1/+1
* Re-add `new_coins` variable in modules/coins.py.lottery, used for telling a user•••what their balance is after winning the lottery Gravatar jesopo2018-10-171-0/+1
* We should be changing `bet_amounts` instead of parsing a bet amount and doing•••nothing with it :l Gravatar jesopo2018-10-171-1/+1
* Typo in modules/coins.py; 'utils._parse_coins' -> 'self._parse_coins'Gravatar jesopo2018-10-161-1/+1
* all_coins is a dictionary, thus needs .items() to turn it in to `nickname, co...Gravatar jesopo2018-10-161-1/+1
* Add utils.EventError, utilise it for stderr in commands.py/coins.pyGravatar jesopo2018-10-161-40/+19
* Typo in modules/coins.py.send(), 'target' -> 'target_user'Gravatar jesopo2018-10-161-1/+1
* Move redeem-amount/redeem-delay logic to their own functions in modules/coins.pyGravatar jesopo2018-10-161-8/+10
* Move logic to get all coins to it's own function in modules/coins.pyGravatar jesopo2018-10-161-10/+9
* Add missing help strings to commands in modules/coins.pyGravatar jesopo2018-10-161-0/+15
* Move some more str(coins) calls to _coin_str(coins) in modules/coins.pyGravatar jesopo2018-10-161-2/+2
* Remove unneeded complexity in modules/coins.py.reset_coinsGravatar jesopo2018-10-161-7/+3
* modules/coins.py._take should have a `server` paramGravatar jesopo2018-10-161-2/+2
* Move logic for "take from user, give to pool" (and visa-versa) it's own•••function, put user-to-user sending it's own function too Gravatar jesopo2018-10-161-31/+28
* Remove more code duplication in modules/coins.py; move parsing amounts of coins•••in to it's own function Gravatar jesopo2018-10-161-33/+38
* Remove a large amount of code duplication in modules/coins.pyGravatar jesopo2018-10-161-68/+67
* `event["server"]` -> `server` in modules/coins.pyGravatar jesopo2018-10-141-1/+1
* Catch ValueError from utils.parse_number, to allow other code to deal with•••complaining about invalid numbers Gravatar jesopo2018-10-141-2/+8
* Work directly from users in modules/coins.py.interest(), so as to not give•••double-interest to two "users" online at the same time sharing the same identity Gravatar jesopo2018-10-141-2/+1
* Add !lotterywinner in modules/coins.py, to show who last won the lotteryGravatar jesopo2018-10-141-0/+12
* Actually return in modules/coins.py._total_coinsGravatar jesopo2018-10-141-1/+1
* Add missing ) in modules/coins.pyGravatar jesopo2018-10-131-1/+10
* Move functionality of finding total in-circulation coins out to it's own•••function Gravatar jesopo2018-10-131-5/+6
* Add !totalcoins in modules/coins.py, to check what the total coins in•••circulation is Gravatar jesopo2018-10-131-0/+12
* !lotterybuy should require authentication because it uses coinsGravatar jesopo2018-10-131-1/+1
* 'redude' -> 'reduce' (my redudes), `import random` because i forgot to, don't•••try to do lottery for networks that have no lottery tickets purchased Gravatar jesopo2018-10-131-2/+4
* Fixed incorrect comment about what counts as high/low for roulette in•••modules/coins.py Gravatar jesopo2018-10-131-1/+1
* Give coins lost to the house in roulette to the BankGravatar jesopo2018-10-131-0/+1
* Typo in modules/coins.py, 'redcude' -> 'reduce'Gravatar jesopo2018-10-121-1/+1
* Default !lotterybuy to 1 ticketGravatar jesopo2018-10-121-1/+3
* Add !nextlottery to modules/coins.pyGravatar jesopo2018-10-121-0/+6
* Correct the logic used to find the time until the next lotteryGravatar jesopo2018-10-121-3/+3
* Pass context-wrapped timers to each module, add ModuleManager.BaseModule.on_loadGravatar jesopo2018-10-121-6/+5
* Use UTC in modules/coins.pyGravatar jesopo2018-10-121-3/+3
* Implement 4-times-daily lottery in module/coins.py and address all stderrs to•••the relevent user Gravatar jesopo2018-10-121-46/+145
* _give_from_pool/_take_from_pool take a `server` argumentGravatar jesopo2018-10-121-2/+2
* Show cents in !bank balance in modules/coins.pyGravatar jesopo2018-10-121-2/+2
* Introduce a finite coin system in modules/coins.pyGravatar jesopo2018-10-121-1/+35
* modules/coins.py.send should be checking user_coins before the send amount is•••taken away, not after Gravatar jesopo2018-10-121-1/+1
* Support unit-based bets (1k/1m/1b) in modules/coins.pyGravatar jesopo2018-10-121-0/+2
* Don't calculate `user_coins(+/-)coin_bet` twiceGravatar jesopo2018-10-111-6/+6
* Remove one-too-many indent in modules/coins.pyGravatar jesopo2018-10-111-1/+1
* Fix column obsessionGravatar panicbit2018-10-111-8/+14
* Show new coin total after flipping a coinGravatar panicbit2018-10-111-4/+6
* randbelow takes one argumentGravatar jesopo2018-10-101-1/+1
* Support coin bets without a whole number (e.g. '0.1' can be '.1')Gravatar jesopo2018-10-101-1/+1