Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignacio Gonzalez committed Oct 12, 2022
1 parent bdee66d commit 73db743
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 100 deletions.
2 changes: 1 addition & 1 deletion .env-example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TOKEN=YOUR-DISCORD-BOT-TOKEN-HERE
STEAM_API=YOUR-STEAM-API-KEY-HERE
DB_UR=YOUR-MONGO-DB-URI-HERE
DB_URI=YOUR-MONGO-DB-URI-HERE
DBL_TOKEN=YOUR_DBL_TOKEN_HERE
CLIENT_ID=YOUR_BOT_CLIENT_ID
API_PORT=API_PORT_HERE
86 changes: 13 additions & 73 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,59 +9,29 @@

<br />

# RealTime Stats
https://github.com/GoruAkiba/socketStats

<br />
<p align="center">
<a href="http://id64toguid.tk/" >
<img src="https://i.imgur.com/b4EiyTi.gif" alt="Id64ToGuid" />
</a>
</p>

## Readme
[Support Discord](https://discord.gg/M3FvUq8)

[Bot invitation link](https://discord.com/api/oauth2/authorize?client_id=706139732073250860&permissions=537394240&scope=bot)

<img align="center" alt="siegmund0's Github Stats" src="https://github-readme-stats.vercel.app/api?username=siegmund0&show_icons=true&hide_border=true" />

<br />

---

### Features
## Features
- ⚡ You can convert steamid64 to Guid or UID very easily and quickly (Battleye GUID or Bohemia Interactive UID).
- 🌱 It has a command that displays a complete list of all bot commands 🤣

- 🔭 Commands:
-help
-botinfo
-arma3serverinfo
-dayzserverinfo
-guid
-steam
-invite
-online
-ping
-discordinfo
-setarma3server
-setdayzserver
-setprefix
-uid
-user

<br />
<p align="center">
<img src="https://i.imgur.com/vplyOQE.png"/>
<img src="https://i.imgur.com/CNZcFjL.png"/>
</p>
<br />

<img align="center" alt="siegmund0's Github Stats" src="https://github-readme-stats.vercel.app/api?username=siegmund0&show_icons=true&hide_border=true" />

<br />

### Languages and Tools:
<img align="left" alt="Visual Studio Code" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/visual-studio-code/visual-studio-code.png" />
<img align="left" alt="HTML5" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png" />
<img align="left" alt="CSS3" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png" />
<img align="left" alt="JavaScript" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png" />
<img align="left" alt="Node.js" width="26px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/nodejs/nodejs.png" />

<br />

## Prerequisites
Expand All @@ -72,51 +42,21 @@ https://github.com/GoruAkiba/socketStats
---

#### Satisfactory GUID Convertion
### Satisfactory GUID Convertion
<p align="center">
<img src="https://i.imgur.com/PhqGzkP.png"/>
<img src="https://i.imgur.com/D2NfdoX.png"/>
</p>

#### Catch Error GUID
### Satisfactory UID Convertion
<p align="center">
<img src="https://i.imgur.com/tccq516.png"/>
</p>

#### Satisfactory UID Convertion
<p align="center">
<img src="https://i.imgur.com/g12Q2Lt.png"/>
</p>

#### Catch Error UID
<p align="center">
<img src="https://i.imgur.com/0oE7Wts.png"/>
<img src="https://i.imgur.com/QDUxSmJ.png"/>
</p>

#### Steam id Finder
<p align="center">
<img src="https://i.imgur.com/wEVTOjS.png"/>
<img src="https://i.imgur.com/6Jnn5rW.png"/>
</p>

#### Set dayz server and Arma 3 server
<p align="center">
<img src="https://i.imgur.com/g6Wp9Uv.png"/>
<img src="https://i.imgur.com/jjSwByR.png"/>
<img src="https://i.imgur.com/YKY7y7E.png"/>
</p>

## Api GUID
<p align="center">
<img src="https://i.imgur.com/BBP6pkP.png"/>
</p>

## Api UID
<p align="center">
<img src="https://i.imgur.com/gQSZXJ7.png"/>
</p>
---



---

### YOU NEED MONGODB AND NODE.JS
1 change: 0 additions & 1 deletion src/Commands/GuidCommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const { GeneralConstants } = require("../Constants/GeneralConstants");
const { TextConstants } = require("../Constants/TextConstants");
const { GeneralDao } = require("../Daos/CommandsDao");
const { GuidDao } = require("../Daos/GuidDao");
const { MessageEventService } = require("../services/messageEvent.services");

module.exports = {
data: new SlashCommandBuilder()
Expand Down
2 changes: 1 addition & 1 deletion src/Database/DbConnection.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class DatabaseConnection {
useUnifiedTopology: true,
})
.then(() => { console.log('Base de datos conectada!') })
.catch(() => { console.log('Error al conectar con la base de datos!') })
.catch((e) => { console.log('Error al conectar con la base de datos!', e) })
};
}

Expand Down
8 changes: 8 additions & 0 deletions src/services/MessageEventService.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class MessageEventService {

static async sendLogsToChannel() {
//TODO
}
}

module.exports = { MessageEventService };
24 changes: 0 additions & 24 deletions src/services/messageEvent.services.js

This file was deleted.

0 comments on commit 73db743

Please sign in to comment.