emoji-award-marseytrain

RemindMeBot! ⏰ Donger GmbH successfully showing you how to be a punctual Omega Kraut πŸ†πŸ₯—

Greetings! I created @RemindMeBot for you forgettable people here. But at least we can save your favorite cat from malnutrition.

Quick instruction

Triggers:

!remindme, remindme!, @RemindMeBot

Formats:

!remindme 5 hours

remindme! 2 weeks "watch this go nowhere in two weeks"

@RemindMeBot 06.06.2026 "Time for fourth Reich"

!remindme :marseysal: (watch you getting reminded in two weeks)

!remindme 10th July

Please use normal formatting and be aware that we(civilization) use days/months/years etc. and not months/days/years like Americans. It has no logic to it

It looks every ~3 min into new comments. Posts are excluded. Already saved comments won't look into edits and will be ignored. Watch your time

:marseykaiser: :marseytime:

66
Jump in the discussion.

No email address required.

Can you pretty please post the source or someone post a bot skeleton? I have programming socks but not webdev socks so I'm not sure where to start

:marseysipping:

Jump in the discussion.

No email address required.

@Lv91_Skeleton he wants to bot farm you! Be aware!

What are your plans?

Jump in the discussion.

No email address required.

uh oh...

Jump in the discussion.

No email address required.

Idk probably some game like IRC bomb wire cutting with a communal pot/send coins for buy in to distribute to winners. Or something to parse dramacoin transfers and uncover and audit cabals :marseyglow: aevann said he'd give me API access but I'm not sure where to start, never learned REST/etc. And the longer I wait the more he's implemented functionality, e.g. simps and haters lists.

Jump in the discussion.

No email address required.

Sry for responding late. You should definitely go to groomer cord. The discord invite is in menu tab when you click your profile. There are rdrama coder channels where you can start and ask

Here is an example of the nword counter I once made quickly in Python3:

## n word counter
import requests
import re
import math
import time
HEADER = {"Authorization":"your_api_key", "User-Agent": "your_app"}
n_count = 0
words = ['nigger','nigga']
user = 'snappy'
for word in words:
    count = 1
    maximum = 1
    while count<=maximum:
        url="https://rdrama.net/search/comments/?sort=new&q=author%3A"+user+"%20"+word+"&t=all&page="+str(count)
        r=requests.get(url, headers=HEADER)
        if r.status_code != 200:
            print(r.status_code)
        if count == 1:
            maximum = math.ceil(r.json().get('total')/25) # Total Pages, there are 25 comments each
        count += 1
        comments = r.json().get('data')
        for comment in comments:
            text = comment.get('body_html')
            n_count += len(re.findall(word, text))
        time.sleep(1)

Tested it, seems like search requests with no no words are now filtered away

:marseydoomer:

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.