This commit is contained in:
bash
2024-07-29 18:17:04 +00:00
parent 89a60b61e3
commit 47019a73e8
21 changed files with 343 additions and 279 deletions

5
sql/find_character.sql Executable file
View File

@@ -0,0 +1,5 @@
USE acore_auth;
SELECT acc.id AS accountId, ch.name as characterName, ch.guid AS characterId,
FROM acore_auth.account AS acc
INNER JOIN acore_characters.characters AS ch
WHERE acc.id = ch.account and acc.username = '{{ACCOUNT_NAME}}';