2024-12-31 02:34:02 +05:00
|
|
|
# Sparkle
|
2025-01-20 15:01:44 +05:00
|
|
|
Library for creating Discord bots.
|
|
|
|
|
|
|
|
## How to Build
|
|
|
|
|
|
|
|
### Required Libraries
|
|
|
|
- `curl`
|
|
|
|
- `ixwebsocket`
|
|
|
|
|
|
|
|
### Build Instructions
|
2025-01-06 22:00:02 +05:00
|
|
|
```sh
|
2025-01-01 13:21:48 +05:00
|
|
|
git clone http://applejack.ygg/fluttershy/sparkle.git
|
2024-12-31 06:10:27 +05:00
|
|
|
mkdir sparkle/build && cd sparkle/build
|
2025-01-14 23:09:03 +05:00
|
|
|
cmake .. && make -j$(nproc)
|
2025-01-14 23:09:34 +05:00
|
|
|
./sparkle -t <BOT_TOKEN>
|
2024-12-31 02:34:02 +05:00
|
|
|
```
|
2025-01-20 15:01:44 +05:00
|
|
|
# ToDo
|
|
|
|
- [x] Websocket support
|
|
|
|
- [x] Minimal discord api support
|
|
|
|
- [x] Selfbot support
|
|
|
|
- [x] Easy to use
|
|
|
|
- [x] Support json extraction from server response
|
|
|
|
- [ ] Optimised for high loads (not tested)
|
|
|
|
- [ ] Full api support
|
|
|
|
- [ ] Fixes for known bugs
|
|
|
|
- [ ] Windows support
|
2025-01-20 16:22:58 +05:00
|
|
|
- [ ] Sharding
|
|
|
|
- [ ] Tests
|