summaryrefslogtreecommitdiff
path: root/src/wasp-twitch-chat-commands.el
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasp-twitch-chat-commands.el')
-rw-r--r--src/wasp-twitch-chat-commands.el16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/wasp-twitch-chat-commands.el b/src/wasp-twitch-chat-commands.el
index 33435d7f..d903d93c 100644
--- a/src/wasp-twitch-chat-commands.el
+++ b/src/wasp-twitch-chat-commands.el
@@ -14,12 +14,17 @@
w/twitch-chat-commands
(list
(cons
+ "!getpaid"
+ (lambda (_ _)
+ (w/pub '(monitor lamulana msg))))
+ (cons
"!commands"
(lambda (_ _)
(w/twitch-say
- (s-concat
- "Available commands: "
- (s-join " " (--filter (s-contains? "!" it) (-map #'car w/twitch-chat-commands)))))))
+ (s-truncate 500
+ (s-concat
+ "Available commands: "
+ (s-join " " (--filter (s-contains? "!" it) (-map #'car w/twitch-chat-commands))))))))
(cons "MRBEAST" (lambda (_ _) (soundboard//play-clip "mrbeast.mp3")))
(cons "NICECOCK" (lambda (_ _) (soundboard//play-clip "pantsintoashes.mp3")))
(cons "hexadiCoding" (lambda (_ _) (soundboard//play-clip "developers.ogg")))
@@ -76,6 +81,7 @@
(cons "!pronunciation" (lambda (_ _) (w/twitch-say (w/pronuciation))))
;; (cons "!jetsWave" (lambda (_ _) (fig//twitch-say (fig/slurp "jetsWave.txt"))))
;; (cons "!forth" (lambda (_ _) (fig//twitch-say "https://github.com/lcolonq/giving")))
+ (cons "!news" (lambda (_ _) (w/twitch-say "https://news.colonq.computer")))
(cons "!oub" (lambda (_ _) (w/twitch-say "https://oub.colonq.computer")))
(cons "!cellar" (lambda (_ _) (w/twitch-say "https://pub.colonq.computer/~llll/cellar/index.html")))
(cons "!game" (lambda (_ _) (w/twitch-say "https://oub.colonq.computer")))
@@ -106,6 +112,10 @@
(lambda (user _)
(w/twitch-say (format "boost power for @%s: %s" user (alist-get :boost w/user-current)))))
(cons
+ "!tsoob"
+ (lambda (user _)
+ (w/twitch-say (format "boost power for @%s: %s" user (alist-get :boost w/user-current)))))
+ (cons
"!faction"
(lambda (user _)
(w/twitch-say (format "faction for %s: %s" user (alist-get :faction w/user-current)))))