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
[+] Added DeleteBotHandler for deleting bots in web dashboard.
[+] Supported to implement custom command serializer.
[+] Supported to delete bots when running.
[#] Updated README
[+] Synchronized chinese README_CN.md with README.md
|`reload <Plugin Name> <bot name (optional)>`| Hot-reloading a specified plugin |
88
-
|`load <PLugin Name> <bot name (optional)>`| Hot-loading a specified plugin |
92
+
|`reload <plugin Name> [bot name]`| Hot-reloading a specified plugin |
93
+
|`load <pLugin Name> [bot name]`| Hot-loading a specified plugin |
89
94
|`respawn`| Respawn the bot when in game. |
90
95
|`license` (`l`, `lic`) | Show the license on the terminal |
91
96
|`help` (`h`, `?`) | Show the Command menu and usages for each command |
@@ -98,6 +103,7 @@ In this section, you will understand below how-tos:
98
103
-**3. How to start multiple bot simultaneously with proxy settings**
99
104
-**4. How to configure advanced options**
100
105
-**5. How to make a custom plugin**
106
+
-**6. How to use Web Console for remote management**
101
107
102
108
1.**Download the Client**
103
109
Download the jar archive file: `DolphinBot-[version]-full.jar`.
@@ -328,6 +334,53 @@ Dolphin bot supports you to **hot-reload** and **hot-load** (**hot injection**)
328
334
You can send `!reload <pluginName>` dolphin command in server chat.
329
335
Alternatively, you can type `reload plugin.jar` in the terminal to hot-reload plugins.
330
336
337
+
## Web Console
338
+
DolphinBot now includes a built-in Web Console for remote bot management and control. This allows you to manage your bots through a modern web interface without needing direct terminal access.
339
+
340
+
### Starting the Web Console
341
+
To enable the Web Console, simply add the `--api` parameter when starting DolphinBot:
- **Bot Statistics** - Visual circular progress showing online rate with color-coded status
356
+
357
+
### Accessing the Web Console
358
+
Once the API server is running, you can access the Web Console at:
359
+
```
360
+
http://localhost:8080
361
+
```
362
+
363
+
The Web Console is provided as a separate Spring Boot application located in the `web-console/` directory. See [Web Console Documentation](web-console/README.md) for detailed setup and usage instructions.
364
+
365
+
### API Endpoints
366
+
The built-in HTTP API provides the following endpoints:
0 commit comments