https://github.com/cristian-sknz/ousucore
**DEPRECATED** A runtime framework for Discord Bots
https://github.com/cristian-sknz/ousucore
discord-bot framework java
Last synced: 3 months ago
JSON representation
**DEPRECATED** A runtime framework for Discord Bots
- Host: GitHub
- URL: https://github.com/cristian-sknz/ousucore
- Owner: Cristian-Sknz
- License: agpl-3.0
- Created: 2020-06-22T21:49:19.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-10-19T21:08:33.000Z (over 3 years ago)
- Last Synced: 2025-01-22T20:35:16.751Z (4 months ago)
- Topics: discord-bot, framework, java
- Language: Java
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## OusuCore | for personal use | Beta 1.0
Este projeto foi feito para facilitar a forma em que eu faço os bots.
Este projeto me fez poupar bastante tempo na criação de bots,
pude criar bots mais rapido que o normal.
OBS: Este projeto tinha uma ideia inicial de rodar vários bots ao mesmo tempo, mas isso foi descontinuado,
sofreu um rework, pois tinha vestigios da antiga ideia, que fazia o codigo do projeto ficar desnecessariamente poluido.
Para desfrutar completamente o uso, recomendo utilizar o OusuCore-Commons.Directory Struture
```markdown
OusuCore:.
├───./bots
│ ├─── YourBot.jar
│ └───./YourBot
│ ├───assets
│ ├───fonts
│ └───language
├───./dependency
├───./library
├───./logs
├─── Settings.ini
├─── SQLConfiguration.ini
└─── OusuCore.jar
```Settings File
```ini
[BotConfiguration]
token = BOT-TOKEN
shards = 1[OtherConfiguration]
chunkfilter = true
cacheflag = default
gatewayintents = default
```
* CacheFlag & GatewayIntents
Only the default option is availableSQL File
```ini
[Database]
template = postgres
; Only Postgres[DatabaseCredentials]
server = localhost
database = postgres
port = 5432
user = postgres
password = 123```