Skip to content

Commit 7141e98

Browse files
author
Just Wait
committed
Build v1.7
1 parent 7441307 commit 7141e98

File tree

8 files changed

+310
-55
lines changed

8 files changed

+310
-55
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,6 @@ coverage/
152152
*.a
153153
*.lib
154154

155-
# Jupyter Notebooks
156-
.ipynb_checkpoints/
157-
*.ipynb
158-
159155
# Visual Studio Code
160156
.vscode/
161157
history/

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ Customizable Configuration: Server administrators can customize various aspects
2424

2525
### Once the bot is running, you can interact with it using commands in Discord. Here are some example commands:
2626

27-
`/play:` Play a slot machine game with a default bet of 100$.
28-
`/bet <amount>:` Place a bet on your current slot machine game.
27+
`/play: <bet>` Play a slot machine game with a default bet of 100$.
2928
`/balance:` View your current balance.
3029
`/leaderboard:` View the top 10 users by balance and achievements.
3130
`/info:` View your user information.
@@ -36,7 +35,7 @@ Customizable Configuration: Server administrators can customize various aspects
3635
`/subtract_balance <user> <amount>:` Subtract balance from a user (administrator only).
3736
`/download_log:` Download the current log file (administrator only).
3837
`/edit_config:` Edit server configuration (administrator only).
39-
`/release_notes:` View the latest release notes (administrator only).
38+
`/ban_player:` Ban a player from the playing (ADMIN).
4039

4140
## Customization
4241

config/data.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"version": "v1.6",
2+
"version": "v1.7",
33
"footer_text": "Copyright 2024 justwaitfor_me. All rights reserved. | Gambling can lead to financial loss, addiction, and emotional distress!",
4+
"developer": [838093888338133065],
45
"commands": [
56
["`/help`", "Lists all available commands"],
67
["`/play`", "Play the casino games"],
@@ -13,7 +14,8 @@
1314
["`/add_balance`", "Add money to a users account (ADMIN)"],
1415
["`/remove_balance`", "Remove money from a users account (ADMIN)"],
1516
["`/download_logs`", "Download the current logs to a text file (ADMIN)"],
16-
["`/edit_config`", "Edit configuration settings for the Server (ADMIN)"]
17+
["`/edit_config`", "Edit configuration settings for the Server (ADMIN)"],
18+
["`/ban_player`", "Ban a player from the playing (ADMIN)"]
1719
],
1820
"casino_games": [
1921
{
@@ -107,7 +109,7 @@
107109
"description": "A simple game where players bet on whether to double their money or lose it all.",
108110
"author_img": "casino-chip-2.png",
109111
"color": "#7d00ff",
110-
"win_chance": 0.44,
112+
"win_chance": 0.35,
111113
"max_rounds": 5
112114
},
113115
"slot_machine": {

docs/v1.7.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Release-Notizen: Version 1.7
2+
3+
Abgeschlossene Funktionen/Änderungen:
4+
- Blackjack: Dealer-Karten werden nun nach dem Spielende angezeigt. (geschlossen)
5+
- Footer: Footer-Test implementiert mit Daten aus `data.json` und Name hinzugefügt. (geschlossen)
6+
- Versionskontrolle: Versionskontrolle hinzugefügt. (geschlossen)
7+
- Fehlerbehebungen:
8+
- Mehrere Spieler können nun denselben /Play-Callback verwenden.
9+
- Fehler bei Pferde Wetten RS behoben.
10+
- Dezimalstellen im Slot Machine behoben.
11+
- Blackjack: Fehler bei der Anzeige der einfachen Karte in der Hand des Spielers behoben.
12+
- /send sendet nun nur einmal die angegebene Menge. (fixed)
13+
- Doppelte-oder-Nichts-Chance wurde auf 0.35 reduziert. (fixed)
14+
- Dealer zieht nicht mehr als 17 Karten. (fixed)
15+
- Ass wird jetzt korrekt gewertet. (fixed)
16+
- Server-Datendatei fehlt nicht mehr beim Git-Pull. (fixed)
17+
18+
Geplante Funktionen/Änderungen:
19+
- Guess the Number: Spieler dürfen nicht weniger als 0 oder mehr als 10 raten. (offen)
20+
- Insta Replay: Funktion für ein Replay ohne den /Play-Befehl. (offen)
21+
- Item Shop: Entwicklung noch offen. (offen)
22+
- Aktien: Aktien-Funktion noch in Entwicklung. (offen)
23+
- Spiele:
24+
- Pferderennen: Funktion noch in Entwicklung. (offen)
25+
- Poker (Multiplayer): Funktion noch in Entwicklung. (offen)
26+
- Glücksrad: Funktion noch in Entwicklung. (offen)
27+
28+
Todo:
29+
- Insta Replay ohne /Play > Github Issues (offen)
30+
- Item Shop (offen)
31+
- Aktien (geschlossen)
32+
- Einzelne Spieler bannen > Github Issues (geschlossen)
33+
- mark_murmel265 als Mitwirkender (in Bot-Präsenz) markieren (geschlossen)
34+
- Gesamtergebnisse der Bank speichern (geschlossen)
35+
- Dev-Modus einführen, um nur Entwickler für Tests zu ermöglichen (geschlossen)
36+
- Broadcast-Release-Notes an alle Kanäle (geschlossen)

0 commit comments

Comments
 (0)