mirror of
https://github.com/Ratstail91/SANCTUM.git
synced 2025-11-29 10:34:26 +11:00
Added a neat dialog generator utility
This commit is contained in:
@@ -50,8 +50,21 @@ client.on("message", function(msg) {
|
||||
}
|
||||
});
|
||||
|
||||
//DEBUGGING
|
||||
let dialogJson = {
|
||||
"hello": [
|
||||
"Hi there {1}!",
|
||||
"Howdy {1}!"
|
||||
],
|
||||
"goodbye": "See ya!"
|
||||
}
|
||||
|
||||
let dialog = shared.GenerateDialogFunction(dialogJson); //eventually be require("./dialog.json")
|
||||
console.log(dialog("hello", "Kayne"));
|
||||
|
||||
//actually log in
|
||||
client.login(process.env.DEVELOPER_TOKEN);
|
||||
|
||||
//TODO: change usernames to tags throughout the shared library
|
||||
//FIXME: The server currently queries chest count, which is not in the database.
|
||||
//FIXME: The server currently queries chest count, which is not in the database.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user