From 24d7441f0d300be737393c83b631379122018c63 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 5 Jan 2021 01:23:46 -0600 Subject: [PATCH] Add serverside GUI utils --- scripts/server/gui.js | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 scripts/server/gui.js diff --git a/scripts/server/gui.js b/scripts/server/gui.js new file mode 100644 index 00000000..7ffd6d65 --- /dev/null +++ b/scripts/server/gui.js @@ -0,0 +1,41 @@ +// =========================================================================== +// Asshat-Gaming Roleplay +// https://github.com/VortrexFTW/gtac_asshat_rp +// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com) +// --------------------------------------------------------------------------- +// FILE: gui.js +// DESC: Provides GUI functions and usage +// TYPE: Server (JavaScript) +// =========================================================================== + +// UNFINISHED. NOT READY TO USE + +function showPlayerLoginGUI(client, errorMessage = "") { + +} + +// --------------------------------------------------------------------------- + +function showPlayerRegistrationGUI(client, errorMessage = "") { + +} + +// --------------------------------------------------------------------------- + +function showPlayerNewCharacterGUI(client) { + +} + +// --------------------------------------------------------------------------- + +function showPlayerPromptGUI(client, promptMessage, answerYesText, answerNoText) { + +} + +// --------------------------------------------------------------------------- + +function showPlayerPromptGUI(client) { + +} + +// --------------------------------------------------------------------------- \ No newline at end of file