You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
You can also join the [official RayzrDev server](https://rayzr.dev/join) to play with Gameboi yourself :)
22
22
23
-
## Download
23
+
## Run
24
24
25
25
You can download and run the bot yourself by grabbing the latest JAR from [the RayzrDev Jenkins server here](https://ci.rayzr.dev/job/Gameboi). Simply run the JAR from the commandline like so:
A `config.yml` file will be generated in the working directory the first time you run the bot, so just fill in your bot token and prefix and you're good to go!
32
32
33
+
Alternatively, you can run using the [rayzr522/gameboi](https://hub.docker.com/r/rayzr522/gameboi) Docker image:
34
+
35
+
```bash
36
+
# create the data directory
37
+
mkdir data
38
+
39
+
# run the container with the data directory mounted
40
+
docker run --rm -it -v $(pwd)/data:/var/gameboi rayzr522/gameboi
41
+
42
+
# or if you want it to run in the background and not be removed after it exits
43
+
docker run -v $(pwd)/data:/var/gameboi rayzr522/gameboi
44
+
```
45
+
33
46
## Commands
34
47
35
-
Command | Description
36
-
------- | -----------
37
-
`help` | Shows you help for Gameboi
38
-
`invite` | Gives you an invite link for Gameboi
39
-
`about` | Shows you information about Gameboi
40
-
`ping` | Shows you the bot's ping
41
-
`stats [game]` | Shows your game stats
42
-
`connect4 <other>` | Invites a player to play Connect4 with you!
43
-
`fight <other>` | Invites a player to play Fight with you!
44
-
`2048` | Starts a 2048 game.
45
-
`hangman` | Starts a hangman game.
46
-
`quit` | Quits you from your current match
47
-
`shop` | Lets you see what is available for purchase in the shop
48
-
`buy <item>` | Lets you buy items from the shop
49
-
`inventory` | Shows you what items you currently have
50
-
`equip <slot> <none OR item>` | Lets you equip different items
0 commit comments