This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: Onyx - TrinityCore DBMS  (Read 1289 times)

Kaev

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 308
    • View Profile
Onyx - TrinityCore DBMS
« on: May 15, 2017, 08:01:37 am »
Hi :)

I'm currently working on a project which i named Onyx for whatever reason.
It's a database management system (DBMS) for TrinityCore (i might implement other cores later too).
It's written entirely in ASP.Net Core, Javascript, HTML and CSS so it can be used on Windows, Linux and Mac!
Installation should be really easy because it's based on Docker.

I already have a solid base which i can already present you (see screenshots below).
Onyx directly edits the database so you don't have to insert SQL queries or other things by yourself. Just create content! 
Currently i only implemented PlayerLevelStats and Creature_Template, but more tables will follow soon. I'll also implement linking to other tables after i implemented more of them. That means if you find a ID of something (e.g. loot ID in Creature_Template data), you can click on it and it will directly link you to the correct entry so you can instantly edit it too.

I didn't do any design yet, everything you see is the standard ASP.Net Core design. If there is a web designer out there who wants to help me with a neat design, please contact me!

Of course it's open source like all my other projects, you can find it on GitHub: https://github.com/Kaev/Onyx

Here are the promised screenshots:

CreatureTemplate - Index:
CreatureTemplate - Create a new dataset:
CreatureTemplate - Edit a dataset:
CreatureTemplate - Detail view of a dataset:
PlayerLevelStats - Index:
PlayerLevelStats - Create a new dataset:
PlayerLevelStats - Edit a dataset:
PlayerLevelStats - Detail view of a dataset:

Bardh

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 130
    • View Profile
Re: Onyx - TrinityCore DBMS
« Reply #1 on: May 15, 2017, 11:16:14 am »
Things like this are really nice , I've always used Trinity Core and working directly on the database was quite hard and time consuming, this will surely make things easier and more interesting.
You can also check project Haradon here: http://www.model-changing.net/blogs/blog/41-haradon/

Kaev

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 308
    • View Profile
Re: Onyx - TrinityCore DBMS
« Reply #2 on: May 15, 2017, 02:30:07 pm »
Things like this are really nice , I've always used Trinity Core and working directly on the database was quite hard and time consuming, this will surely make things easier and more interesting.

That's my goal! :) Thank you for the feedback.