From 48f9389100b415af48035b47bd26ae69ba60dc15 Mon Sep 17 00:00:00 2001 From: BigGamerGary Date: Mon, 11 Aug 2025 21:58:43 +1000 Subject: [PATCH] Moved shit to recycle bin etc etc --- .../BlackJackBot}/BJBot.py | 0 .../BlackJackBot}/BlackJackOld.py | 0 .../BlackJackBot}/BlackJackTest.py | 0 .../__pycache__/BlackJack.cpython-310.pyc | Bin .../__pycache__/BlackJack.cpython-39.pyc | Bin .../BlackJackBot}/ledger.txt | 0 {src/py => Recycle Bin}/Gamepicker.py | 0 .../docker-compose.yml | 0 list.txt => Recycle Bin/list.txt | 0 plan.txt => Recycle Bin/plan.txt | 0 run.sh => Recycle Bin/run.sh | 0 update.sh => Recycle Bin/update.sh | 0 ledger.db | Bin 8192 -> 8192 bytes src/py/Acronymbot.py | 10 ---------- src/py/BlackJack.py | 5 ++--- 15 files changed, 2 insertions(+), 13 deletions(-) rename {BlackJackBot => Recycle Bin/BlackJackBot}/BJBot.py (100%) rename {BlackJackBot => Recycle Bin/BlackJackBot}/BlackJackOld.py (100%) rename {BlackJackBot => Recycle Bin/BlackJackBot}/BlackJackTest.py (100%) rename {BlackJackBot => Recycle Bin/BlackJackBot}/__pycache__/BlackJack.cpython-310.pyc (100%) rename {BlackJackBot => Recycle Bin/BlackJackBot}/__pycache__/BlackJack.cpython-39.pyc (100%) rename {BlackJackBot => Recycle Bin/BlackJackBot}/ledger.txt (100%) rename {src/py => Recycle Bin}/Gamepicker.py (100%) rename docker-compose.yml => Recycle Bin/docker-compose.yml (100%) rename list.txt => Recycle Bin/list.txt (100%) rename plan.txt => Recycle Bin/plan.txt (100%) rename run.sh => Recycle Bin/run.sh (100%) rename update.sh => Recycle Bin/update.sh (100%) diff --git a/BlackJackBot/BJBot.py b/Recycle Bin/BlackJackBot/BJBot.py similarity index 100% rename from BlackJackBot/BJBot.py rename to Recycle Bin/BlackJackBot/BJBot.py diff --git a/BlackJackBot/BlackJackOld.py b/Recycle Bin/BlackJackBot/BlackJackOld.py similarity index 100% rename from BlackJackBot/BlackJackOld.py rename to Recycle Bin/BlackJackBot/BlackJackOld.py diff --git a/BlackJackBot/BlackJackTest.py b/Recycle Bin/BlackJackBot/BlackJackTest.py similarity index 100% rename from BlackJackBot/BlackJackTest.py rename to Recycle Bin/BlackJackBot/BlackJackTest.py diff --git a/BlackJackBot/__pycache__/BlackJack.cpython-310.pyc b/Recycle Bin/BlackJackBot/__pycache__/BlackJack.cpython-310.pyc similarity index 100% rename from BlackJackBot/__pycache__/BlackJack.cpython-310.pyc rename to Recycle Bin/BlackJackBot/__pycache__/BlackJack.cpython-310.pyc diff --git a/BlackJackBot/__pycache__/BlackJack.cpython-39.pyc b/Recycle Bin/BlackJackBot/__pycache__/BlackJack.cpython-39.pyc similarity index 100% rename from BlackJackBot/__pycache__/BlackJack.cpython-39.pyc rename to Recycle Bin/BlackJackBot/__pycache__/BlackJack.cpython-39.pyc diff --git a/BlackJackBot/ledger.txt b/Recycle Bin/BlackJackBot/ledger.txt similarity index 100% rename from BlackJackBot/ledger.txt rename to Recycle Bin/BlackJackBot/ledger.txt diff --git a/src/py/Gamepicker.py b/Recycle Bin/Gamepicker.py similarity index 100% rename from src/py/Gamepicker.py rename to Recycle Bin/Gamepicker.py diff --git a/docker-compose.yml b/Recycle Bin/docker-compose.yml similarity index 100% rename from docker-compose.yml rename to Recycle Bin/docker-compose.yml diff --git a/list.txt b/Recycle Bin/list.txt similarity index 100% rename from list.txt rename to Recycle Bin/list.txt diff --git a/plan.txt b/Recycle Bin/plan.txt similarity index 100% rename from plan.txt rename to Recycle Bin/plan.txt diff --git a/run.sh b/Recycle Bin/run.sh similarity index 100% rename from run.sh rename to Recycle Bin/run.sh diff --git a/update.sh b/Recycle Bin/update.sh similarity index 100% rename from update.sh rename to Recycle Bin/update.sh diff --git a/ledger.db b/ledger.db index f0951525b6afde52794b189d9d0ec61d076c27df..f29273f11c59904fe9e2fd1e3059ef059369a62e 100644 GIT binary patch delta 42 xcmZp0XmFSy%@{mU#+fmAV?u|#1n(LHYau2!1~w)}MkdSJDK$(C4C*ERl>qHL3JCxJ delta 42 xcmZp0XmFSy&FD2z#+lJ;V?u|#1kV$FYau2!1~w)}MkdSJDK$(C4C(?tB>?W03BdpW diff --git a/src/py/Acronymbot.py b/src/py/Acronymbot.py index e52711e..aed22e4 100644 --- a/src/py/Acronymbot.py +++ b/src/py/Acronymbot.py @@ -113,16 +113,6 @@ async def calculator(interaction: discord.Interaction): calculator = Calculator() await interaction.followup.send(content="`" + " " * calculator.MAXIMUMBARSIZE + "0`", view=calculator) - -""" -#### Game Picker #### -""" -@tree.command(description="Pick a game") -async def gg(interaction: discord.Interaction): - - game = pick_game() - await interaction.response.send_message(f"{game}") - @tree.command(description="Roll a Dice") @app_commands.choices(dice = [ app_commands.Choice(name = 'd4', value=4), diff --git a/src/py/BlackJack.py b/src/py/BlackJack.py index 2f44284..d5b16be 100644 --- a/src/py/BlackJack.py +++ b/src/py/BlackJack.py @@ -4,6 +4,7 @@ from Ledger import Ledger #TODO Look into 5card jack thingo that Tim mentioned #TODO Insurance - If dealer starts with 21, you can bet against it and win your money back #TODO Make each game session more distinct (Embeds?) +#TODO Card counting. # Game States INIT = 0 @@ -345,6 +346,4 @@ def main(): if __name__ == "__main__": - main() - - + main() \ No newline at end of file