diff --git a/.idea/UnknownBot - Discord.iml b/.idea/UnknownBot - Discord.iml
deleted file mode 100644
index 6711606..0000000
--- a/.idea/UnknownBot - Discord.iml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/UnknownBot.iml b/.idea/UnknownBot.iml
deleted file mode 100644
index d24d66b..0000000
--- a/.idea/UnknownBot.iml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
deleted file mode 100644
index 83d71f3..0000000
--- a/.idea/misc.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index f233398..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 94a25f7..0000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
deleted file mode 100644
index 2b91b8b..0000000
--- a/.idea/workspace.xml
+++ /dev/null
@@ -1,249 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1523216716960
-
-
- 1523216716960
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/bin/config.ini b/bin/config.ini
index ea55351..4eb83c1 100644
--- a/bin/config.ini
+++ b/bin/config.ini
@@ -1,8 +1,9 @@
[DISCORD]
-bot-token= NDIzMjE1NTM1ODkxODA4MjY2.XSs3Lg.I6O4DVC1q7jiGzDdNnNPsbm44VI
+token= NDIzMjE1NTM1ODkxODA4MjY2.Wqg0Lg.CPLIjKVfJSARt-p8MOKHcMr6RTY
owner= 155076323612688384
-game= 2019.07.14-4
+game= 2021.02.01-1
+prefix= unk.
[VERSION]
-version= 2019.07.14-4
+version= 2021.02.01-1
last_change= 14.07.2019 - 16:50
diff --git a/bin/ffmpeg.exe b/bin/ffmpeg.exe
deleted file mode 100644
index 43f47d2..0000000
Binary files a/bin/ffmpeg.exe and /dev/null differ
diff --git a/bin/bot.py b/bin/old-bot.py
similarity index 100%
rename from bin/bot.py
rename to bin/old-bot.py
diff --git a/run.py b/run.py
index eb6bb1d..b512d7d 100644
--- a/run.py
+++ b/run.py
@@ -1 +1,22 @@
-import logging
\ No newline at end of file
+import logging
+import discord
+import configparser
+import sys
+config = configparser.ConfigParser()
+config.read('bin/config.ini')
+
+
+
+# //Logging - Müll
+class discord(discord.Client):
+ async def on_ready(self):
+ print('Logged on as {0}!'.format(self.user))
+
+ async def on_message(self, message):
+ print('[LOG] Message from {0.author}: {0.content}'.format(message))
+
+ if message.content.startswith('{0}help'.format(config['DISCORD']['PREFIX'])):
+ await message.channel.send('MOIN MEISTA')
+
+client = discord()
+client.run(config["DISCORD"]["TOKEN"])