An open API service indexing awesome lists of open source software.

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

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 available

SQL File

```ini
[Database]
template = postgres
; Only Postgres

[DatabaseCredentials]
server = localhost
database = postgres
port = 5432
user = postgres
password = 123

```