feature: JPK encryption and databased events

This commit is contained in:
Matthe815
2023-07-03 02:50:38 -04:00
parent 76a3d73102
commit a065643783
4 changed files with 285 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
BEGIN;
create table if not exists event_quests
(
id serial,
max_players integer,
quest_type integer,
quest_id uint16 not null
);
END;