mirror of
https://github.com/cjdenio/jia.git
synced 2024-11-21 15:13:40 +00:00
celesteblocker
This commit is contained in:
parent
0a74865977
commit
33af99f6b6
1 changed files with 4 additions and 4 deletions
|
@ -90,20 +90,20 @@ func onMessage(slackClient *slack.Client, event *slackevents.MessageEvent) {
|
|||
return
|
||||
}
|
||||
|
||||
// kog detection
|
||||
// kog + celeste detection
|
||||
lastCountAtInt, err := redisClient.Get("last_count_at").Int64()
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
}
|
||||
lastCountAt := time.Unix(lastCountAtInt, 0)
|
||||
|
||||
if event.User == "UR6P49Q79" {
|
||||
fmt.Println("Kogbot detected.")
|
||||
if event.User == "UR6P49Q79" || event.User == "U02KYLBLKR9" {
|
||||
fmt.Println("kogcelestebot detected.")
|
||||
fmt.Printf("Time: %v\n", time.Since(lastCountAt).Seconds())
|
||||
fmt.Printf("Contains 69: %v\n", strings.Contains(strconv.Itoa(matchedNumber), "69"))
|
||||
}
|
||||
|
||||
if event.User == "UR6P49Q79" && time.Since(lastCountAt).Seconds() < 4 && strings.Contains(strconv.Itoa(matchedNumber), "69") {
|
||||
if (event.User == "UR6P49Q79" || event.User == "U02KYLBLKR9") && time.Since(lastCountAt).Seconds() < 4 /* && strings.Contains(strconv.Itoa(matchedNumber), "69") */ {
|
||||
slackClient.AddReaction("bangbang", slack.ItemRef{
|
||||
Channel: event.Channel,
|
||||
Timestamp: event.TimeStamp,
|
||||
|
|
Loading…
Reference in a new issue