2018-09-12 22:26:44 +00:00
|
|
|
# Geoffrey: A Discord Bot for Minecraft Servers
|
2018-09-12 22:21:35 +00:00
|
|
|
Geoffrey was created to be an information source for base and shop locations on Minecraft severs. The bot mainly tracks
|
|
|
|
base, shop, and tunnel locations. This allows for users to quickly find each other's builds and find shops selling
|
|
|
|
goods.
|
|
|
|
|
|
|
|
Geoffrey can be used on a Discord server or in a private message with the bot.
|
|
|
|
|
2018-09-12 22:26:44 +00:00
|
|
|
## Information
|
2018-09-12 22:21:35 +00:00
|
|
|
Geoffrey was written in python and uses the [Discord.py rewrite](https://discordpy.readthedocs.io/en/rewrite/)
|
|
|
|
to interface with Discord and [SQLAlchemy](https://docs.sqlalchemy.org/en/latest/) for database
|
|
|
|
access.
|
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
## Adding a base
|
|
|
|
First you must register with the bot if you are a new user.
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
|
|
|
?register
|
|
|
|
```
|
|
|
|
|
|
|
|
This allows Geoffrey to link your MC name with your Discord account.
|
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
Then you can add your first base:
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
|
|
|
?add_base 500 550
|
|
|
|
```
|
|
|
|
|
|
|
|
Your first base does not need a name, it defaults to "[Username]'s Base"
|
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
If you want to specify a name:
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
|
|
|
?add_base 500 550 My New Base
|
|
|
|
```
|
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
To delete a base:
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
2018-09-22 01:34:29 +00:00
|
|
|
?delete "My Base"
|
|
|
|
```
|
|
|
|
## Adding a shop
|
|
|
|
A shop can be added like a base:
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
2018-09-22 01:34:29 +00:00
|
|
|
?add_shop 500 550
|
|
|
|
```
|
|
|
|
|
|
|
|
or
|
2018-09-12 22:21:35 +00:00
|
|
|
|
|
|
|
```
|
2018-09-22 01:34:29 +00:00
|
|
|
?add_shop 500 550 Cool Shop
|
|
|
|
```
|
|
|
|
|
|
|
|
The following command then adds dirt to the shop with the price of 5 dirt for 1 diamond:
|
|
|
|
```
|
|
|
|
?add_item Dirt 5 1
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you could delete that entry by:
|
|
|
|
```
|
|
|
|
?delete_item dirt
|
|
|
|
```
|
|
|
|
|
|
|
|
To delete a shop:
|
|
|
|
```
|
|
|
|
?delete "My shop"
|
|
|
|
```
|
|
|
|
## Adding a shop
|
|
|
|
|
|
|
|
If you have more than one shop, you need to specify the shop name.
|
|
|
|
|
|
|
|
## Searching in the database
|
|
|
|
The `?find` command is used to find bases and shops in Geoffrey. `?find` searches for both location names and owner names:
|
|
|
|
```
|
|
|
|
?find ZeroHD
|
|
|
|
```
|
|
|
|
|
|
|
|
Then to find out more info about a location, use `?info`:
|
|
|
|
```
|
|
|
|
?info ZeroHD's Base
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
`?selling` can be used to find items for sale:
|
|
|
|
```
|
|
|
|
?selling dirt
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also search around a position for locations with `?find_around`:
|
|
|
|
```
|
|
|
|
?find_around 0 0
|
2018-09-12 22:21:35 +00:00
|
|
|
```
|
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
## Editing Locations
|
|
|
|
To rename a base/shop you can do the following (the quotations around the location names are important!):
|
|
|
|
```
|
|
|
|
?edit_name "Cool New Name" "Current Name"
|
|
|
|
```
|
2018-09-12 22:21:35 +00:00
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
To move a location's position, use `?edit_pos`
|
|
|
|
```
|
|
|
|
?edit_pos 420 69 Cool Base
|
|
|
|
```
|
2018-08-20 22:54:14 +00:00
|
|
|
|
2018-09-22 01:34:29 +00:00
|
|
|
To change the tunnel of a base, use `?edit_tunnel`:
|
|
|
|
```
|
|
|
|
?edit_tunnel North 545
|
|
|
|
```
|