-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration
More file actions
57 lines (57 loc) · 2.31 KB
/
Configuration
File metadata and controls
57 lines (57 loc) · 2.31 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
# The settings prior to END_SETTINGS are all that is read and used.
# See below for additional optional LifeBots configuration settings.
#
# LifeBots Developer API Key, REQUIRED
# DO NOT surround the API Key with single or double quotes
LB_API_KEY = your-api-key
END_SETTINGS
#
# Configuration notecard for the LifeBots Control Panel
# Settings are specified in the format "<name> = <value>"
# DO NOT use "=" in either the <name> or <value>
# Place any uncommented configuration settings above the END_SETTINGS
# line above. Lines below END_SETTINGS will not be read and are here
# for information and help configuring.
#
# These comments can be left in the notecard without adversely effecting
# performance as the script stops reading the notecard when it hits the
# END_SETTINGS line so we can put as many comments here as we want.
#
# The default settings should work well for most uses.
#
#############################################################################
#
# Here are the various settings and their defaults:
#
# Configure API credentials for each bot and copy the file to root prim Contents
# This notecard contains sensitive information and should be accessible only by the owner
#
# LifeBots Developer API Key
#LB_API_KEY = your-api-key
#
# Send the result of actions to the Owner in chat (default: FALSE)
# The result body is returned to the command and control script.
# Setting this to TRUE will cause the result body to also be sent to owner chat
#OWNERSAY_RESULT = FALSE
#
# LifeBots bot secret, OPTIONAL
# This will be the default LifeBots bot secret if set
# If set in the user's command script that value will override this
#LB_SECRET = your-bot-secret
# Full Bot Name (used for API requests, must match your LifeBots config), OPTIONAL
# This will be the default LifeBots bot name if set
# If set in the user's command script that value will override this
#LB_BOT_NAME =
# UUID to sit on when logging in, OPTIONAL
#LOGIN_SITON = uuid-of-siton-object
#
# Set DATATYPE = URLENCODE to specify URL encoded API call return format
# The default return format is JSON
#DATATYPE = JSON
#
# Set NO_OWNERCHANGE_RESET = TRUE to indicate that LifeBots Control Panel
# does not reset itself on object owner change (default is reset on owner change)
#NO_OWNERCHANGE_RESET = FALSE
#
# Set DEBUG=TRUE to enable debug output
#DEBUG = FALSE