cchambers / novusredux

http://nos.gg
2 stars 0 forks source link

Paging System #104

Closed carto0n closed 5 years ago

carto0n commented 5 years ago

Is there one that exists? if no, how do we want to handle problems while we are ingame or afk?

cchambers commented 5 years ago

Need to figure out how to link a database to this... and then we'll be in business for paging and stat tracking

smassa commented 5 years ago

You don't need a database, you can use global var system to write pages to the account. It will need some managing but its completely doable. If someone wants I can tackle the back end on this, but i suck at the GUI elements.

cchambers commented 5 years ago

Database is for website/stat integration

On Tue, Dec 18, 2018, 11:21 AM smassa <notifications@github.com wrote:

You don't need a database, you can use global var system to write pages to the account. It will need some managing but its completely doable. If someone wants I can tackle the back end on this, but i suck at the GUI elements.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/cchambers/novusredux/issues/104#issuecomment-448279217, or mute the thread https://github.com/notifications/unsubscribe-auth/AAoT7QbU6avQDGkU0PtmHxZc8d2BfCidks5u6RYdgaJpZM4Y0bcy .

smassa commented 5 years ago

I'm not sure if there are ways to link database libraries in the current lua scripting, because technically its not lua running. When i think paging i think like the UO emulators used to handle it. In game help, they see a list of pending help requests, they read it, click on it and it teleports them to the player to handle the issue.

cchambers commented 5 years ago

my thoughts are to try and use some kind of Lua mongo interface and if that doesn't work I'll just output lines to the log with a key that I'm looking for and then transpose it with node into the db

On Tue, Dec 18, 2018, 11:28 AM smassa <notifications@github.com wrote:

I'm not sure if there are ways to link database libraries in the current lua scripting, because technically its not lua running. When i think paging i think like the UO emulators used to handle it. In game help, they see a list of pending help requests, they read it, click on it and it teleports them to the player to handle the issue.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/cchambers/novusredux/issues/104#issuecomment-448281375, or mute the thread https://github.com/notifications/unsubscribe-auth/AAoT7UNR0I10FHHK7dFdV1avgXg7pYcmks5u6ReUgaJpZM4Y0bcy .

smassa commented 5 years ago

that would work