Compare commits
4 commits
v10.0.2
...
10.0.0-rel
Author | SHA1 | Date | |
---|---|---|---|
ac9ce2d957 | |||
8ddee3cf3a | |||
5a7a6548d7 | |||
7ce5949d86 |
3 changed files with 10 additions and 4 deletions
|
@ -7,6 +7,10 @@ owobot is a Minecraft bot originally designed for [Kaboom](https://kaboom.pw/) a
|
||||||
- a command core, to run commands quickly
|
- a command core, to run commands quickly
|
||||||
- a hashing system, to enable trusted users to securely run certain commands in chat
|
- a hashing system, to enable trusted users to securely run certain commands in chat
|
||||||
|
|
||||||
|
If you are not sure if this code is safe to run, you can read through every line of code. You can also see the commit history by clicking on the (n) commits button, to make sure nobody added any exploits to the code.
|
||||||
|
|
||||||
|
If you find any exploits, security issues, etc in the code, please send me an issue or pull request and I will try to respond to it whenever I see it.
|
||||||
|
|
||||||
## How to install?
|
## How to install?
|
||||||
|
|
||||||
1. Install [Node.js](https://nodejs.org/) for your operating system.
|
1. Install [Node.js](https://nodejs.org/) for your operating system.
|
||||||
|
|
|
@ -32,16 +32,18 @@
|
||||||
"command.say.desc": "Sends a message to chat",
|
"command.say.desc": "Sends a message to chat",
|
||||||
"command.settings.usage": " get|| set <key> <value>",
|
"command.settings.usage": " get|| set <key> <value>",
|
||||||
"command.settings.desc": "Set your user preferences",
|
"command.settings.desc": "Set your user preferences",
|
||||||
|
"command.restart.usage": "",
|
||||||
|
"command.restart.desc": "Restart bot",
|
||||||
"command.stop.usage": "",
|
"command.stop.usage": "",
|
||||||
"command.stop.desc": "Restart bot",
|
"command.stop.desc": "Stop bot",
|
||||||
"command.template.usage": " <required> [optional]",
|
"command.template.usage": " <required> [optional]",
|
||||||
"command.template.desc": "Does nothing",
|
"command.template.desc": "Does nothing",
|
||||||
"command.test.usage": " [args...]",
|
"command.test.usage": " [args...]",
|
||||||
"command.test.desc": "Chat parsing debugger command",
|
"command.test.desc": "Chat parsing debugger command",
|
||||||
"command.tpr.usage": "",
|
"command.tpr.usage": "",
|
||||||
"command.tpr.desc": "Teleport to a random location",
|
"command.tpr.desc": "Teleport to a random location",
|
||||||
"command.verify.usage": " [args...]",
|
"command.validate.usage": " [args...]",
|
||||||
"command.verify.desc": "Check the hashing system",
|
"command.validate.desc": "Check the hashing system",
|
||||||
"command.about.author": "%s - a Minecraft bot made by %s for Kaboom and clones",
|
"command.about.author": "%s - a Minecraft bot made by %s for Kaboom and clones",
|
||||||
"command.about.version": "Version %s",
|
"command.about.version": "Version %s",
|
||||||
"command.about.preRelease": "This is a development version - there may be errors, and features may be changed or removed at any time. Please report any errors to the bot's developer.",
|
"command.about.preRelease": "This is a development version - there may be errors, and features may be changed or removed at any time. Please report any errors to the bot's developer.",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"botName": "owobot",
|
"botName": "owobot",
|
||||||
"botVersion": "10.0.2",
|
"botVersion": "10.0.3",
|
||||||
"botAuthor": "SundanceNanshan",
|
"botAuthor": "SundanceNanshan",
|
||||||
"isPreRelease": false,
|
"isPreRelease": false,
|
||||||
"sourceURL": "https://code.chipmunk.land/7cc5c4f330d47060/owobot"
|
"sourceURL": "https://code.chipmunk.land/7cc5c4f330d47060/owobot"
|
||||||
|
|
Loading…
Reference in a new issue