Skip to content

Instantly share code, notes, and snippets.

View ayamdobhal's full-sized avatar
:shipit:
nothing left, nothing right

Ayam Dobhal ayamdobhal

:shipit:
nothing left, nothing right
View GitHub Profile

Elimina Discord Bot - Privacy Policy

1. Introduction

This Privacy Policy describes how the Elimina Discord Bot ("Bot") collects, uses, and handles your information when you use the Bot within your Discord server.

2. Information We Collect

  • Guild ID and Channel IDs: The Bot collects and stores the Guild ID (server ID) and the Channel IDs where the Bot is enabled.
  • Purpose of Collection: This data is essential for the Bot to function correctly, allowing it to identify where to perform its message deletion tasks.

Elimina Discord Bot - Terms of Service

1. Acceptance of Terms

By using the Elimina Discord Bot ("Bot"), you agree to comply with and be bound by these Terms of Service ("Terms"). If you do not agree with these Terms, please do not use the Bot.

2. Description of Service

Elimina is a Discord bot designed to assist moderators by automatically deleting messages sent by other bots in the chat after a set interval of time. The Bot operates based on settings configured by the moderators within a Discord guild (server).

def persistance(N, steps=0):
if len(str(N)) > 1:
steps += 1
digits = [int(x) for x in str(N)]
result = 1
for i in digits:
result *= i
steps = persistance(result, steps)
return steps