Update branding

If it causes problems, botvX
This commit is contained in:
7cc5c4f330d47060 2024-09-08 22:04:10 -04:00
parent 7d141f1cc5
commit 26534a28d3
Signed by: 7cc5c4f330d47060
SSH key fingerprint: SHA256:e+4tcZut1nBpe10PqjaO+Rvie0Q7W4qIvFzcUw+7riA
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# botvX
# owobot
botvX is a Minecraft bot originally designed for [Kaboom](https://kaboom.pw/) and its clones. It has many of the features that you would expect in a modern Kaboom bot:
owobot is a Minecraft bot originally designed for [Kaboom](https://kaboom.pw/) and its clones. It has many of the features that you would expect in a modern Kaboom bot:
- commands (obviously)
- a self care system
@ -10,7 +10,7 @@ botvX is a Minecraft bot originally designed for [Kaboom](https://kaboom.pw/) an
## How to install?
1. Install [Node.js](https://nodejs.org/) for your operating system.
2. Download the latest release, or alternatively, download the latest development version using `git clone https://code.chipmunk.land/7cc5c4f330d47060/botvX`.
2. Download the latest release, or alternatively, download the latest development version using `git clone https://code.chipmunk.land/7cc5c4f330d47060/owobot`.
3. Extract the files if necessary.
4. Run `npm install` in the bot's directory. If it doesn't work, try using the Node.js command prompt, or adding Node.js to your PATH.
5. Copy `settings_example.json` to `settings.json` and `secret_example.json` to `secret.json`, and adjust the settings to fit your needs. Change the example keys in secret.json as well.

View file

@ -1,6 +1,7 @@
const index = require('../index.js')
const parse = require('../util/chatparse_console.js')
const settings = require('../settings.json')
const version = require("../version.json")
class ConsoleCommand {
constructor (cmd, index2) {
this.send = () => {}
@ -20,7 +21,7 @@ class ConsoleCommand {
this.verify = 2
this.host = ''
this.port = '3'
this.serverName = 'botvX Console'
this.serverName = `${version.botName} Console`
this.lang = settings.defaultLang
this.colors = settings.colors
}