Code Monkey home page Code Monkey logo

Comments (7)

thracyturnix avatar thracyturnix commented on August 30, 2024

Hello?

from context-mod.

FoxxMD avatar FoxxMD commented on August 30, 2024

Your configuration was close! The major change needed was that check.kind was submission but needed to be comment. kind determines what type of event (new submission or new comment) the bot runs on. Here is an updated config with a few other minor changes:

{
  "runs": [
    {
      "checks": [
        {
          "name": "Fetish-sub activity alert",
          "description": "Check if author has posted in fetish subreddits",
          // check will run on a new submission in your subreddit and look at the Author of that submission
          "kind": "comment",
          "rules": [
            {
              "name": "BBW",
              "kind": "recentActivity",
              "useSubmissionAsReference": false,
              // when `lookAt` is not present this rule will look for submissions and comments.
              // lookAt: "submissions"
              // lookAt: "comments"
              "thresholds": [
                {
                  // for all subreddits, if the number of activities (sub/comment) is equal to or greater than 1 then the rule is triggered
                  "threshold": ">= 1",
                  "subreddits": [
                    "BBW",
                    "BBWhardcore",
                    "BBWpussys",
                    "bbwmilf",
                    "ssbbw",
                    "ebonyBBW",
                    "SBBW_FANS",
                    "ssbbwbutt",
                    "BBWanal",
                    "BBWaddict",
                    "OnlyFansChubbyBBW",
                    "BBWorship",
                    "maturebbw",
                    "BBWass",
                    "Fat_Fetish",
                    "bfatIRL",
                    "stuffersNSFW"
                  ]
                }
              ],
              // will look at all of the Author's activities in the last 7 days
              "window": {
                  "count": 100,
                  "duration": {
                      "days": 7
                  }
              }
            }
          ],
          "actions": [
            {
              "kind": "remove",
              "content": "{{rules.bbw.totalCount}} activities in fetish {{rules.bbw.subCount}} subs over {{rules.bbw.window}}: {{rules.bbw.subSummary}}"
            }
          ]
        }
      ]
    }
  ]
}

from context-mod.

thracyturnix avatar thracyturnix commented on August 30, 2024

I copy pasted the rule to a test sub. Thanks very much for your reply and for the revised code.

I then used an account to post a comment on one of the blacklisted subs, and came back to test sub and posted a comment with that account.

Expected result is that context mod would remove the comments.

Actual outcome is that the comments remain.

I checked the back end and the bot is running.

I tried restarting the docker and repeating the test but same result.

from context-mod.

thracyturnix avatar thracyturnix commented on August 30, 2024

Sorry to bump again but we would really like to get this up and running in the Sub. Is there anyone who could help us figure out why its not working?

from context-mod.

thracyturnix avatar thracyturnix commented on August 30, 2024

Hello?

from context-mod.

FoxxMD avatar FoxxMD commented on August 30, 2024

You are likely missing a polling option to tell the bot to look at new comments. You need this to the top of the config:

  "polling": [
    "newComm",
    "newSub"
  ]

Like this

{
  "polling": [
    "newComm",
    "newSub"
  ],
  "runs": [
    {
      "checks": [
        {
          "name": "Fetish-sub activity alert",
          "description": "Check if author has posted in fetish subreddits",
          // check will run on a new submission in your subreddit and look at the Author of that submission
          "kind": "comment",
          "rules": [
            {
              "name": "BBW",
              "kind": "recentActivity",
              "useSubmissionAsReference": false,
              // when `lookAt` is not present this rule will look for submissions and comments.
              // lookAt: "submissions"
              // lookAt: "comments"
              "thresholds": [
                {
                  // for all subreddits, if the number of activities (sub/comment) is equal to or greater than 1 then the rule is triggered
                  "threshold": ">= 1",
                  "subreddits": [
                    "BBW",
                    "BBWhardcore",
                    "BBWpussys",
                    "bbwmilf",
                    "ssbbw",
                    "ebonyBBW",
                    "SBBW_FANS",
                    "ssbbwbutt",
                    "BBWanal",
                    "BBWaddict",
                    "OnlyFansChubbyBBW",
                    "BBWorship",
                    "maturebbw",
                    "BBWass",
                    "Fat_Fetish",
                    "bfatIRL",
                    "stuffersNSFW"
                  ]
                }
              ],
              // will look at all of the Author's activities in the last 7 days
              "window": {
                "count": 100,
                "duration": {
                  "days": 7
                }
              }
            }
          ],
          "actions": [
            {
              "kind": "remove",
              "content": "{{rules.bbw.totalCount}} activities in fetish {{rules.bbw.subCount}} subs over {{rules.bbw.window}}: {{rules.bbw.subSummary}}"
            }
          ]
        }
      ]
    }
  ]
}

from context-mod.

thracyturnix avatar thracyturnix commented on August 30, 2024

Worked! Thankyou!!

from context-mod.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.