mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
48 lines
1.4 KiB
Smarty
48 lines
1.4 KiB
Smarty
---
|
|
title: "Available Actions"
|
|
---
|
|
|
|
{{ "{{< lead >}}" }}
|
|
All these actions can be executed by your bot as soon as you add them to rules. Read their documentation to learn how to master them.
|
|
{{ "{{< /lead >}}" }}
|
|
|
|
{{ range .Actors }}
|
|
## {{ .Name }}
|
|
|
|
{{ .Description }}
|
|
|
|
```yaml
|
|
- type: {{ .Type }}
|
|
{{- if gt (len .Fields) 0 }}
|
|
attributes:
|
|
{{- range .Fields }}
|
|
# {{ .Description }}
|
|
# Optional: {{ .Optional }}
|
|
{{- if eq .Type "bool" }}
|
|
# Type: {{ .Type }}{{ if .SupportTemplate }} (Supports Templating){{ end }}
|
|
{{ .Key }}: {{ eq .Default "true" }}
|
|
{{- end }}
|
|
{{- if eq .Type "duration" }}
|
|
# Type: {{ .Type }}{{ if .SupportTemplate }} (Supports Templating){{ end }}
|
|
{{ .Key }}: {{ if eq .Default "" }}0s{{ else }}{{ .Default }}{{ end }}
|
|
{{- end }}
|
|
{{- if eq .Type "int64" }}
|
|
# Type: {{ .Type }}{{ if .SupportTemplate }} (Supports Templating){{ end }}
|
|
{{ .Key }}: {{ if eq .Default "" }}0{{ else }}{{ .Default }}{{ end }}
|
|
{{- end }}
|
|
{{- if eq .Type "string" }}
|
|
# Type: {{ .Type }}{{ if .SupportTemplate }} (Supports Templating){{ end }}
|
|
{{ .Key }}: "{{ .Default }}"
|
|
{{- end }}
|
|
{{- if eq .Type "stringslice" }}
|
|
# Type: array of strings{{ if .SupportTemplate }} (Supports Templating in each string){{ end }}
|
|
{{ .Key }}: []
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- else }}
|
|
# Does not have configuration attributes
|
|
{{- end }}
|
|
```
|
|
{{ end }}
|
|
|
|
{{ if false }}<!-- vim: set ft=markdown: -->{{ end }}
|