-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHowToUse
More file actions
65 lines (51 loc) · 2.41 KB
/
HowToUse
File metadata and controls
65 lines (51 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Making Events:
$NewEvent "eventname" "dateandtime" "description"
The simplest way to make a new event. Useful for lorebook runs, or other events that don't need specific roles
NOTE: Description is optional, you can leave it blank if you like
Examples:
$NewEvent "My Lorebook Run" "Today at 19:00"
$NewEvent "My Lorebook Run" "Today at 19:00" "Chilled event to collect lorebooks in Deshaan!"
$NewEventByTemplate "templatename" "eventname" "dateandtime" "description"
The easiest way to make an event
Will use the required roles in the given template
NOTE: Description is optional, you can leave it blank if you like.
Examples:
$NewEvent "vSS" "Vet Trial Progression" "Today at 19:00"
$NewEvent "vSS" "Vet Trial Progression" "Today at 19:00" "We'll do this first time, no worries"
$NewEvent "eventname" "dateandtime" "description" tanks healers dds runners
The advanced way to make a new event. Allows you to specify how many of each role you require.
If your using this often, consider making a template to handle this type of event.
NOTE: Description is optional, you can leave it blank if you like.
NOTE: Runners is optional, you can leave it blank if you like
Examples:
$NewEvent "Normal Dungeon Farming" "Today at 19:00" 1 0 3
$NewEvent "Normal Dungeon Farming" "Today at 19:00" "Fast runs through normal dungeons" 1 0 3
Using Templates:
$ListTemplates
This will reply with infomation on all saved templates
Example:
$ListTemplates
$GetTemplate "templatename"
This will reply with detailed infomation on the given template
Example:
$GetTemplate "My Trial"
Admin Only Commands:
$NewTemplate "templatename" tanks healers dds runners
This will create a new template, which can be used later to create events easier
NOTE: runners is optional, you can leave it blank if you like
Example:
$NewTemplate "My Trial" 2 2 8
$DeleteTemplate "templatename"
This will delete the given template
WARNING: There is no confirmation, this will immediately delete the template
Example:
$DeleteTemplate "My Trial"
Debug Commands:
$testcommand
This is a simple command to make sure the bot is alive.
The bot should respond with "Hello"
$cleardb
This will clear all events and all templates that are currently saved.
WARNING: There is no "Are you sure" check. This will immediately wipe everything
$printdb
The bot will reply with some info about the saved templates and saved events