You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Kit Kasune 4ebe5fd442 add leveling to help command 4 years ago
.idea merge conflicts 4 years ago
commands add leveling to help command 4 years ago
events random stuff and bugs 4 years ago
handle add n?ban and fix n?kick 4 years ago
models level role model and cache 4 years ago
responses bugfixes 4 years ago
util xp equation stabilized 4 years ago
.gitignore Begin pagination, add listAppend mode to TagFilter 4 years ago
LICENSE First Commit -> Transition valk to natsuki 4 years ago
README.md Add readme for open source notes 4 years ago
bot.js level role model and cache 4 years ago
package-lock.json sync dependencies 4 years ago
package.json stuff that im too lazy to write 4 years ago
pull.bat First Commit -> Transition valk to natsuki 4 years ago
run.bat Fixed batch files 4 years ago
sync.bat Fixed batch files 4 years ago
template.js Template fixes and bugfixes (permission errs) 4 years ago
test.js add starting to secret santa... probably 4 years ago

README.md

Natsuki

The official repository of Natsuki the Discord Bot. Currently in the Early Development phase, and is expected to release to a few servers and eventually bot lists relatively soon.

Utils

Some useful stuff we have in our bot that you can make use of!

Just about anything in the utils folder could be useful for a number of reasons, but here's a few big ones:

Tags

util/tagfilter.js and util/tag.js

Pass in a list of Tags. Each Tag has a list of triggers, its name, then its mode.

  • toggle = takes no options. If the tag is present, it will view as true in options.
  • append = forms a string from the text after the tag. -title Something Cool will return the string Something Cool. Will append from all tags that trigger the alias, so if multiple title tags are present, all of them will be present in the same string.
  • listAppend = Behaves like append, with the exception that it will return a list where each member is a string for every time the tag is used; see example below
let options = new TagFilter([
    new Tag(['t', '-title'], 'title', 'append'),
    new Tag(['a', 'aliases', 'alts'], 'aliases', 'listAppend'),
    new Tag(['f', 'force'], 'force', 'toggle')
]).test(args.join(" "));

// -title Example -a AnotherName -a Some other name -f

// options will look like this
{
   title: "Example",
   aliases: ["AnotherName", "Some other name"],
   force: true
}

Quick awaitMessages

util/ask.js

Ask a question and wait for an answer. Returns the string of the user's response, or nothing if there was no response. Function is asynchronous!

Please make sure you account for the chance of timeout.

Pass in your message object, the question to ask, the time - in ms - the user has to respond, and an optional boolean of whether or not to disable the filter, which would make it so that any user can answer the question.

let name = await ask(message, "What is your name?", 30000);
if (!name) {return;} // Function already sends a timeout message, just return here to stop the command from continuing.
return message.channel.send(`Hiya there, ${name}!`);