#botchannel
1 messages · Page 89 of 1
lel np
I am caused because my parent forgot to \
I sometimes have to stop and think about my own age when people ask me. 
No it's just a constant dilemma between 18, 19 and 20. IDK MAN STOP ASKING ME QUESTIONS.
evalin
import requests
Traceback (most recent call last):
File "/tmp/execpad-a7bf38607b62/source-a7bf38607b62", line 1, in \<module>
import requests
ImportError: No module named 'requests'
Can I use pip
mm
:'(
Anyway, back to science.
help evalin
Compiles code via eval.in.
You have to pass in a code block with the language syntax
either set to one of these:
- python | py
- cpp
- c
- fortran
- haskell
- pascal
We haven't added it to the bot. Would be possible though.
Not garbage collector machine
evalin
print(' "i don't know how to do this" ')
File "/tmp/execpad-8d97cdd1ec81/source-8d97cdd1ec81", line 1
print(' "i don't know how to do this" ')
^
SyntaxError: invalid syntax
get it... Cause like, garbage collection
Oh apparently it wouldn't. The site we're using doesn't support Java.
Ha...ha...ha
evalin
print("we've said that something like this works if you need ' ' ' ' ' in a string")
print('just use " to mark the string and you can use single quotes in it')
we've said that something like this works if you need ' ' ' ' ' in a string
just use " to mark the string and you can use single quotes in it
evalin
#include<stdio.h>
int main(){printf("c > java");return 0;}
/tmp/execpad-f52fb7739fac/source-f52fb7739fac:1:16: fatal error: stdio: No such file or directory
#include\<stdio>
^
compilation terminated.
evalin
#include<stdio.h>
int main(){printf("c > java");return 0;}
c > java
Yes botty knows
evalin
print('hey i\'m a meme')
hey i'm a meme
As you see, I used single quotes there and I was still able to output a single quote in my message, because I used the backslash.
evalin
print('python is so good')
python is so good
The backslash essentially tells python "hey memelord, this ' isn't ending my string, it's just a normal quote so please see it as one, don't meme me up ok"?
evalin
print('flops says: "hey i\m someone"')
flops says: "hey i\\m someone"
Wot
Berry good but you forgot the '. 
\
'flops says: "hey i\'m someone"'
oh lol
evalin
print(flops says: "hey i\'m someone, and pls work this time ty')
File "/tmp/execpad-4069b1dbb75b/source-4069b1dbb75b", line 1
print(flops says: "hey i\\'m someone, and pls work this time ty')
^
SyntaxError: invalid syntax
evalin
int main(){return 1;}
❌ Bad argument: Unknown language to compile for: c++
:<<<<
evalin
int main(){return 1;}
Exited with error status 1
huehuehuehue
evalin
print(flops says: "hey i\'m someone, and pls work this time ty" ')
File "/tmp/execpad-98f9a7151861/source-98f9a7151861", line 1
print(flops says: "hey i\\'m someone, and pls work this time ty" ')
^
SyntaxError: invalid syntax
Let me reduce it to a part that fails.
evalin
print(flops says: "hey i\'m someone, and pls work this time ty"')
File "/tmp/execpad-4aab13a4e502/source-4aab13a4e502", line 1
print(flops says: "hey i\\'m someone, and pls work this time ty"')
^
SyntaxError: invalid syntax

evalin
print(flops says:)
File "/tmp/execpad-92942aed1d1e/source-92942aed1d1e", line 1
print(flops says:)
^
SyntaxError: invalid syntax
Why won't that work?
ohhhhh
evalin
print(flops says\: "hey i\'m someone, and pls work this time ty" ')
File "/tmp/execpad-373568e1138e/source-373568e1138e", line 1
print(flops says\\: "hey i\\'m someone, and pls work this time ty" ')
^
SyntaxError: invalid syntax
Traceback (most recent call last):
File "/tmp/execpad-5d53f57dba9d/source-5d53f57dba9d", line 1, in \<module>
print(flops)
NameError: name 'flops' is not defined
Fails.
evalin
print('flops says: "hey i\'m someone, and pls work this time ty" ')
flops says: "hey i'm someone, and pls work this time ty"
i want to die
Aha!

This was pretty good.
Exercise: Add only backslashes to the right places to make that code work.
print("flops says: "hey i'm someone, and pls work this time ty"")
evalin
print("flops says: "hey i\'m someone, and pls work this time ty"")
File "/tmp/execpad-0dc286a17e82/source-0dc286a17e82", line 1
print("flops says: "hey i\\'m someone, and pls work this time ty"")
^
SyntaxError: invalid syntax
ow
m
evalin
print('"flops says: "hey i\'m someone, and pls work this time ty""')
"flops says: "hey i'm someone, and pls work this time ty""

evalin
#include<stdlib.h>
#include<stdio.h>
int main(){
int num = rand() % 3 + 1;
if (num == 2) {printf("i love you");}
else {printf('everyone hates you");}
}
/tmp/execpad-2efc74a43d1b/source-2efc74a43d1b:6:14: warning: missing terminating ' character
else {printf('everyone hates you");}
^
/tmp/execpad-2efc74a43d1b/source-2efc74a43d1b:6:1: error: missing terminating ' character
else {printf('everyone hates you");}
^
/tmp/execpad-2efc74a43d1b/source-2efc74a43d1b: In function ‘int main()’:
/tmp/execpad-2efc74a43d1b/source-2efc74a43d1b:7:1: error: expected primary-expression before ‘}’ token
}
^
/tmp/execpad-2efc74a43d1b/source-2efc74a43d1b:7:1: error: expected ‘}’ at end of input
evalin
#include<stdlib.h>
#include<stdio.h>
int main(){
int num = rand() % 3 + 1;
if (num == 2) {printf("i love you");}
else {printf("everyone hates you");}
}
i love you
Nice mang.
Anyway, Flops, you didn't quiite do what I asked for. You added quotes, but I said you're only allowed to add backslashes. 😅
evalin
print("flops says: "hey i'm someone, and pls work this time ty"")
File "/tmp/execpad-435e2b245624/source-435e2b245624", line 1
print("flops says: "hey i'm someone, and pls work this time ty"")
^
SyntaxError: invalid syntax
coding is fun! - google
Two properly placed backslashes will fix that error.
evalin
print(\"flops says: "hey i'm someone, and pls work this time ty""\)
File "/tmp/execpad-6a424e7b3666/source-6a424e7b3666", line 1
print(\\"flops says: "hey i'm someone, and pls work this time ty""\\)
^
SyntaxError: unexpected character after line continuation character
dude
Remember, \ means the quote following this is a normal one, it should not end the string.
As such, the first and the last one should never have \s, but all the ones inbetween should.
I don't know wha\t you \mean
That's cos you're a dumb cow but dw just keep learning and one day you'll be a great programmer. ❤
❤️
File "/tmp/execpad-4c1b33f30631/source-4c1b33f30631", line 1
print("flops says: "hey i\\'m someone, and pls work this time ty"")
^
SyntaxError: invalid syntax
- FBI should be knocking on this door any minute now!
Queued by: Großvater Lenin
Duration: 0:00:03 - 10 Hours Big Enough Cowboy in FULL HD - Jimmy Barnes from Big Enough by Kirin J Callinan
Queued by: LordKorea
Duration: 10:00:00 - I put the Best Day Ever Over Even More Final Destination Scenes (Compilation)
Queued by: Großvater Lenin
Duration: 0:07:06 - The Entire Bee Movie Script Except its in Morse Code
Queued by: LordKorea
Duration: 7:25:58 - SpongeBOZZ - Yellow Bar Mitzvah (Prod. by Digital Drama)
Queued by: Großvater Lenin
Duration: 0:04:35 - ODD TV | Breakin' the Law | Truth Music ▶️️
Queued by: Amigo!
Duration: 0:03:36 - УЛЬТРАЗВУК ЧЕЛЛЕНДЖ!!!ПРОДЕРЖИСЬ 30 МИНУТ !!!
Queued by: Prawdziwy
Duration: 0:30:27
!give gaming tag
getrole gaming
:x: You already have this role.
<<
getrole gaming
#282831147942281216 is a thing
@tender trellis you're a thing
No u
Damn
t!cookie @oak jackal
❤️
daily
:atm: | You've received your daily dose of capitalism. 200€ were added to your account.
fish
:fishing_pole_and_fish: | You caught :nut_and_bolt:. 9€ got subtracted from your account.
yay
Central configuration cog for the bot.
For more help, join the official German server: https://discord.gg/german
Handles the actual server or channel permission configuration for the bot.
help getrole
Assigns a role to you from a list of available roles.
If you abuse this command, you will get blacklisted.
getrole beginner
❌ Bad argument: Role "beginner" not found.
getrole Level B
role Level B
:x: You already have a CEFR role. Remove it before you try assigning a different CEFR role.
getrole Level b
:x: You already have a CEFR role. Remove it before you try assigning a different CEFR role.
play
❌ Bad argument: query is a required argument that is missing.
help
Generic commands used by basically every bot.
For more help, join the official German server: https://discord.gg/german
Show information about a number of characters.
Gerne.
Renders the specified LaTeX text.
Responds with a random cat image.
Responds with a random dog image.
Shows help about a command or the bot
Shoot someone's dog.
Define a word using urban dictionary.
Shows an image for the specified colour.
danke
Immer gerne, Amin.
t!cookie @oak jackal
t!cookie @oak jackal
t!cookie @final bone
rep @oak jackal
:up: | Misla has given @oak jackal a reputation point!
Thanks friends
❤️
daily @oak jackal
:atm: | You have given your daily income to @oak jackal. 215€ were added to their account.
<3
t!beautiful @oak jackal
Aaahhh thank you
t!cookie @oak jackal
t!cookie @old slate
Thank you
📝 | User profile card for Chrono - Der Eurofighter
sub speakinglads
:x: You're already in this group.
getrole c
❌ Bad argument: Role "c" not found.
getrole Level C
Now Playing: Let It Go - Sing Along - Song: DIE EISKÖNIGIN - VÖLLIG UNVERFROREN - Music: Frozen - Disney [-1 day, 23:55:45] requested by Teri#6825
play indie rock alternative june 2018
play blink-182 - Dumpweed
queue
- Indie/Rock/Alternative Compilation - February 2018 (1½-Hour Playlist)
Queued by: André
Duration: 1:25:02 - Blink 182 - Dumpweed (With Lyrics!)
Queued by: Roma
Duration: 0:02:24
André#0013 has skipped the song.
skip
André#0013 has skipped the song.
play kimi no na wa ost
일본에서 열린 '아시안비트 2016 그랜드파이널' 대상에 빛나는 밴드 Gift 페이스북 https://www.facebook.com/BandGift 자랑스런 한국의 루키! 밴드 Gift 가 음악먹는 홍대 와 함께 준비한 너의 이름은 ost 'なんでもない...
Music video by CHiCO performing Sekai Wa Koi Ni Ochiteiru. (C) 2014 MusicRay'n Inc. http://vevo.ly/N9uyHG
help
For more help, join the official German server: https://discord.gg/german
Add a song to the queue.
Skip the current song.
Return information about the current song.
Show the queue.
np
queue
- 너의 이름은(Kimino nawa) OST - 아무것도 아니야(Nande mo Nai ya) cover by Band GIFT
Queued by: Teri
Duration: 0:04:43 - CHiCOwithHoneyWorks - Sekai Wa Koi Ni Ochiteiru
Queued by: Teri
Duration: 0:05:12 - Nandemonaiya Mitsuha version (clear/glitch free)
Queued by: André
Duration: 0:05:45 - 'THX Intro' aka. Loudest sound known to man (EXTREME EARRAPE)
Queued by: Feliciano (Lenin) Vargas
Duration: 0:00:19 - Akame Ga Kill - Opening Theme 1
Queued by: Feliciano (Lenin) Vargas
Duration: 0:01:31 - One Hour of Gravity Falls' To Be Continued...
Queued by: Feliciano (Lenin) Vargas
Duration: 1:00:03 - My Top 5 Most Annoying Vocaloid Songs
Queued by: Feliciano (Lenin) Vargas
Duration: 0:02:33
Confused? React with ℹ for more info.
np
getrole Level A
play ben folds the luckiest
$$test
„Melodie“ ist die zweite Single aus dem CRO MTV Unplugged Album, das in Deutschland, Österreich und der Schweiz direkt auf Platz 1 der Charts landete und ber...
Schau Dir das inzwischen legendäre Easy Musikvideo an. Damit begann der Wahnsinn. Cro wurde zum Phänomen. Der King of Raop dessen Video inzwischen über 50.00...
Schau Dir jetzt das neue Musikvideo zu Whatever des Pandamaskenrappers Cro an. Natürlich nur im Chimperator Youtube Channel. Vergiss nicht unseren Channel zu...
queue
:x: There's nothing in the queue.
Skip vote added, currently at [2/6]
cat
cat
Looks like their API is down...
cat
cat
Looks like their API is down...
cat
Looks like their API is down...
ok
evalin
a = 2
b = 3
print(a ** b b ** a)
File "/tmp/execpad-348d6e81ec62/source-348d6e81ec62", line 3
print(a \*\* b b \*\* a)
^
SyntaxError: invalid syntax
evalin
a = 2
b = 3
print(a ** b, b ** a)
8 9
evalin
a = 2
b = 3
print("If im the best then" +(a**b) "is the answer")
File "/tmp/execpad-388eb5225ab1/source-388eb5225ab1", line 3
print("If im the best then" +(a\*\*b) "is the answer")
^
SyntaxError: invalid syntax
evalin
a = 2
b = 3
print("If im the best then" (a**b) "is the answer")
File "/tmp/execpad-cf965c204b0f/source-cf965c204b0f", line 3
print("If im the best then" (a\*\*b) "is the answer")
^
SyntaxError: invalid syntax
evalin
a = 2
b = 3
print("If im the best then" +int(a**b) "is the answer")
File "/tmp/execpad-7a7846ac6d5d/source-7a7846ac6d5d", line 3
print("If im the best then" +int(a\*\*b) "is the answer")
^
SyntaxError: invalid syntax
File "/tmp/execpad-a0501919928d/source-a0501919928d", line 3
print("If im the best then" + str(a\*\*b) "is the answer")
^
SyntaxError: invalid syntax
evalin
a = 2
b = 3
print("If im the best then" + str(a**b) ("is the answer"))
Traceback (most recent call last):
File "/tmp/execpad-e07b67366f79/source-e07b67366f79", line 3, in \<module>
print("If im the best then" + str(a\*\*b) ("is the answer"))
TypeError: 'str' object is not callable
evalin
a = 2
b = 3
print("If im the best then" + str(a**b)("is the answer"))
Traceback (most recent call last):
File "/tmp/execpad-d2bc76d45e75/source-d2bc76d45e75", line 3, in \<module>
print("If im the best then" + str(a\*\*b)("is the answer"))
TypeError: 'str' object is not callable
Traceback (most recent call last):
File "/tmp/execpad-d9f8f50bd690/source-d9f8f50bd690", line 3, in \<module>
print("If im the best then" + str(a \*\* b)("is the answer"))
TypeError: 'str' object is not callable
t!cookie @oak jackal
t!cookie @twilit wyvern
❤
<3
gamble
:slot_machine: You've just entered the casino. There are 1000€ in the pot. You can start gambling by typing play or check your money with check.
play
❌ Bad argument: query is a required argument that is missing.
dog
⛔ An error happened. This has been logged and reported.
play 500
play 500
[ :slot_machine: l SLOTS]
:hot_pepper: : :melon: : :grapes:
:cherries: : :cherries: : :cherries: <
:pineapple: : :watermelon: : :flag_de:
| : : : WON : : : |
We have 1241€ in the pot. Type play 94 to continue playing. You can check your :moneybag: by typing check.
We're done here.
We're done here.
❌ Bad argument: query is a required argument that is missing.
:slot_machine: You've just entered the casino. There are 1000€ in the pot. You can start gambling by typing play or check your money with check.
check
You currently have 518€.
check
fish
:fishing_pole_and_fish: | You caught :paperclip:. 9€ got subtracted from your account.
:slot_machine: You've just entered the casino. There are 1000€ in the pot. You can start gambling by typing play or check your money with check.
[ :slot_machine: l SLOTS]
:watermelon: : :pineapple: : :hot_pepper:
:lemon: : :tangerine: : :cherries: <
:grapes: : :flag_de: : :melon:
| : : : LOST : : : |
We have 1153€ in the pot. Type play 7 to continue playing. You can check your :moneybag: by typing check.
We're done here.
⛔ An error happened. This has been logged and reported.
⛔ An error happened. This has been logged and reported.
check
You currently have 747€.
:slot_machine: You've just entered the casino. There are 1000€ in the pot. You can start gambling by typing play or check your money with check.
check
:fishing_pole_and_fish: | You caught :battery:. 9€ got subtracted from your account.
fish
:tools: | Your fishing rod broke. It will be repaired in 9 seconds.
We're done here.
fish
:fishing_pole_and_fish: | You caught :paperclip:. 9€ got subtracted from your account.
fish
:tools: | Your fishing rod broke. It will be repaired in 11 seconds.
fuck
fish
:fishing_pole_and_fish: | You caught :fish:. 10€ got added to your account.
showcolor 010000
showcolor fffff0
showcolor ffff0f
showcolor ffff99
showcolor 123456
showcolor 654321
showcolor 197531
k
I have been inactive for 5 minutes. Goodbye!
getrole Level C
showcolor 00ff00
showcolor ffff00
fish
:fishing_pole_and_fish: | You caught :wrench:. 9€ got subtracted from your account.
Commands used by the German learning server.
For more help, join the official German server: https://discord.gg/german
Removes a previously assigned role.
Quote a message from a <channel>.
Get the conjugation for a <verb> in <lang>.
Assigns a role to you from a list of available roles.
role
- Level A
- Level B
- Level C
- Gaming
- Learning German
- Nerd
queue
:x: There's nothing in the queue.
np
queue
- NCT U 엔시티 유 'BOSS' MV
Queued by: Seska
Duration: 0:03:35 - [MV] 몬스타엑스(MONSTA X) - JEALOUSY
Queued by: Seska
Duration: 0:03:34 - [Special Clip] 몬스타엑스 (MONSTAX) - 히어로 (HERO) Rooftop Ver.
Queued by: Seska
Duration: 0:04:15 - The Longest Video On Youtube القرآن المجود كامل بمقطع واحد
Queued by: Feliciano Vargas
Duration: 2 days, 12:33:28
t!dog
cat
remind 10s `Do maffs
Gotcha @untold lily, in 10 seconds you'll be reminded about \Do maffs`.
Shoot
@untold lily, 11 seconds ago you asked to be reminded about \Do maffs`.
@tender trellis There's a bug in your bot, I could technically do @ everyone right now
remind 10s ` @proud obsidian fix your bot
Gotcha @untold lily, in 10 seconds you'll be reminded about \ @🛫 Arrion fix your bot`.
Oh wow wat
@untold lily, 11 seconds ago you asked to be reminded about \ @🛫 Arrion fix your bot`.
Berry nice job. Except we're checking for that. 
nice bug nola
fish
:fishing_pole_and_fish: | You caught :crab:. 10€ got added to your account.
showcolor 123123
ping
:ping_pong: Pong! | 149.94ms
From : Shigatsu wa Kimi no Uso Original Song & Soundtrack Anime : Shigatsu wa Kimi no Uso Composer : Masaru Yokoyama Available for purchase : https://www.ama...
:x: At least two members are needed before I start playing music.
From : Shigatsu wa Kimi no Uso Original Song & Soundtrack Anime : Shigatsu wa Kimi no Uso Composer : Masaru Yokoyama Available for purchase : https://www.ama...
I have been inactive for 5 minutes. Goodbye!
getrole B1
❌ Bad argument: Role "B1" not found.
getrole Level b
:x: You already have a CEFR role. Remove it before you try assigning a different CEFR role.
fish
:fishing_pole_and_fish: | You caught :scissors:. 9€ got subtracted from your account.
fish
:fishing_pole_and_fish: | You caught :scissors:. 9€ got subtracted from your account.
gamble
[ :slot_machine: l SLOTS]
:melon: : :watermelon: : :flag_de:
:cherries: : :eggplant: : :lemon: <
:pineapple: : :hot_pepper: : :grapes:
| : : : LOST : : : |
We have 1080€ in the pot. Type play 64 to continue playing. You can check your :moneybag: by typing check.
We're done here.
:fishing_pole_and_fish: | You caught :key2:. 9€ got subtracted from your account.
help
Central configuration cog for the bot.
For more help, join the official German server: https://discord.gg/german
Handles the actual server or channel permission configuration for the bot.
cat please
Looks like their API is down...
cat NOW PLEASE
cat another one
Looks like their API is down...
cat playe now
Looks like their API is down...
cat please?
Looks like their API is down...
cat ...
thanks
You're welcome, André.
cat white
getrole level b
config channel enable evalin
Command successfully enabled for this channel.
config channel enable urban
Command successfully enabled for this channel.
urban
❌ Bad argument: word is a required argument that is missing.
urban 1
The IQ of President George Bush.
George Bush has an IQ of 1.
urban Merkel
Verb. To perform an unsolicited shoulder massage.
While Angela was seated at the table, George snuck up and merkeled her.
urban Bush
The only presendent of the United States of America to be all most assassinated by a pretzil.
Oh my god he must be a dumb fuck!!!
urban George W Bush
Proof that voting in America can be rigged. Instigated the [9/11] attacks with his illogical foreign policies, and made the world hate America even more by starting an illegal oil [war] in [Iraq]. He has also succeeded in turning [America] from a once prosperous nation into a debt-ridden chaos.
Way to go, Dubya.
ping
:ping_pong: Pong! | 144.73ms
ping
:ping_pong: Pong! | 141.62ms
urban Arrem
:x: No definition found for Arrem.
Heq
Best of Marilyn Manson: https://goo.gl/5Z3C5t Subscribe here: https://goo.gl/iK9UwZ Music video by Marilyn Manson performing This Is The New Shit. (C) 2003 N...
skip
I have been inactive for 5 minutes. Goodbye!
:x: At least two members are needed before I start playing music.
:x: At least two members are needed before I start playing music.
play Skinner Says Yes
:x: At least two members are needed before I start playing music.
play Skinner Says Yes
:x: At least two members are needed before I start playing music.
play Skinner Says Yes
play Skinner Says Yes
play Skinner Says Yes
banarrem 1 100
Repeated Skinner Says Yes 100 times.
vol 100
※발음 가사는 더보기란에 있어요! :) Raon's Youtube :: https://youtube.com/c/raonlee Raon's Twitter :: https://twitter.com/raon_leee Raon's Instagram :: https://instagram.c...
queue
- Eisbrecher - Verrückt (Official Video)
Queued by: André
Duration: 0:03:55 - Eisbrecher - Eiszeit (official video)
Queued by: André
Duration: 0:03:33
gr nerd
Beginners are A.
❌ Bad argument: Role "A" not found.
Yeah fam. A1 is the lowest.
getrole nerd
evalin ```py
age = input('How old are you')
print('You are ' + age + ' years old')
How old are youTraceback (most recent call last):
File "/tmp/execpad-c8f28b8405d8/source-c8f28b8405d8", line 1, in \<module>
age = input('How old are you')
EOFError: EOF when reading a line
evalin ```py
age = input('How old are you')
print('You are ' + age + ' years old')
21
How old are youYou are 21 years old
Oh my goodness
Make sure to add a )//(( in between so it creates a space between print lines
Or just use .format()
star stats
3154 messages starred with a total of 11025 stars.
🥇: 391202967329439745 (35 stars)
🥈: 353981547566596096 (22 stars)
🥉: 437589291787485184 (17 stars)
🥇: @proud obsidian (1680 stars)
🥈: @brittle walrus (952 stars)
🥉: @rare tundra (864 stars)
🥇: @proud obsidian (1640 stars)
🥈: @brittle walrus (496 stars)
🥉: @karmic ether (439 stars)
13
45
218
🥇: 406129263863922688 (9 stars)
🥈: 438024929108164629 (7 stars)
🥉: 375743002754416641 (6 stars)
play Indie/Pop/Folk Compilation - January 2017 (1½-Hour Playlist)
There was an error with retrieving your song: [0;31mERROR:[0m Unable to download webpage: <urlopen error [Errno -2] Name or service not known> (caused by URLError(gaierror(-2, 'Name or service not known'),))
np
queue
:x: There's nothing in the queue.
DAOKO × 米津玄師 “打上花火” (Uchiage hanabi) Composed by 米津玄師 (Kenshi Yonezu) Arranged & Performed by 松井祐貴 (Yuki Matsui) 新房昭之監督 アニメ映画『打ち上げ花火、下から見るか? 横から見るか?』 主題歌 カバー...
np
For booking enquiries email hvetter24@gmail.com https://www.facebook.com/hvettermusic https://hvetter.bandcamp.com Typical Life - Hvetter.. For everyone who ...
np
André#0013 has skipped the song.
np
ping
:ping_pong: Pong! | 152.38ms
play star wars john williams original trilogy
sub speakinglads
:white_check_mark: Alright, I added you to Speakinglads.
André#0013 has skipped the song.
André#0013 has skipped the song.
play the planets gustav holst full suite
play we like move it move it
play songs no one knwos name of
play meme 8 bit
skip
getrole Level A
info
info
oi boi, you 2 months older than me ^_ ^
👌
We joined around the same time i remember 🤔
Yeah we did
info
nono Tero.. you a newbie 😤
Heehee
Kneel before me peasent
😱 😱
I'm your bestie!
you shan't look your master in the eyes
Thy eyes do not deserve it 😛
How could you..!😭 😭
I shall now knight you ⚔
Our friendship is over Chrono
Thee Teri of Tero-ville
you are now my friend
nooo
NEEEIn
You cant try fix it
The damage has been done
Adios
God dangit... yester Ari left me as my Pokemon
today you leave me
Loool
Life is hard 😭
You are a loner now
This is what u get for being a meanie
Yes... I am back to being a peasant it seems
Also you dump me during this song
it is about lost friendsship
friendship*
This is ironic....
I was a king... you the Lionheart
dammit
😔
It was destined to happen
Now it is just a king... all by himself
😤 - LEAVE ME!!! I DON'T BELIEVE IN THE INSTITUTION OF FRIENDSHIP
and the moosic changed
Are we even a allowed to talk in the botchannel😂
don't think so
Chrono skip the song
I hate it
Told ya
I did it
star random
lol
star random
star random
star random
oh damn 
gr nerd
skip
André#0013 has skipped the song.
Now Playing: Indie/Pop/Folk Compilation - January 2018 (1-Hour Playlist) [1:18:33] requested by André#0013
star 1
❓ This message could not be found.
star random
star random
⭐ 3 #general ID: 429653403073773578
throw over restaurants so others can throw up
star random
star random
star random
queue
I am not currently connected to voice.
Now Playing: Indie/Pop/Folk Compilation - March 2018 (1½-Hour Playlist) [1:25:08] requested by André#0013
skip
André#0013 has skipped the song.
André#0013 has skipped the song.
play ich + ich so soll es bleiben
queue wadde hadde dudde da
- Ich + Ich - So soll es bleiben (Official Video)
Queued by: André
Duration: 0:03:45
play hippie-bus
- Ich + Ich - So soll es bleiben (Official Video)
Queued by: André
Duration: 0:03:45 - Dodo - Hippie-Bus
Queued by: zwitschi
Duration: 0:03:43 - Xavier Naidoo - Was wir alleine nicht schaffen [Official Video]
Queued by: André
Duration: 0:03:59 - Ich + Ich - Vom selben Stern (Official Video)
Queued by: André
Duration: 0:03:43 - BAUSA - Was du Liebe nennst (Official Music Video) [prod. von Bausa, Jugglerz & The Cratez]
Queued by: thom
Duration: 0:03:56
play rheinhard mey der mörder ich immer der gärtner
play reinhard mey über den wolken
Die erfolgreichsten Hits 2001 der Single-Charts in Deutschland. Bei den Auswertungen der Jahrescharts 2001 wurden jeweils die Top 100 berücksichtigt.
das klingt jamaikanisch 👌🏻
plus it's swiss german
dieses lied ist sehr traurig
I have been inactive for 5 minutes. Goodbye!
star random
star random
⭐ 3 #general ID: 356890496443875328
You tell, me that, there is, a limit, for commas, in a, sentence?
star random
star random
⭐ 2 #german-only ID: 423428723065356289
star random
⭐ 2 #general-2 ID: 376488137620455424
Das französische Füchslein wird von einem memigen Arrem gejagt.
getrole Level A1
❌ Bad argument: Role "Level A1" not found.
Commands used by the German learning server.
For more help, join the official German server: https://discord.gg/german
Assigns a role to you from a list of available roles.
Removes a previously assigned role.
Quote a message from a <channel>.
Get the conjugation for a <verb> in <lang>.
role A
❌ Bad argument: Role "A" not found.
role Level A
:heavy_check_mark: I replaced your old CEFR role with Level A.
:heavy_check_mark: I replaced your old CEFR role with Level B.
@burnt atlas do: >gr Level A
gr Level A
getrole Level A1
❌ Bad argument: Role "Level A1" not found.
gr Level A
Changed player volume to: 100%
play Skinner Says Yes
play Skinner Says Yes
play Skinner Says Yes
banarrem 1 10
Repeated Skinner Says Yes 10 times.
banarrem 1 10
Repeated Skinner Says Yes 10 times.
banarrem 1 100
Repeated Skinner Says Yes 100 times.
Repeated Skinner Says Yes 10 times.
Now Playing: Skinner Says Yes [0:00:01] requested by Arrem#4798
stop
qpriority Skinner Says No
qpriority Skinner Says No
qpriority Skinner Says No
qpriority Skinner Says No
banarrem 1 10
Repeated Skinner Says No 10 times.
banarrem 1 100
Repeated Skinner Says No 100 times.
vol 100
Changed player volume to: 100%
play Fruitsalate
There was an error with retrieving your song: [0;31mERROR:[0m This video is unavailable.
Repeated Lettuce/Cabbage vine 10 times.
FFFJCJDNDN
I have been inactive for 5 minutes. Goodbye!
- She's gone 익룡쉬즈곤 쉬즈곤
Queued by: Thihihihihi
Duration: 0:01:58 - 24/7
Queued by: Arrem
Duration: 0:02:48
vol 50
Changed player volume to: 50%
t!cookie @oak jackal
t!cookie @twilit wyvern
❤
I have been inactive for 5 minutes. Goodbye!
❌ Bad argument: query is a required argument that is missing.
No channel to join. Please either specify a valid channel or join one.
:x: At least two members are needed before I start playing music.
queue
:x: There's nothing in the queue.
I have been inactive for 5 minutes. Goodbye!
play reinhard mey über den wolken
play reinhard mey der gärtner der mörder
play reinhard mey sei wachsam
play auf der schwäbsche eisenbahne
queue
- Auf de Schwäbsche Eisebahne - Ulmer Lieder #2
Queued by: André
Duration: 0:02:29
play reinhard mey abschied
queue
- Auf de Schwäbsche Eisebahne - Ulmer Lieder #2
Queued by: André
Duration: 0:02:29 - Reinhard Mey Abschied
Queued by: André
Duration: 0:02:43
André#0013 has skipped the song.
queue
:x: There's nothing in the queue.
play Schatzi schenk mir ein foto
play wise guys achterbahn
play alles neu Peter fox
queue
- Peter Fox - Alles neu (offizielles Video)
Queued by: Mightymauz
Duration: 0:04:32
play an in den Süden
play ein dickes ding wise guys
play waka waka
this band is 100% acapella btw
I have to go though, computer science lecture and stuff y'know
Bis später André :(
André#0013 has skipped the song.
help
Handle reputation
For more help, join the official German server: https://discord.gg/german
Show a leaderboard according to reputation on the server.
Show how much reputation you have
Award a member with a reputation point
<role
help
Generic commands used by basically every bot.
For more help, join the official German server: https://discord.gg/german
Show information about a number of characters.
daily
:atm: | You've received your daily dose of capitalism. 200€ were added to your account.
cat
cat
cat
evalin
n = 2
b = 4
print(”2 puta 2 jednako”, n*b)
File "/tmp/execpad-70f6ead06692/source-70f6ead06692", line 3
print(”2 puta 2 jednako”, n*b)
^
SyntaxError: invalid character in identifier
File "/tmp/execpad-96a8545c12b1/source-96a8545c12b1", line 3
print(“2 puta 2 jednako”, n*b)
^
SyntaxError: invalid character in identifier
evalin
n = 2
b = 4
print("2 puta 2 jednako", n*b)
2 puta 2 jednako 8
evalin
n = 2
b = 4
print("2 puta 4 jednako", n*b)
2 puta 4 jednako 8
Maths is hard
It just doesn't like fancy “s
play reinhard mey abschied
play ein dickes ding wise guys
play reinhard mey über den wolken
play reinhard mey der gärtner der mörder
play auf der schwäbsche eisenbahne
play reinhard mey sei wachsam
!queue
queue
- Wise Guys - Ein dickes Ding
Queued by: Teri
Duration: 0:03:34 - Reinhard Mey-Über den Wolken
Queued by: Teri
Duration: 0:03:52 - Reinhard Mey - Der Mörder ist immer der Gärtner
Queued by: Teri
Duration: 0:04:55 - Auf de Schwäbsche Eisebahne - Ulmer Lieder #2
Queued by: Teri
Duration: 0:02:29 - Reinhard Mey Sei wachsam
Queued by: Teri
Duration: 0:08:37
queue
- Sebastian Krämer - Meine Lieder
Queued by: Teri
Duration: 0:04:41
play cro bye bye
play auf der schwäbsche eisenbahnw
Album: Froh und heiter mit Akkordeon und Gesang Gesang: Das Roland-Quartett und das Golgowsky-Quartett Titel: Da oben auf dem Berge Wer das Scheiden hat erfu...
Ein Grosses Bundesblasorchester Mit Mannenchor.
queue
- "Eine Seefahrt, die ist lustig" (Borders, Schultze) Adalbert Lutter 1935
Queued by: André
Duration: 0:03:09 - 🇩🇪🇩🇪🇩🇪 German Folk Music 🇩🇪🇩🇪🇩🇪
Queued by: True_Aviator
Duration: 0:41:14
Mara Kayser (Grün Grün Grün......) Volkslied
Album: Wochenend' und Sonnenschein (1973) Titel: - Das Wandern ist des Müllers Lust (Wandering is the Miller's Joy) - Schön ist es auf der Welt zu sein - Mus...
Album: Ännchen von Tharau bittet zum Tanz - 28 swingende Volkslieder mit Chor und Orchester Hans Last (1966) Titel: - Horch, was kommt von draußen rein - Der...
Ein Grosses Bundesblasorchester Mit Mannenchor.
pay beethoven ode an die freude
play beethoven ode an die freude
play reinhard mey der mörder ist immer der gärtner
reinhard mey über den wolken
play rammstein rosenrot
t!info @copper cradle
t!profile @copper cradle
📝 | User profile card for Seska
I have been inactive for 5 minutes. Goodbye!
getrole level B
info .Mika
gr Gaming
► “CASIA” jetzt bestellen: https://miamiyacine.lnk.to/Casia ► “KMN" GANGtour 2017: http://www.kmn-tickets.de Fr. 10.11. Hirsch / Nürnberg Sa. 11.11. Batschka...
Offizielles RIN Merch: http://www.division.shop Album "EROS" kaufen: http://division.lnk.to/RINEROS RIN Live: http://www.eventim.de/rin RIN: Facebook: http:/...
skip
I3lueAnqel#4926 has skipped the song.
PHÄNOMENAL - Pietro Lombardi, OUT NOW! ▶︎ Spotify: https://spoti.fi/2KvrYzp ▶︎ iTunes: https://apple.co/2GtkkD1 ▶︎ Apple Music: https://apple.co/2GtkkD1 ▶︎ D...
skip
I3lueAnqel#4926 has skipped the song.
Den neuen Namika Song "Je ne parle pas français" gibt es hier: https://namika.lnk.to/JeNeParlePasFrancais Den Black M-Remix hier: https://namika.lnk.to/JeNeP...
Extrait du nouvel album « GENTLEMAN 2.0 » Maintenant disponible : https://dadju.lnk.to/Gentleman20 En tournée dans toute la France : https://lc.cx/ge8s -- Re...
skip
I3lueAnqel#4926 has skipped the song.
I have been inactive for 5 minutes. Goodbye!
play an der nordseeküste
Skip vote added, currently at [1/3]
skip
André#0013 has skipped the song.
Husumer Shanty-Chor - Eine Seefahrt die ist lustig 2010 Eine Seefahrt, die ist lustig, Eine Seefahrt, die ist schön, denn da kann man fremde Länder und noch ...
I have been inactive for 5 minutes. Goodbye!
play reinhard mey abschied
Music video by Mark Forster performing Chöre. (C) 2016 Four Music Productions GmbH http://vevo.ly/TngsJb
queue
- Reinhard Mey: Schutzengel (Songs an einem Sommerabend 2014)
Queued by: André
Duration: 0:02:39
❌ Bad argument: Role "a" not found.
getrole level A
:heavy_check_mark: I replaced your old CEFR role with Level A.
:atm: | You've received your daily dose of capitalism. 200€ were added to your account.
Die Single jetzt erhätlich! iTunes: http://www.umgt.de/HnJQfb ♫ Amazon: http://www.umgt.de/AHlOis ♫ Spotify: https://open.spotify.com/album/77TYol8Y7RgxSfaCL...
Now Playing: EFF - Stimme (Official Video) [0:03:07] requested by I3lueAnqel#4926
queue
:x: There's nothing in the queue.
I have been inactive for 5 minutes. Goodbye!
For more help, join the official German server: https://discord.gg/german
Allows you to look up words you don't know.
getrole help
❌ Bad argument: Role "help" not found.
help getrole
Assigns a role to you from a list of available roles.
If you abuse this command, you will get blacklisted.
star random
⭐ 2 #voice-chat ID: 363443636723253268

getrole B
❌ Bad argument: Role "B" not found.
❌ Bad argument: Role "levelB" not found.
:heavy_check_mark: I replaced your old CEFR role with Level B.
yes
^^
getrole gaming
getrole nerd
😒 i dont agree with this term but whatever
group
- Speakinglads
- Sciencepractice
- Reading
- Python
@tender trellis i have no clue what the idea is behing everything except #3
okay
speakinglads is for speaking, sciencepractice is for practising science related things, python is for python practice
:white_check_mark: Alright, I added you to Sciencepractice.
so what now? 
play studio ghibli piano
@untold lily erm yes i am? 0.o
I know you from the dutch language server @topaz crow
I have been inactive for 5 minutes. Goodbye!
play summer 2016 indie alternative
André#0013 has skipped the song.
- Carl Orff - O Fortuna ~ Carmina Burana
Queued by: André
Duration: 0:05:21 - Elvis Presley Greatest Hits Full Album | The Very Best Of Elvis Presley
Queued by: André
Duration: 1:21:09 - Fallout 4 Radio Songs - Diamond City Station Full + Track List
Queued by: André
Duration: 1:41:07
skip
André#0013 has skipped the song.
skip
André#0013 has skipped the song.
André#0013 has skipped the song.
André#0013 has skipped the song.
evalin ```cpp
template<typename T, typename... args>
struct counter{
static const int value= 1+ counter<args...>::value;
};
template<typename T>
struct counter<T>{
static const int value = 0;
};
/usr/lib/crt1.o: In function \`_start':
(.text+0x18): undefined reference to \`main'
collect2: error: ld returned 1 exit status
frik
evalin ```cpp
template<typename T, typename... args>
struct counter{
static const int value= 1+ counter<args...>::value;
};
template<typename T>
struct counter<T>{
static const int value = 0;
};
int main() {
return 0;
}
OK (0.004 sec real, 0.002 sec wall, 3 MB, 78 syscalls)
evalin
#include <iostream>
int main() {
printf("haha yes");
return 0;
}
haha yes
👌🏻
evalin ```cpp
#include <initializer_list>
struct Foo { int theAnswer; };
int main() {
std::initializer_list<Foo> bar = {{42}};
}
OK (0.004 sec real, 0.002 sec wall, 3 MB, 78 syscalls)
I want the compiler to apologise
lol
evalin ```cpp
int main() {
template <typename... T>
struct SomeStruct<1, 2, 3, T...> {};
}
/tmp/execpad-9635a010cf30/source-9635a010cf30: In function ‘int main()’:
/tmp/execpad-9635a010cf30/source-9635a010cf30:2:5: error: a template declaration cannot appear at block scope
template <typename... T>
^
evalin ```cpp
template <typename... T>
struct SomeStruct<1, 2, 3, T...> {};
int main() {
SomeStruct x;
}
/tmp/execpad-4e05d9d0746e/source-4e05d9d0746e:2:8: error: ‘SomeStruct’ is not a class template
struct SomeStruct<1, 2, 3, T...> {};
^
/tmp/execpad-4e05d9d0746e/source-4e05d9d0746e: In function ‘int main()’:
/tmp/execpad-4e05d9d0746e/source-4e05d9d0746e:5:16: error: missing template arguments before ‘x’
SomeStruct x;
^
Almost

🎉
