#botchannel

1 messages · Page 90 of 1

tender trellis
#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<string> arr;
    for (int i = 0; i < swag.len(); ++i) {
        arr.push_back(swag[swag.len() - 1] + swag.substring(i));
    }
    for (int i = 0; i < arr.size(); ++i) {
        printf(arr[i] + "\n");
    }
}
main arrowBOT
tender trellis
#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<string> arr;
    for (int i = 0; i < swag.length(); ++i) {
        arr.push_back(swag[swag.length() - 1] + swag.substring(i));
    }
    for (int i = 0; i < arr.size(); ++i) {
        printf(arr[i] + "\n");
    }
}
main arrowBOT
#
Output too long
tender trellis
#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<std::string> arr;
    for (int i = 0; i < swag.length(); ++i) {
        arr.push_back(swag[swag.length() - 1] + swag.substring(i));
    }
    for (int i = 0; i < arr.size(); ++i) {
        printf(arr[i] + "\n");
    }
}
main arrowBOT
#
/tmp/execpad-1cbb616cbbcd/source-1cbb616cbbcd: In function ‘int main()’:
/tmp/execpad-1cbb616cbbcd/source-1cbb616cbbcd:9:54: error: ‘std::string’ has no member named ‘substring’
         arr.push_back(swag[swag.length() - 1] + swag.substring(i));
                                                      ^
/tmp/execpad-1cbb616cbbcd/source-1cbb616cbbcd:12:29: error: cannot convert ‘std::basic_string<char>’ to ‘const char*’ for argument ‘1’ to ‘int printf(const char*, ...)’
         printf(arr[i] + "\\n");
                             ^

untold lily
#

evalin ```cpp
#include <iostream>

template <int FIRST, int... NEXT>
struct Test {
static const int VALUE = FIRST + Test<NEXT...>::VALUE;
};

template <int FIRST>
struct Test<FIRST> {
static const int VALUE = FIRST;
};

int main() {
std::cout << Test<1, 2, 3>::VALUE << std::endl; // print "6"
return 0;
}

main arrowBOT
#
6

tender trellis
#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<string> arr;
    for (int i = 0; i < swag.length(); ++i) {
        arr.push_back(swag[swag.length() - 1] + swag.substr(i));
    }
    for (int i = 0; i < arr.size(); ++i) {
        std::cout << arr[i] << std::endl;
    }
}
main arrowBOT
#
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b: In function ‘int main()’:
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:7:17: error: ‘string’ was not declared in this scope
     std::vector<string> arr;
                 ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:7:17: note: suggested alternative:
In file included from /execpad/interpreters/gcc-4.9.1/include/c++/4.9.1/iosfwd:39:0,
                 from /execpad/interpreters/gcc-4.9.1/include/c++/4.9.1/ios:38,
                 from /execpad/interpreters/gcc-4.9.1/include/c++/4.9.1/ostream:38,
                 from /execpad/interpreters/gcc-4.9.1/include/c++/4.9.1/iostream:39,
                 from /tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:1:
/execpad/interpreters/gcc-4.9.1/include/c++/4.9.1/bits/stringfwd.h:62:33: note:   ‘std::string’
   typedef basic_string<char>    string;   
                                 ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:7:23: error: template argument 1 is invalid
     std::vector<string> arr;
                       ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:7:23: error: template argument 2 is invalid
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:7:28: error: invalid type in declaration before ‘;’ token
     std::vector<string> arr;
                            ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:9:13: error: request for member ‘push_back’ in ‘arr’, which is of non-class type ‘int’
         arr.push_back(swag[swag.length() - 1] + swag.substr(i));
             ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:11:29: error: request for member ‘size’ in ‘arr’, which is of non-class type ‘int’
     for (int i = 0; i < arr.size(); ++i) {
                             ^
/tmp/execpad-4bdb30462d2b/source-4bdb30462d2b:12:27: error: invalid types ‘int[int]’ for array subscript
         std::cout << arr[i] << std::endl;
                           ^

tender trellis
#

ffs

#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<std::string> arr;
    for (int i = 0; i < swag.length(); ++i) {
        arr.push_back(swag[swag.length() - 1] + swag.substr(i));
    }
    for (int i = 0; i < arr.size(); ++i) {
        std::cout << arr[i] << std::endl;
    }
}
main arrowBOT
#
eim wanna die
em wanna die
e wanna die
ewanna die
eanna die
enna die
ena die
ea die
e die
edie
eie
ee

tender trellis
#

not quite what i wanted

#

haha yes

#

evalin

#include <iostream>
#include <vector>
#include <string>

int main() {
    std::string swag = "im wanna die";
    std::vector<std::string> arr;
    for (int i = 0; i < swag.length(); ++i) {
    swag = swag[0] + swag.substr(0, 1);
         arr.push_back(swag);
    }
    for (int i = 0; i < arr.size(); ++i) {
        std::cout << arr[i] << std::endl;
    }
}
main arrowBOT
#
ii
ii

untold lily
#

evalin ```cpp
int f (void) { return 1; }
int f (int) { return 0; }
void g (void) { int i = f(), j = f(0); }

main arrowBOT
#
/usr/lib/crt1.o: In function \`_start':
(.text+0x18): undefined reference to \`main'
collect2: error: ld returned 1 exit status

untold lily
#

evalin ```cpp
int f (void) { return 1; }
int f (int) { return 0; }
int main() {
int i = f(), j = f(0);
}

main arrowBOT
#
OK (0.004 sec real, 0.002 sec wall, 3 MB, 78 syscalls)
untold lily
#

Then Im gonna do it manually

#

evalin ```cpp
int main() {
throw "Sorry can't compile";
}

main arrowBOT
#
terminate called after throwing an instance of 'char const*'

untold lily
#

Are you kidding me

tender trellis
#

lol

untold lily
#

evalin ```cpp
#include <iostream>
using namespace std;

int main() {
int C;
if(C > C++){
cout<<"C is Better";
}
else{
cout<<"C++ is Better";
}
return 0;
}

main arrowBOT
#
C is Better
untold lily
#

evalin ```py
import this

main arrowBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

untold lily
#

LMAOO

tender trellis
#

roflll

untold lily
#

evalin ```py
import antigravity

main arrowBOT
#
OK (0.064 sec real, 0.073 sec wall, 11 MB, 549 syscalls)
tender trellis
#

evalin
import everything

main arrowBOT
#

❌ Bad argument: Missing code block. Please use the following markdown
```language
code here
```

tender trellis
#

evalin

import everything```
main arrowBOT
#
Traceback (most recent call last):
  File "/tmp/execpad-86c6cb14bb4a/source-86c6cb14bb4a", line 1, in <module>
    import everything
ImportError: No module named 'everything'

tender trellis
#

fuck

untold lily
#

evalin ```py
from future import braces

main arrowBOT
#
  File "/tmp/execpad-38771141ddcb/source-38771141ddcb", line 1
    from __future__ import braces
SyntaxError: not a chance

tender trellis
#

xD

#

evalin

main arrowBOT
#

❌ Bad argument: Source code cannot be empty.

tender trellis
#

evalin

from __future__ import semicolon
main arrowBOT
#
  File "/tmp/execpad-9d12cada2ad8/source-9d12cada2ad8", line 1
    from __future__ import semicolon
SyntaxError: future feature semicolon is not defined

tender trellis
#

:)

#

evalin

from __future__ import ;
main arrowBOT
#
  File "/tmp/execpad-a47f0a2879cf/source-a47f0a2879cf", line 1
    from __future__ import ;
                           ^
SyntaxError: invalid syntax

untold lily
#

evalin ```py
résumé = 'knows Python'
'Python' in résumé

main arrowBOT
#
OK (0.032 sec real, 0.035 sec wall, 8 MB, 44 syscalls)
tender trellis
#

lol

untold lily
#

evalin ```py
résumé = 'knows Python'
print('Python' in résumé)

main arrowBOT
#
True

tender trellis
#

evalin

arr = ["h", "a", "h", "a", " ", "y", "e", "s"]
print([k for k in arr])
main arrowBOT
#
['h', 'a', 'h', 'a', ' ', 'y', 'e', 's']

untold lily
#

evalin ```py
import hello

main arrowBOT
#
Hello world!

tender trellis
#

evalin

arr = ["h", "a", "h", "a", " ", "y", "e", "s"]
print(str(k) for k in arr)
main arrowBOT
#
<generator object <genexpr> at 0x40418edc>

tender trellis
#

evalin

arr = ["h", "a", "h", "a", " ", "y", "e", "s"]
print(''.join(str(i) for i in arr))
main arrowBOT
#
haha yes

tender trellis
#

finally

#

evalin

print(''.join(str(i) for i in ["h", "a", "h", "a", " ", "y", "e", "s"]))
main arrowBOT
#
haha yes

untold lily
#

evalin ```py
print ''.join('%(pre)s%(num)s %(bot)s on the wall, %(nul)s %(bot)s,\n%(tak)s\n' % (lambda c,b:
{'pre':['','%s %s on the wall.\n\n' % (c,b)][abs(cmp(c,'Ninety-nine'))],
'num':c, 'nul':c.lower(), 'bot':b,
'tak':['Go to the store and buy some more... Ninety-nine %s.' % b,'Take one down, pass it around,'][abs(cmp(x,0))]
})((lambda x,o: [(['Twenty','Thirty','Forty','Fifty',
'Sixty','Seventy','Eighty','Ninety'][x/10-2]+'-'+o.lower()).replace('-no more',''), o][int(x<20)])(x, ['No more','One','Two',
'Three','Four','Five','Six','Seven','Eight',
'Nine','Ten','Eleven','Twelve','Thirteen','Fourteen',
'Fifteen','Sixteen','Seventeen','Eighteen','Nineteen'][[x,x%10][int(x>=20)]]),'bottle%s of beer' % ['','s'][abs(cmp(x,1))])
for x in xrange(99,-1,-1))

main arrowBOT
#
  File "/tmp/execpad-365588752e8c/source-365588752e8c", line 1
    print ''.join('%(pre)s%(num)s %(bot)s on the wall, %(nul)s %(bot)s,\\n%(tak)s\\n' % (lambda c,b:
           ^
SyntaxError: invalid syntax

untold lily
#

you heck

#

evalin ```py
from future import print_function; ''' print(q[1]('t9(}zw|q}/>VzrP}/q|zaJ Q>V')),exit(0)#''' q=lambda x,=('c9*6iv"&s1[Y/`Oh7|pEW:=!uT4+zeNl;Im'X\<-wabDMZ8ykgR@{r>B)~qKFdC3H0Q%,S}xVG](?^2#oPjJL.A$U fnt5'): type('').dict['}VJ|(@J}>'. translate((''*32++(''*len())[:(1<<2)-1-(1<<8-2)]))](x,(''*32+_+(''* len(_))[:(1<<2)-1-(1<<8-2)]));globals()[q('11$C3qV}11')] = lambda _,q=q,builtins=builtins: builtins.dictq('11$C3qV}11');q2=( lambda globals=(lambda q=(lambda x: getattr(import('q('),x)): q): (lambda os, import=q: (globals()(import(os)))))(); q=[q2('q3>|')(import( '(P(').dict[q('JVR%')][0],0),q];q2('^93o')(3,0);raw_input();input()

main arrowBOT
#
  File "/tmp/execpad-9daf3951fa73/source-9daf3951fa73", line 1
    from __future__ import print_function; ''' print(q[1]('t9(}zw|q}/>VzrP}/q|zaJ Q>V')),exit(0)#''' q=lambda x,_=('c9*6iv"&s1[Y/\`Oh7_|pEW:=!uT4+zeNl;Im\\'X\\\\<-wabDMZ8ykgR@{r>B)~qKFdC3H0Q%,S}xVG](?^2#oPjJL.A$U fnt5'): type('').__dict__['}VJ|(@J}>'. translate(('_'*32+_+('__'*len(_))[:(1<<2)-1-(1<<8-2)]))](x,('_'*32+_+('__'* len(_))[:(1<<2)-1-(1<<8-2)]));globals()[q('11$C3qV}11')] = lambda _,q=q,__builtins__=__builtins__: __builtins__.__dict__[q('11$C3qV}11')](q(_));q2=( lambda globals=(lambda q=(lambda x: getattr(__import__('q('),x)): q): (lambda os, __import__=q: (globals()(__import__(os)))))(); q=[q2('q3>|')(__import__( '(P(').__dict__[q('JVR%')][0],0),q];q2('^93o')(3,0);raw_input();input() 
                                                                                                     ^
SyntaxError: invalid syntax

untold lily
#

evalin ```py
(lambda _, , , ____, , , ______, ________:
getattr(
import(True.class.name[
] + [].class.name[
]),
().class.eq.class.name[:
] +
().iter().class.name[
:][
:
__]
)(
_, (lambda _, __, ___: (, __, ___))(
lambda _, __, :
bytes([
% __]) + (, __, ___ // __) if ___ else
(lambda: _).code.co_lnotab,
_ << ___,
(((
<< __) + ) << (( << ____) - )) + ((((( << )
- ) << ) + ) << (( << ) + ( << ))) + (((
<<
_) - ) << ((((( << ) + )) << ) + ( << ))) + (((
<< ) + ) << (( << ) + )) + ((( << ) - ) <<
((
<< ))) + ((( << ) - ) << (((( << ) + ) <<
) - )) - (
<< ((((
<< ) - ) << ) + )) + (

<< (((((
<< ___) + _)) << _))) - (((((( << ) + )) << ) +
) << ((((
<< ) + ) << ))) + (((
<< ) - ) <<
(((((
<< ) + )) << ))) + ((( << ) + ) << (( <<
))) + (
<< _____) + ( << ___)
)
)
)(
*(lambda _, __, ___: (, __, ___))(
(lambda _, , :
[
(
[(lambda: _).code.co_nlocals])] +
(, __, ___[(lambda _: _).code.co_nlocals:]) if ___ else []
),
lambda _: _.code.co_argcount,
(
lambda _: _,
lambda _, __: _,
lambda _, __, ___: _,
lambda _, __, ___, ____: _,
lambda _, __, ___, ____, _____: _,
lambda _, __, ___, ____, _____, ______: _,
lambda _, __, ___, ____, _____, ______, _______: _,
lambda _, __, ___, ____, _____, ______, _______, ________: _
)
)
)

main arrowBOT
#
Hello world!

untold lily
#

LMAO

#

IT WORKED

tender trellis
#

i just shit myself

#

how

untold lily
#

Welcome to functional programming

#

evalin ```c
#include <stdio.h>
main() {
long long P = 1,
E = 2,
T = 5,
A = 61,
L = 251,
N = 3659,
R = 271173410,
G = 1479296389,
x[] = { G * R * E * E * T , P * L * A * N * E * T };
puts((char*)x);
}

main arrowBOT
#
Hello World!

untold lily
#

help evalin

main arrowBOT
#
evalin <code>

Compiles code via eval.in.
You have to pass in a code block with the language
syntax set to one of these:

  • python | py
  • cpp
  • c
  • fortran
  • haskell
  • pascal
    Additionally, if you'd like to pass input,
    please append it after the end of the code block.
untold lily
#

evalin ```haskell
main=let h#a=putChar.toEnum$h in 72#error>>(101:[])!!0#(\h e ll(o, w)0 r l d '!'
->undefined)>>mapM_(#(#))(replicate 2 108++flip(:)[](foldl(\n d->10n+d)
0.replicate 3$1))
>((\a b->a^b-a+b)7 2)#'o'>>= _->(#error
['c','a','n',' ','y','o','u',' ','h','e','a','r',' ','m','e',',','w','o','r','l','d','?'])
(read((\x->show x++show(x-1))3)::Int)<mapM_(#[q|q<-repeat '?'])((:)119$(:)111[114])>>=
\x->((\x->2
(10x!!0+x!!1))(take 2[5,4..]))#((hello,world)->'!')>pure id<*>((#
([hello,world]->(!!)))$(^2)([1..10]!!9))>>(read.concat$show<$>(take 2(repeat(((x:xs)->x)
(drop 2[1..])))))# [puts,(hello, world)]->error

main arrowBOT
#
runhugs: Error occurred
ERROR "/tmp/execpad-83f29ecbbce0/source-83f29ecbbce0":2 - Syntax error in expression (unexpected \`;', possibly due to bad layout)



untold lily
#

evalin ```haskell
fix$(<$>)<$>(:)<>((<$>((:[{- thor's mother -}])<$>))(=<<)<$>()<$>(*2))$1

main arrowBOT
#
runhugs: Error occurred
ERROR "/tmp/execpad-2a473ceba51a/source-2a473ceba51a":1 - Syntax error in declaration (unexpected symbol "<$>")



untold lily
#

evalin ```haskell
fix$(<$>)<$>(:)<>((<$>((:[{- Jörð -}])<$>))(=<<)<$>()<$>(>>=)(+)($))$1

main arrowBOT
#
runhugs: Error occurred
ERROR "/tmp/execpad-7862ff49f497/source-7862ff49f497":1 - Syntax error in declaration (unexpected symbol "<$>")



tender trellis
#

giverole

#

role

main arrowBOT
#
Roles you can give yourself
  1. Level A
  2. Level B
  3. Level C
  4. Gaming
  5. Learning German
  6. Nerd
tender trellis
#

role Gaming

#

role Nerd

tender trellis
#

are you just copying random code from somewhere lol

surreal fable
#

play auf der schwäbsche eisenbahne

minor oasis
#

play kommst du mit ihr

surreal fable
#

play wenn die nach vorn fällt

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Mike Krüger - Wenn Die Nach Vorn Fällt (1977)
    Queued by: André
    Duration: 0:02:00
minor oasis
#

play casper ganz schon okey

karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Pocahontas - AnnenMayKantereit
    Queued by: Ginko
    Duration: 0:03:12
  2. Die Ärzte-Zu Spät
    Queued by: Ginko
    Duration: 0:02:46
surreal fable
#

play reinhard mey der mörder ist immer der gärtner

tender trellis
#

Love that one😂

#

queue

main arrowBOT
#
Queued songs:
  1. Die Ärzte-Zu Spät
    Queued by: Ginko
    Duration: 0:02:46
  2. Mickie Krause - Geh mal Bier hol'n
    Queued by: Mamimus
    Duration: 0:03:06
  3. Reinhard Mey - Der Mörder ist immer der Gärtner
    Queued by: André
    Duration: 0:04:55
minor oasis
#

play lila wolken marteria

#

queue

main arrowBOT
#
Queued songs:
  1. Mickie Krause - Geh mal Bier hol'n
    Queued by: Mamimus
    Duration: 0:03:06
  2. Reinhard Mey - Der Mörder ist immer der Gärtner
    Queued by: André
    Duration: 0:04:55
  3. Marteria, Yasha, Miss Platnum - Lila Wolken (Videoclip)
    Queued by: JuanD
    Duration: 0:03:51
surreal fable
#

play über den wolken

#

play Komm, gieß' mein Glas noch einmal ein reinhard mey

#

play wise guys sägewerk bad segeberg

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Reinhard Mey-Über den Wolken
    Queued by: André
    Duration: 0:03:52
  2. Reinhard Mey - Komm, gieß mein Glas noch einmal ein
    Queued by: André
    Duration: 0:04:12
  3. Wise Guys - Das Sägewerk Bad Segeberg - Musikvideo
    Queued by: André
    Duration: 0:02:54
  4. Yung Hurn - Y. HURN wieso? (Official Audio)
    Queued by: Ginko
    Duration: 0:02:39
  5. Falco - Der Kommissar (U.S. Official Video)
    Queued by: Danieldrd
    Duration: 0:03:48
minor oasis
#

play casper im ascheregen

#

queue

main arrowBOT
#
Queued songs:
  1. Yung Hurn - Y. HURN wieso? (Official Audio)
    Queued by: Ginko
    Duration: 0:02:39
  2. Falco - Der Kommissar (U.S. Official Video)
    Queued by: Danieldrd
    Duration: 0:03:48
  3. Casper - Im Ascheregen
    Queued by: JuanD
    Duration: 0:05:02
minor oasis
#

nowplaying

#

play das leben ist ein rockkonzert

surreal fable
#

play brahms sleep

minor oasis
#

skip

main arrowBOT
#

JuanD#6162 has skipped the song.

minor oasis
#

play bosse steine

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Bosse - Steine (Official Video)
    Queued by: JuanD
    Duration: 0:03:33
minor oasis
#

play casper so perfekt

main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

surreal fable
#

play ham kummst

tender trellis
karmic peak
#

Skip

#

skip

tender trellis
#

nicht bevor er anmacht

main arrowBOT
#

Skip vote added, currently at [1/4]

tender trellis
#

skip

main arrowBOT
#

HerrNoob#4308 has skipped the song.

tender trellis
karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Rainald Grebe - Brandenburg
    Queued by: Mamimus
    Duration: 0:04:41
  2. Schwarzbraun Ist Die Haselnuss
    Queued by: André
    Duration: 0:02:20
  3. Darude - Sandstorm
    Queued by: HerrNoob
    Duration: 0:03:52
surreal fable
#

skip

main arrowBOT
#

André#0013 has skipped the song.

karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Darude - Sandstorm
    Queued by: HerrNoob
    Duration: 0:03:52
karmic peak
main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

karmic peak
tender trellis
main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

twilit wyvern
#

t!cookie @oak jackal

upper hatchBOT
#
Cookie 🍪!

Katherine has given The German Saint Anna🍌 a cookie!
Easy cookie, easy life.

oak jackal
#

t!cookei @twilit wyvern

#

t!cookie @twilit wyvern

upper hatchBOT
#
Cookie 🍪!

The German Saint Anna🍌 has given Katherine a cookie!
That's how the cookie crumbles!

untold lily
#

@tender trellis lol yeh I was

twilit wyvern
#

t!beautiful @oak jackal

upper hatchBOT
oak jackal
#

Oooo

copper cradle
#

t!beautiful @old slate

upper hatchBOT
surreal fable
main arrowBOT
#

:x: At least two members are needed before I start playing music.

tender trellis
#

queue

main arrowBOT
#

:x: There's nothing in the queue.

surreal fable
main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

surreal fable
#

play minecraft calm 3

#

skip

main arrowBOT
#

André#0013 has skipped the song.

surreal fable
#

play alternative indie pop januar 2018

#

skip

main arrowBOT
#

André#0013 has skipped the song.

surreal fable
#

skip

main arrowBOT
#

André#0013 has skipped the song.

karmic peak
#

skip

main arrowBOT
#

Skip vote added, currently at [1/2]

karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Das Leben des Brian - Lateinunterricht (HQ)
    Queued by: André
    Duration: 0:03:06
tender trellis
karmic peak
surreal fable
#

play end of the world skeeter cavis

#

play lua bright eyes

karmic peak
#

play there won't be many coming home

surreal fable
#

play auf de schwäbsche eisenbahn

karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. "THERE WON'T BE MANY COMING HOME" by Roy Orbison
    Queued by: Mamimus
    Duration: 0:02:45
  2. Peaches - The Presidents Of The United States with Lyrics
    Queued by: Tartarus
    Duration: 0:02:52
  3. Auf de Schwäbsche Eisebahne - Ulmer Lieder #2
    Queued by: André
    Duration: 0:02:29
surreal fable
#

skip

main arrowBOT
#

André#0013 has skipped the song.

tender trellis
karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Alice's Restaurant - Original 1967 Recording
    Queued by: Tartarus
    Duration: 0:18:15
  2. Nervige Seitenbacher Müsli Werbung
    Queued by: Mamimus
    Duration: 0:00:15
surreal fable
#

play no no never texas

tender trellis
karmic peak
#

play great balls of fire

karmic peak
#

skip

main arrowBOT
#

Mamimus#4312 has skipped the song.

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Jerrod Niemann - Donkey (Lyrics)
    Queued by: Tartarus
    Duration: 0:03:16
  2. Beer For My Horses LYRICS
    Queued by: Tartarus
    Duration: 0:03:32
  3. I like it, I love it -- Tim McGraw -- LYRICS
    Queued by: Tartarus
    Duration: 0:03:24
  4. Rammstein - Pussy (Official Video)
    Queued by: Mamimus
    Duration: 0:04:00
tender trellis
#

np

karmic peak
#

you like autobahn?

main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

rare tundra
#

info

main arrowBOT
#
Information about Chuck
Name

Chuck

Nick

None

Tag

1337

ID

121743683828711425

Joined

1 year, 5 days and 3 hours ago

Created

2 years, 6 months and 9 days ago

Roles

Gaming, Native German

lilac raft
#

ping

main arrowBOT
#

:ping_pong: Pong! | 149.23ms

lilac raft
#

ping_pong Pong! | 149.23ms

#

🏓 Pong! | 149.23ms

uneven meadow
#

ping

main arrowBOT
#

:ping_pong: Pong! | 153.33ms

rare sierra
#

urban mdr

main arrowBOT
#
Your search for mdr returned the following:
Definition

French equivelant of LOL, litterally meaning "mort de rire", "Death from laughter" or "dying of laughter" (though it should be note that most French people still know LOL)

Example

INSERT: Funnyness
RESPOND: mdr

rustic trellis
#

info

main arrowBOT
#
Information about Smiles
Name

Smiles

Nick

Smiles(A2)

Tag

4846

ID

237375066348847105

Joined

1 year, 4 months and 24 days ago

Created

1 year, 7 months and 26 days ago

Roles

Gaming, Nerd, Learning German, Level A

proud obsidian
#

play Skinner Says Yes

#

play Skinner Says Yes

#

play Skinner Says Yes

#

banarrem 1 10

main arrowBOT
#

Repeated Skinner Says Yes 10 times.

proud obsidian
#

qpriority Skinner Says No

#

qpriority Skinner Says No

uneven meadow
#

huh how does poll work

#

help poll

main arrowBOT
#
poll <question>

Interactively creates a poll with the following question.
To vote, use reactions!

uneven meadow
#

how do I add options

#

play she's gone vitalmouse

proud obsidian
#

vol 5

main arrowBOT
#

Changed player volume to: 5%

proud obsidian
uneven meadow
#

play chocobo otamatone

proud obsidian
#

play dr jean's banana dance

uneven meadow
#

play atemlos durhc die nacht

proud obsidian
#

vol 10

main arrowBOT
#

Changed player volume to: 10%

lilac raft
#

@uneven meadow

uneven meadow
#

hewwo?

lilac raft
#

Hi

uneven meadow
#

hewwoo

#

play armin armout

#

play alle meine entchen

#

play hänsel und gretel

#

play kagerfeuer lied

#

NOOO

#

YEEEES

#

skip

main arrowBOT
#

Thihihihihi#6410 has skipped the song.

uneven meadow
#

play mathe vorlesung

proud obsidian
#

np

#

speed 2 mathe vorlesung

#

skip

main arrowBOT
#

Arrem#4798 has skipped the song.

uneven meadow
#

YAY

#

NICE

#

#

play kazoo kid trap

proud obsidian
#

play ferenzc hallelujah cover

#

vol 50

main arrowBOT
#

Changed player volume to: 50%

proud obsidian
#

play ferencz hallelujah cover

#

vol 30

main arrowBOT
#

Changed player volume to: 30%

proud obsidian
#

vol 20

main arrowBOT
#

Changed player volume to: 20%

tender trellis
#

now

#

queue

main arrowBOT
#
Queued songs:
  1. Ferencz - Hallelujah (a Leonard Cohen cover)
    Queued by: Arrem
    Duration: 0:03:40
  2. Ferencz - Hallelujah (a Leonard Cohen cover)
    Queued by: Arrem
    Duration: 0:03:40
tender trellis
#

WHAT THE HECK IS THIS

proud obsidian
#

queue

main arrowBOT
#

:x: There's nothing in the queue.

proud obsidian
#

skip

main arrowBOT
#

Arrem#4798 has skipped the song.

proud obsidian
#

play konis hupen

#

play schei wi dei wi du wi dei

#

vol 10

main arrowBOT
#

Changed player volume to: 10%

tender trellis
#

queue

main arrowBOT
#

:x: There's nothing in the queue.

#

I have been inactive for 5 minutes. Goodbye!

tender trellis
#

play flamingo

#

queue

main arrowBOT
#
Queued songs:
  1. Seiler und Speer - Ham kummst
    Queued by: Ṁäṁïṁüṡ
    Duration: 0:04:24
  2. ROBLOX STALKER WANTS ME TO GO HERE IN REAL LIFE
    Queued by: Teri
    Duration: 0:16:53
  3. Flamingo 10 Hours
    Queued by: Teri
    Duration: 10:00:00
unkempt ermine
#

gr Gaming

#

gr Nerd

proud obsidian
#

|play Yee

livid scarabBOT
#

⛔ An error happened. This has been logged and reported.

proud obsidian
#

|play Yee

#

vckick 263703952338452481

main arrowBOT
#

Successfully kicked Freddie Faulig from the voice channel.

twilit wyvern
#

t!cookie @oak jackal

upper hatchBOT
#
Cookie 🍪!

Katherine has given The German Saint Anna🍌 a cookie!
That's how the cookie crumbles!

oak jackal
#

t!cookie @twilit wyvern

upper hatchBOT
#
Cookie 🍪!

The German Saint Anna🍌 has given Katherine a cookie!
Mmm...useless digital cookies.

twilit wyvern
#

proud obsidian
#

play ferencz hallelujah

oak jackal
#

play Gordon Ramsay talks dirty

#

play /r/niceguys

main arrowBOT
#

There was an error with retrieving your song: ERROR: Unable to download webpage: <urlopen error no host given> (caused by URLError('no host given',))

oak jackal
#

play niceguys

twilit wyvern
#

play my heart will go on recorder

proud obsidian
#

very cool

#

not friendly at all

oak jackal
#

Listen closely @proud obsidian

twilit wyvern
#

play tchaikovsky no

karmic peak
#

tchaikovsky yes

#

tchaikovsky always yes

oak jackal
#

skip

#

np

main arrowBOT
#

Not currently playing anything.

twilit wyvern
#

play tchaikovsky no

oak jackal
#

queue

main arrowBOT
#
Queued songs:
  1. My Heart Will Go On - Recorder By Candlelight by Matt Mulholland
    Queued by: Katherine
    Duration: 0:04:16
  2. tchaikovsky no
    Queued by: Katherine
    Duration: 0:00:11
  3. tchaikovsky no
    Queued by: Katherine
    Duration: 0:00:11
oak jackal
#

play

main arrowBOT
#

❌ Bad argument: query is a required argument that is missing.

proud obsidian
#

queue

main arrowBOT
#
Queued songs:
  1. My Heart Will Go On - Recorder By Candlelight by Matt Mulholland
    Queued by: Katherine
    Duration: 0:04:16
  2. tchaikovsky no
    Queued by: Katherine
    Duration: 0:00:11
  3. tchaikovsky no
    Queued by: Katherine
    Duration: 0:00:11
proud obsidian
#

qremove 3

main arrowBOT
#

Successfully removed tchaikovsky no from the queue.

twilit wyvern
#

play we are number one but it's a shitty metal cover

main arrowBOT
#

There was an error with retrieving your song: ERROR: No sources found for video pEaqI7E. Maybe an image?

proud obsidian
#

speed 2 My Heart Will Go On - Recorder By Candlelight by Matt Mulholland

oak jackal
#

play we are number one

proud obsidian
#

play we are number one but it's bing bonged by donald trump

oak jackal
#

play cooking by the book

proud obsidian
#

queue

main arrowBOT
#
Queued songs:
  1. Lazy Town | We are Number One Music Video
    Queued by: The German Saint Anna🍌
    Duration: 0:02:50
  2. We Are Number One but it's bing-bonged by Donald Trump (featuring his political friends)
    Queued by: Arrem
    Duration: 0:02:39
  3. cooking by the book remix ft lil jon
    Queued by: The German Saint Anna🍌
    Duration: 0:01:19
proud obsidian
#

skip

main arrowBOT
#

Arrem#4798 has skipped the song.

proud obsidian
#

play star wars bing bong

#

play turn the fucking frogs gay remix

jade mirage
#

getrole Level A

main arrowBOT
#
Queued songs:
  1. cooking by the book remix ft lil jon
    Queued by: The German Saint Anna🍌
    Duration: 0:01:19
  2. Darth Maul vs Qui-Gon and Obi-Wan, but every time the lightsabers clash Donald Trump says "Bing!"
    Queued by: Arrem
    Duration: 0:04:56
  3. Alex Jones: Last Week Tonight with John Oliver (HBO)
    Queued by: Arrem
    Duration: 0:22:21
  4. Turn the frickin' Frogs Gay. (Alex Jones REMIX)
    Queued by: Arrem
    Duration: 0:01:10
proud obsidian
#

qremove 3

main arrowBOT
#

Successfully removed Alex Jones: Last Week Tonight with John Oliver (HBO) from the queue.

twilit wyvern
#

play Thomas Gon' Give It To Ya

oak jackal
#

play star wars but text to voice

main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

copper cradle
#

remindme

#

HOW DOES THIS SHIT WORK

untold lily
#

remind 10s lmao

main arrowBOT
#

Gotcha @untold lily, in 10 seconds you'll be reminded about lmao.

untold lily
#

@copper cradle

main arrowBOT
#

@untold lily, 11 seconds ago you asked to be reminded about lmao.

untold lily
#

help remind

main arrowBOT
#
Page 1/1 (1 commands)
[reminder|timer|remind] <when>

Reminds you about something after a certain amount of time.
The input can be any direct date (e.g. YYYY-MM-DD) or a human
readable offset. Examples:

  • "Next monday at 3am sleep"
  • "Learn German tomorrow"
  • "In two minutes do your homework"
  • "4d play with friends"
    Times are in UTC.
reminder list

Shows the 5 latest currently running reminders.

copper cradle
#

Tyty

unkempt ermine
#

help

#

gr

main arrowBOT
#
Roles you can give yourself
  1. Level A
  2. Level B
  3. Level C
  4. Gaming
  5. Learning German
  6. Nerd
unkempt ermine
#

gr Level A

spice venture
#

gr Level A

tender trellis
#

gr Gaming

tender trellis
#

np

#

queue

main arrowBOT
#

:x: There's nothing in the queue.

karmic peak
stiff trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Dänen lügen nicht
    Queued by: Ṁäṁïṁüṡ
    Duration: 0:02:31
  2. Trude Herr - Ich bin eine Frau von Format
    Queued by: Nikki
    Duration: 0:02:33
stiff trellis
#

skip

main arrowBOT
#

Skip vote added, currently at [2/6]

stiff trellis
#

skip

main arrowBOT
#

You have already voted to skip this song.

stiff trellis
#

skip bitte

main arrowBOT
#

You have already voted to skip this song.

stiff trellis
tender trellis
#

don't skip

stiff trellis
tender trellis
#

:/

karmic peak
#

queue

main arrowBOT
#
Queued songs:
  1. Dänen lügen nicht
    Queued by: Ṁäṁïṁüṡ
    Duration: 0:02:31
  2. Trude Herr - Ich bin eine Frau von Format
    Queued by: Nikki
    Duration: 0:02:33
  3. Trude Herr - Ich will keine Schokolade 1965
    Queued by: Nikki
    Duration: 0:02:14
  4. Trude Herr - Weil ich so sexy bin
    Queued by: Nikki
    Duration: 0:02:48
tender trellis
#

play

main arrowBOT
#

❌ Bad argument: query is a required argument that is missing.

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. Python Django Crash Course
    Queued by: Ṁäṁïṁüṡ
    Duration: 1:08:10
  2. DJANGO UNCHAINED - MAIN THEME - Django
    Queued by: Ṁäṁïṁüṡ
    Duration: 0:02:54
  3. Oscar Peterson - 'Round Midnight (Thelonious Monk)
    Queued by: God-Emperor
    Duration: 0:04:13
  4. SPACE TRIP II [ Chillwave - Synthwave - Retrowave Mix ]
    Queued by: True_Aviator
    Duration: 0:45:56
main arrowBOT
#

:ping_pong: Pong! | 358.09ms

#

:ping_pong: Pong! | 179.13ms

#

:ping_pong: Pong! | 130.29ms

#

:ping_pong: Pong! | 196.48ms

#

:ping_pong: Pong! | 168.43ms

#

Looks like their API is down...

karmic peak
#

help

#

danke

main arrowBOT
#

Immer gerne, Ṁäṁïṁüṡ.

#

Immer gerne, Amin.

karmic peak
#

shootdog Amin

main arrowBOT
#

You have shot @lilac raft's dog.

tender trellis
#

@lilac raft please keep it civil

main arrowBOT
#

You have shot @tender trellis's dog.

twilit wyvern
#

t!cookie @oak jackal

upper hatchBOT
#
Cookie 🍪!

Katherine has given The German Saint Anna🍌 a cookie!
What a tough cookie!

timid cairn
#

star random

main arrowBOT
#

2 #general ID: 338821561614073857

Chuck

In Ewigkeit Arrem

timid cairn
#

star random

main arrowBOT
#

3 #general ID: 420696043093753866

🌈 Nemoses

U fok

timid cairn
#

star random

main arrowBOT
#

4 #general ID: 395623469469007903

🎇 NewYearsChuck 🎇
tender trellis
#

star random

main arrowBOT
tender trellis
#

star random

main arrowBOT
#

2 #general ID: 336277714002771988

👮🐻#arremstays #gobase

Bären> @proud obsidian > Katzen > Hunde

tender trellis
#

star random

main arrowBOT
#

2 #general ID: 414907510114353153

Collerm

arrem gay confirmed

tender trellis
#

star random

main arrowBOT
#

🌟 6 #general ID: 383362392207392769

🦊 Floop 🦊

understanded

tender trellis
#

star random

main arrowBOT
tender trellis
#

star random

main arrowBOT
#

2 #science ID: 453631179372101664

BottyMcBotface
How many reasons do you have to live?Wrong answer, retry.Can you answer this correctly, please?Okay I'll just do it for you \*gunshot\*

tender trellis
#

star random

main arrowBOT
tulip stone
#

gr gaming

brittle walrus
#

star random

main arrowBOT
#

2 #general ID: 414806779663482881

🎀 Fläppsy 🎀

HOW TO LICK YOUR SKIN BECAUSE IT'S YUMMY

brittle walrus
#

my godness

twilit wyvern
#

star random

main arrowBOT
#

3 #general ID: 392137171190153217

❄gay nerd❄

berg ist mein Lieblingsbrasilianer und ich liebe ihn und respektiere.

untold lily
#

ping

main arrowBOT
#

:ping_pong: Pong! | 156.62ms

karmic peak
#

ping

main arrowBOT
#

:ping_pong: Pong! | 133.3ms

timid cairn
#

star random

main arrowBOT
#

4 #general ID: 448269927275560960

「deleted weeb」

Also story time: this one girl got hit by a car on the way to her accounting test and her prof saw her on the way and begged her to go to the hospital but she begged him to let her take the test as her arms were still working

tender trellis
#

ping

main arrowBOT
#

:ping_pong: Pong! | 149.32ms

tender trellis
#

ping

main arrowBOT
#

:ping_pong: Pong! | 301.58ms

karmic peak
#

play green leaves of summer

#

arggg

#

why does it always choose the wrong one

tender trellis
#

queue

main arrowBOT
#
Queued songs:
  1. The Green Leaves of Summer - The Alamo Original Soundtrack by Dimitri Tiomkin
    Queued by: Mamiwoof
    Duration: 0:03:22
  2. Nick Perito - Green Leaves Of Summer
    Queued by: Mamiwoof
    Duration: 0:01:56
  3. Guns N' Roses played with guns and roses
    Queued by: Teri
    Duration: 0:02:05
karmic peak
#

skip

main arrowBOT
#

Mamiwoof#4312 has skipped the song.

tender trellis
tender trellis
#

getrole level B

glossy gazelle
#

getrole Level A

tender trellis
#

@golden cedar

#

info

main arrowBOT
#
Information about Teri
Name

Teri

Nick

🍇Teri🍇

Tag

6825

ID

396216365322731520

Joined

1 month, 26 days and 17 hours ago

Created

5 months, 17 days and 5 hours ago

Roles

Gaming, Nerd, Learning German, Level A

golden cedar
#

info

main arrowBOT
#
Information about Tartarus
Name

Tartarus

Nick

None

Tag

6996

ID

206657110245769217

Joined

8 months, 7 days and 12 hours ago

Created

1 year, 10 months and 22 days ago

Roles

Gaming, Learning German

tender trellis
#

No need for maffs

#

Bot does it for ya

golden cedar
#

hmm

karmic peak
#

info

main arrowBOT
#
Information about Mamiwoof
Name

Mamiwoof

Nick

None

Tag

4312

ID

114106479446982664

Joined

4 days, 23 hours and 17 minutes ago

Created

2 years, 7 months and 3 days ago

Roles

Native German

rare sierra
#

info

main arrowBOT
#
Information about Mightymauz
Name

Mightymauz

Nick

None

Tag

8396

ID

357913087698927617

Joined

9 months, 23 hours and 39 minutes ago

Created

9 months, 23 hours and 39 minutes ago

Roles

Gaming, Nerd, Learning German, Level B

rare sierra
#

dog

rare sierra
#

cat

main arrowBOT
rare sierra
#

dog

main arrowBOT
rare sierra
#

cat

main arrowBOT
brittle walrus
#

info

main arrowBOT
#
Information about Flappy
Name

Flappy

Nick

Flappy 🌸

Tag

3132

ID

266607756285313024

Joined

10 months, 27 days and 5 hours ago

Created

1 year, 5 months and 10 days ago

Roles

Gaming, Nerd, Learning German, Level B

tender trellis
#

dog

tender trellis
#

help

main arrowBOT
#
Page 3/13 (38 commands)
Games Commands
Support

For more help, join the official German server: https://discord.gg/german

gamble

Enter the casino and start gambling.

fish

Fish and hope for the best. Fishing costs 10€

credits [member]

Display current credit balance for a user.

transfer <to_transfer> <member>

Transfer credits to a user.

daily [member]

Get daily credits. These can be given to another user.

profile [member]

Get the profile for a member.

tender trellis
#

dog

tender trellis
#

!profile

#

profile

main arrowBOT
#

:x: Unable to fetch profile information

tender trellis
#

profile @tender trellis

main arrowBOT
#

:x: Unable to fetch profile information

tender trellis
#

... 😠

#

@tender trellis I think you mean >info

#

ahah.... probably

#

I also started with "!" command

#

info

main arrowBOT
#
Information about 🍇Chrono χ 🍇
Name

🍇Chrono χ 🍇

Nick

None

Tag

4544

ID

142760108210782208

Joined

3 months, 9 days and 1 hour ago

Created

2 years, 4 months and 16 days ago

Roles

Gaming, Learning German, Level A

tender trellis
#

seee I'm 2 years old... basically ancient

#

info

main arrowBOT
#
Information about Teri
Name

Teri

Nick

🍇Teri🍇

Tag

6825

ID

396216365322731520

Joined

1 month, 27 days and 1 hour ago

Created

5 months, 17 days and 13 hours ago

Roles

Gaming, Nerd, Learning German, Level A

tender trellis
#

I'm an infant

#

yes, hush now my child, speak no more at the grown-ups' table

#

You're a fossil

tender trellis
#

I shall take that comment and transcend it into something positive

silver mason
#

help

main arrowBOT
#
Page 6/13 (38 commands)
German Commands

Commands used by the German learning server.

Support

For more help, join the official German server: https://discord.gg/german

removerole <role>

Removes a previously assigned role.

quote <channel> <message>

Quote a message from a <channel>.

verb <verb> [lang='german']

Get the conjugation for a <verb> in <lang>.

role [role]

Assigns a role to you from a list of available roles.

silver mason
#

role

main arrowBOT
#
Roles you can give yourself
  1. Level A
  2. Level B
  3. Level C
  4. Gaming
  5. Learning German
  6. Nerd
silver mason
#

role Nerd

tender trellis
#

info

main arrowBOT
#
Information about mcicu5
Name

mcicu5

Nick

None

Tag

6042

ID

456067749706203156

Joined

11 hours, 31 minutes and 17 seconds ago

Created

3 days, 19 hours and 43 minutes ago

Roles

Gaming, Native German

tender trellis
#

New account loleyes

tender trellis
#

Oh yes mcicu bow before us 😈

karmic peak
#

Nobody should ever bow before anyone other than Lord Stannis of the House Baratheon, the first of his name

digital mirage
#

role Level C

#

role Nerd

#

role Gaming

gentle night
#

role Nerd

#

role Gaming

tender trellis
#

@karmic peak how pathetic, one shall only bow for Daenerys of the House Targaryen, the First of Her Name, The Unburnt, Queen of the Andals, the Rhoynar and the First Men, Queen of Meereen, Khaleesi of the Great Grass Sea, Protector of the Realm, Lady Regnant of the Seven Kingdoms, Breaker of Chains and Mother of Dragons

karmic peak
#

she is the khaleesi of like 5 dudes

tender trellis
#

Pftt... she is the khaleesi of everything

karmic peak
#

First, she was only the Khaleesi-consort

#

secondly, her husband is no true Khal

#

and also dead

#

Pathetic

tender trellis
#

Well so is stannis 🤔

#

So how can he be a true king 😈

karmic peak
#

Nothing against His majesty, Lord Stannis of the House Baratheon, the First of His Name, the Warrior of Light, King of the Andals and the First Men, Lord of the Seven Kingdoms, Protector of the Realm, Lord of Dragonstone, Lord of Stom's End, Lord Paramount of the Stormlands, Master of Ships and the Lord's Chosen.

#

At the point where i am watching hes still alive

#

so he is my true king

tender trellis
#

Such pitiful titles 😒

karmic peak
#

better than giving yourself made up ones

#

at least he is lord of storm's end

#

and not a fake khal

tender trellis
#

The warrior of light.... seems made up

#

Nononno

karmic peak
#

Breaker of Chains

#

pitiful

#

Mother of Dragons and cant control them for shit

tender trellis
#

why are we using #botchannel for our geek discussion 🤓

karmic peak
#

at least he actually has something mystical on his side

tender trellis
#

Actually she does break chains

karmic peak
#

so the lord's chosen is not too far fetched

tender trellis
#

She has dragons... how is that not mystical

#

Oh he ain't nobodies chosen tho

karmic peak
#

if she called herself "

#

owner of dragons or smth okay

#

but mother

#

wtf

#

she clearly has no clue how they work

#

tbh she has no clue how anything works

tender trellis
#

You just hating on my bootiful khaleesi 😤

#

Like stannis had tho

karmic peak
#

Also, if she is truly the rightful queen, she needs another title

tender trellis
#

Again I can't spoil, but he isn't an honorable man

karmic peak
#

Daenerys the Kingslayer

tender trellis
#

She isn't the rightful queen

#

Somebody else is 😝

karmic peak
#

She was implicit in the killing of her brother

#

I bet its that Blacksmith

#

theyve been building up that guy for ages

tender trellis
#

The brother wasn't the rightful heir either

karmic peak
#

yeah but if she is, he was aswell

tender trellis
#

No spoilers from me 🙄

karmic peak
#

if that brat werent a beauty, she would have never made it

#

Incompetent to her core

#

She is neither rightful nor capable

tender trellis
#

I mean in a world of an aristocratic society nobody is really that competent

karmic peak
#

Well some more than other

tender trellis
#

And that some is khaleesi

karmic peak
#

that really is stupid

#

she is khaleesi of nothing

tender trellis
#

Arghhh im not saying anything 😶

karmic peak
#

i bet underlings of the neighbourings khals have more men under their comman than she

#

again from season 5 POV

tender trellis
#

Didn't she unify all of the tribes

#

Pov?

karmic peak
#

nah she tumbled around in the desert until she found that strange city

#

point of view

tender trellis
#

I don't remember that

karmic peak
#

with the wealthy black guy

#

then she came to the slave city where she finally got some men

tender trellis
#

Oh yes, the unsullied

karmic peak
#

who are not dothraki

tender trellis
#

She broke their chains thus"breaker of chains"

karmic peak
#

she only has a very tiny amount of actual dothraki ledt

#

i dunno, they still seem to work for someone

tender trellis
#

May be I can't remember that far back

karmic peak
#

just someone else

#

"free men" my ass

tender trellis
#

With her allies she doesn't need em tho

karmic peak
#

she profits from the work of the slavers

tender trellis
#

She doesn't have slaves

karmic peak
#

she has

#

she just doesnt call them that

tender trellis
#

Lol

karmic peak
#

these ppl were trained to obey

#

of course they arent going to leave her

tender trellis
#

Okay that is the wackist definition

karmic peak
#

even if she calls them free men

tender trellis
#

Everybody can be a slave

#

The socialist would argue for a worker to be a slave

karmic peak
#

if i totally brainwash you to obey your master

#

and someone else comes along and profits from that

tender trellis
#

You are kinda making up your own definitions now

karmic peak
#

hes not really better in any way

tender trellis
#

No cuz they were free to go

#

They didn't have to stay

karmic peak
#

they might not be slaves per se but if they had grown up normally, they wouldnt have followed her

tender trellis
#

By all means you are a slave to the system

#

Omg

#

That is internalized norms

karmic peak
#

It was amoral of her to allow the unsullied to join her

tender trellis
#

Wtf

#

Okay nope

#

That doesnt make sense

karmic peak
#

Lets frame it this way

tender trellis
#

Well you seem to frame it as you please tho, by that definition even the soldiers of stannis are slaves?-

karmic peak
#

If i trained my child to always slap itself when it makes a mistake, and after a while you "freed" it from me, but did nothing to stop the child from still slapping itself every time it makes a mistake youre not much better

#

the child doesnt know any better and youre not helping

tender trellis
#

They are brought up by nobility to follow norms where men are brought to fight

#

Yes... internalized norms, everyone is a victim of that, every house does that

karmic peak
#

Well stannis doesnt call himself breaker of chains does he?

tender trellis
#

What does that have to do with what you said

#

Noop

#

Awwww

karmic peak
#

The Unsullied are victims of their education, more so than any other group of soldiers

tender trellis
#

Every house uses internalized norms to socially control people to fight for them

#

The common people and nobility are victims of the.houses

#

That is given in a feudalism

karmic peak
#

Also the way these unsullied were trained is far worse than any other

tender trellis
#

Everyone is a victim by your definition tho?

karmic peak
#

and yet she is still reaping the benefit from that

tender trellis
#

Well that doesn't change what you said

#

The severity of their training doesnt define if they are under social control

karmic peak
#

I think there is a vast difference in scale between chosing to be a soldier because of norms, or being harshly trained to be one and then not knowing any better

tender trellis
#

You don't choose

#

Lol

karmic peak
#

Either way, her act of "Letting them go" is meaningless

tender trellis
#

You can't say as nobility, I don't want to, you are honor bound to.your house

karmic peak
#

she knew beforehand that she would keep most if not all of her army

tender trellis
#

No she did not

#

She presented a choice

karmic peak
#

which, unsurprisingly, noone took

tender trellis
#

gotta go to work-

#

Ofc how do you behave as a slave, if you've been under control all life, when suddenly given the freedom

karmic peak
#

yes, it is clear

#

that is my point

#

she knew these people were trained to obey

#

she knew they werent ready for freedom

#

but instead of preparing them for it, she gave them a choice that wasnt one

#

I am not saying that makes her worse than others, i think its pretty standart

#

but what she did definitely wasnt heroic

#

it was her way of obtaining her first real army

ruby gale
#

(╯°□°)╯︵ ┻━┻

rare sierra
#

dog

rare sierra
#

cat

main arrowBOT
#

Looks like their API is down...

rare sierra
#

cat

main arrowBOT
#

Looks like their API is down...

rare sierra
#

dog

rare sierra
#

Rip cats 🐱

#

cat

main arrowBOT
#

Looks like their API is down...

rare sierra
#

@proud obsidian - you messing with the bot or something wrong?

proud obsidian
#

I like how I'm being blamed.

#

No as the bot says, their shitty site is down.

rare sierra
#

Ah ok. Didn’t know who to ping or who was responsible. Thanks

#

No blaming was intended

proud obsidian
#

Yw. 👌

tender trellis
#

I had to implement that response because their memey cat site tends to be down quite often

rare sierra
#

cat

main arrowBOT
rare sierra
#

Purrfect now 😃

brittle walrus
#

cat

surreal fable
tepid saffron
#

getrole Level A

twilit wyvern
#

t!cookie @oak jackal

upper hatchBOT
#
Cookie 🍪!

Katherine has given The German Saint Anna🍌 a cookie!
That's how the cookie crumbles!

oak jackal
#

remind list

main arrowBOT
#
Reminders
In 52 minutes and 44 seconds

change insulin

In 8 days, 21 hours and 42 minutes

you die yet?

oak jackal
#

reminder list

main arrowBOT
#
Reminders
In 50 minutes and 44 seconds

change insulin

In 8 days, 21 hours and 40 minutes

you die yet?

oak jackal
#

remind list

main arrowBOT
#
Reminders
In 46 minutes and 18 seconds

change insulin

In 8 days, 21 hours and 36 minutes

you die yet?

worthy basalt
#

getrole Level A

stiff iris
#

lookup en de cheater

main arrowBOT
#

cheater is not a supported language. Use dict info.

stiff iris
#

dict info

main arrowBOT
#

These languages are supported:

  • english
  • german
  • french
  • swedish
  • spanish
  • bulgarian
  • romanian
  • italian
  • portuguese
  • russian
  • icelandic
  • hungarian
  • latin
  • dutch
  • slovakian
  • croatian
  • norwegian
  • czech
  • finnish
  • turkish
  • danish
  • polish
  • greek
  • serbian
  • esperanto
stiff iris
#

lookup english german cheater

main arrowBOT
#

german is not a supported language. Use dict info.

stiff iris
#

ah yes not a translater

#

ugh

#

help I'm dumb

tender trellis
#

getrole Level A

severe rune
#

getrole Level B

main arrowBOT
#

:heavy_check_mark: I replaced your old CEFR role with Level B.

tender trellis
#

rep teri

main arrowBOT
#

❌ Bad argument: Member "teri" not found

#

:information_source: | Please wait 23 hours, 59 minutes, and 55 seconds before awarding more reputation points.

tender trellis
#

BULL SHIT

#

What is dis O.o

tender trellis
#

removerole nerd

#

It is "reputation points" it is the Bot's version of givin facebook likes ^_^

#

profile

main arrowBOT
#

:x: Unable to fetch profile information

tender trellis
#

profile @tender trellis

main arrowBOT
#

:x: Unable to fetch profile information

tender trellis
#

help

main arrowBOT
#
Page 10/13 (38 commands)
Reminder Commands

Reminders to do something.

Support

For more help, join the official German server: https://discord.gg/german

reminder <when>

Reminds you about something after a certain amount of time.

tender trellis
#

I don't think the "reputation" works anymore, since they removed the original tatsumaki robot... 🤷

tender trellis
#

The tatsu bot is still here

untold lily
#

group help

main arrowBOT
#

❌ Bad argument: Group "help" not found.

untold lily
#

help group

main arrowBOT
#
Page 1/3 (11 commands)
[group|subscribe|sub] [group]

Join a group or show a list of available groups in this server.

group assign <group> [members...]

Assign member to a group.

group end [group]

End a group meeting.

group joinall

Join all available groups at once.

group leave <group>

Leave an existing group.

toxic zenith
#

group

main arrowBOT
#
These groups are currently accessible
  1. Reading
  2. Sciencepractice
  3. Speakinglads
  4. Python
toxic zenith
#

subscribe python

main arrowBOT
#

:white_check_mark: Alright, I added you to Python.

tender trellis
#

play

main arrowBOT
#

❌ Bad argument: query is a required argument that is missing.

tender trellis
main arrowBOT
#

:x: At least two members are needed before I start playing music.

tender trellis
old slate
#

vol 50

main arrowBOT
#

Changed player volume to: 50%

old slate
#

queue

main arrowBOT
#

:x: There's nothing in the queue.

old slate
#

vol 100

main arrowBOT
#

Changed player volume to: 100%

#

I have been inactive for 5 minutes. Goodbye!

lament flume
#

roll 1d20 +5

#

help

main arrowBOT
#
Page 1/13 (38 commands)
DictCC Commands
Support

For more help, join the official German server: https://discord.gg/german

lookup <word> <lang_in> <lang_out>

Allows you to look up words you don't know.

rare sierra
#

sub SoccerWM

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

gaunt lily
#

getrole Level A

rare sierra
#

help group

main arrowBOT
#
Page 3/3 (11 commands)
[group|subscribe|sub] [group]

Join a group or show a list of available groups in this server.

group start <group>

Start a group meeting.

group subbed

List all groups that you've joined.

group topic [topic]

Edit the topic/short description of this group.

rare sierra
#

group moderators SoccerWM

main arrowBOT
#
Showing 1 moderator for group Soccerwm:
  1. @proud obsidian
rare sierra
#

group list SoccerWM

main arrowBOT
#
Showing 2 members for group Soccerwm:
  1. @proud obsidian
  2. @rare sierra
rare sierra
#

group ping SoccerWM Hello

main arrowBOT
#

:x: You are not a moderator for this group.

proud obsidian
#

group promote soccerwm 357913087698927617

main arrowBOT
#

:white_check_mark: Member Mightymauz (357913087698927617) was added as moderator for Soccerwm.

rare sierra
#

group start SoccerWM

main arrowBOT
#

:white_check_mark: Successfully created channel #458377037199966229.
You can end a session by typing >group end Soccerwm.

timid cairn
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

desert mural
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

left cliff
#

sub soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

toxic zenith
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

sub Soccerwm

main arrowBOT
#

:x: You're already in this group.

tender trellis
#

sub Soccerwm

main arrowBOT
#

:x: You're already in this group.

stark condor
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

toxic zenith
#

sub Soccerwm

main arrowBOT
#

:x: You're already in this group.

toxic zenith
#

Oh

pulsar mist
#

sub Soccerwem

main arrowBOT
#

❌ Bad argument: Group "Soccerwem" not found.

pulsar mist
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

wem

#

sub Soccerwm

pulsar mist
#

true german

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

oak jackal
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

meager finch
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

raven ginkgo
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

raven ginkgo
#

subscribe Sciencepractice

main arrowBOT
#

:white_check_mark: Alright, I added you to Sciencepractice.

raven ginkgo
#

help invite

main arrowBOT
#

Command or category "invite" not found.

raven ginkgo
#

help join

main arrowBOT
#

:x: This is a mod-command.

raven ginkgo
#

@tender trellis hey how can i add this bot on a server ?

tender trellis
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

tender trellis
#

sub science

main arrowBOT
#

❌ Bad argument: Group "science" not found.

tender trellis
#

sub sciencepractise

main arrowBOT
#

❌ Bad argument: Group "sciencepractise" not found.

tender trellis
#

re

raven ginkgo
#

S*

tender trellis
#

sub Sciencepractice

main arrowBOT
#

:white_check_mark: Alright, I added you to Sciencepractice.

low maple
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

#

:white_check_mark: Alright, I added you to Sciencepractice.

tender trellis
#

@raven ginkgo The bot is private

old slate
#

vol

main arrowBOT
#

Current player volume: 10%

old slate
#

vol 100

main arrowBOT
#

Changed player volume to: 100%

tender trellis
#

sub Soccerwm

#

hmmm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

lament flume
#

sub soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

severe rune
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

severe rune
#

sub soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

sub gaming

main arrowBOT
#

❌ Bad argument: Group "gaming" not found.

tender trellis
#

hmm

#

help

main arrowBOT
#
Page 1/13 (38 commands)
DictCC Commands
Support

For more help, join the official German server: https://discord.gg/german

lookup <word> <lang_in> <lang_out>

Allows you to look up words you don't know.

rare sierra
#

>gr gaming

tender trellis
#

gr gaming

#

thx

rare sierra
#

np

uneven meadow
#

info

main arrowBOT
#
Information about Thihihihihi
Name

Thihihihihi

Nick

🐰 chorker torndy 🌍

Tag

6410

ID

184787349132148736

Joined

1 year, 7 months and 30 days ago

Created

2 years, 25 days and 15 hours ago

Roles

Gaming, Nerd, Native German

uneven meadow
#

rep

main arrowBOT
#

❌ Bad argument: member is a required argument that is missing.

uneven meadow
#

help rep

main arrowBOT
#
[rep|reputation] <member>

Award a member with a reputation point

uneven meadow
#

ranking

#

huh wait 🤔

tender trellis
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

tender trellis
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

uneven meadow
#

help

main arrowBOT
#
Page 13/13 (38 commands)
Stats Commands
Support

For more help, join the official German server: https://discord.gg/german

about

Display information about the bot.

info [member]

Display information about a server member.

server

Display information about the server.

uptime

Tells you how long the bot has been up for.

uneven meadow
#

showrep

main arrowBOT
#

@uneven meadow, you have 17 reputation so far. Thank you for being a helping hand in our community! :heart:

uneven meadow
#

leaderboard

main arrowBOT
#
Leaderboard

The top 3 users with the highest reputation

🥇 @proud obsidian (354 reps)

🥈 @timid cairn (345 reps)

🥉 @slim heath (55 reps)

toxic zenith
proud obsidian
#

Looks fine to me.

#

Might be your Discord memeing up.

untold lily
#

evalin ```py
return ' '.join(' '.join(''.join('-' if len(sign) == 3min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999) else '.' for sign in char.split('0'min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))) for char in word.split('0'(3min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))) for word in bits.strip('0').split('0'(7min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))))

main arrowBOT
#
  File "/tmp/execpad-46ca6dce70b6/source-46ca6dce70b6", line 1
    return '   '.join(' '.join(''.join('-' if len(sign) == 3*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999) else '.' for sign in char.split('0'*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))) for char in word.split('0'*(3*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))) for word in bits.strip('0').split('0'*(7*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))))
    ^
IndentationError: unexpected indent

untold lily
#

🤔

#

Oh wait

#

Did I just straight up copy that

#

evalin ```py
print(' '.join(' '.join(''.join('-' if len(sign) == 3min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999) else '.' for sign in char.split('0'min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))) for char in word.split('0'(3min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))) for word in bits.strip('0').split('0'(7min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))))

main arrowBOT
#
Traceback (most recent call last):
  File "/tmp/execpad-c9c17bed6da1/source-c9c17bed6da1", line 1, in <module>
    print('   '.join(' '.join(''.join('-' if len(sign) == 3*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999) else '.' for sign in char.split('0'*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999))) for char in word.split('0'*(3*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))) for word in bits.strip('0').split('0'*(7*min(len(list(sorted(set(filter(len, bits.strip('0').split('0')))))[0]), len(list(sorted(set(filter(len, bits.strip('0').split('1')))))[0]) if list(sorted(set(filter(len, bits.strip('0').split('1'))))) else 999)))))
NameError: name 'bits' is not defined

untold lily
#

frikken arrem

proud obsidian
#

It's a code snippet. It was never meant to work on its own.

#

As you might have noticed by the return you found in it.

uncut igloo
#

#g-soccerwm

proud obsidian
#

Not quite.

uncut igloo
#

gr #g-soccerwm

main arrowBOT
#

❌ Bad argument: Role "#g-soccerwm" not found.

proud obsidian
#

.>sub soccerwm

uncut igloo
#

sub soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

uncut igloo
#

wow how did i not get that wm stood for weltmeisterschaft

toxic zenith
#

Lol

limber flicker
#

sub soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

untold lily
#

sub Soccerwm

main arrowBOT
#

:white_check_mark: Alright, I added you to Soccerwm.

worthy copper
#

bot

main arrowBOT
#
0x1#0001
Python version

3.6.3

Hostname

do-germanserv

discord.py version

1.0.0a

worthy copper
#

commands

#

ban

main arrowBOT
#

I'm not sure if you want this... :eyes:

worthy copper
#

ban yourself

main arrowBOT
#

Alright, but this is an exception, okay?

worthy copper
#

ban BottyMcBotface

main arrowBOT
#

Alright, but this is an exception, okay?

worthy copper
#

ban us

main arrowBOT
#

Nah.

worthy copper
#

help list

main arrowBOT
#

Command or category "list" not found.

worthy copper
#

list

#

help all

main arrowBOT
#

Command or category "all" not found.

worthy copper
#

help commands

main arrowBOT
#

Command or category "commands" not found.

worthy copper
#

help help

main arrowBOT
#
help [command]

Shows help about a command or the bot

worthy copper
#

show

#

command

#

List

#

word

#

word bot

#

help

main arrowBOT
#
Page 1/13 (38 commands)
DictCC Commands
Support

For more help, join the official German server: https://discord.gg/german

lookup <word> <lang_in> <lang_out>

Allows you to look up words you don't know.

worthy copper
#

help

main arrowBOT
#
Page 8/13 (38 commands)
Music Commands
Support

For more help, join the official German server: https://discord.gg/german

play <query>

Add a song to the queue.

skip

Skip the current song.

current

Return information about the current song.

upnext

Show the queue.

worthy copper
#

help EmojiCommands

main arrowBOT
#

Command or category "EmojiCommands" not found.

worthy copper
#

help Emoji Commands

main arrowBOT
#

Command or category "Emoji Commands" not found.

worthy copper
#

shootdog arrem

main arrowBOT
#

❌ Bad argument: Member "arrem" not found

worthy copper
#

shootdog ares

main arrowBOT
#

❌ Bad argument: Member "ares" not found

worthy copper
#

shootdog andwlite#1024

main arrowBOT
#

You have shot @light grove's dog.

worthy copper
#

play sandstorm

main arrowBOT
#

No channel to join. Please either specify a valid channel or join one.

worthy copper
#

play gus dapperton prune I think you talk funnz

frank lichen
#

gr Nerd

#

re Learning German

#

rr Learning German

#

gr Level B

fiery dune
#

fertile Level C

#

Reee

#

getrole Level C

proper ibex
#

getrole Gaming

#

getrole Nerd

iron sorrel
#

removerole Learning German

untold lily
#

star random

main arrowBOT
#

2 #260865272292835329 ID: 399897127700135956

🎇 [əʊ.ɛksːˈwʌn]

:googlemuscleL: :ablobshake: :googlemuscleR:

untold lily
#

star random

main arrowBOT
#

4 #general ID: 417770427818180613

🐶 Arrememe ❤ !(Algesis)

kauummi

lucid gulch
#

groups

#

group

main arrowBOT
#
These groups are currently accessible
  1. Reading
  2. Sciencepractice
  3. Soccerwm
  4. Speakinglads
  5. Python
lucid gulch
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

true shadow
#

getrole Level B1

main arrowBOT
#

❌ Bad argument: Role "Level B1" not found.

true shadow
#

getrole Level B

rare sierra
#

dog

#

cat

sour prism
#

getrole nerd

broken plank
#

level B

#

getrole B

main arrowBOT
#

❌ Bad argument: Role "B" not found.

broken plank
#

getrole Level B

uneven meadow
#

OOOOOOOOHHH NICE

#

@proud obsidian

proud obsidian
#

dooo it in generallalallll

uneven meadow
#

It's a bit unreadable

tender trellis
#

Is this 16x16

uneven meadow
#

16x16?

untold lily
#

star random

main arrowBOT
#

🌟 7 #general ID: 320895207308656650

brzrkr 🐾

Honestly parrots by themselves are bland af unless they're cooked in the oven or fried

untold lily
#

star random

main arrowBOT
#

3 #general ID: 419650849392951309

Dr. Best Flöpsel 🏥

though drawings keep being more realistic mmlol

untold lily
#

star random

main arrowBOT
#

4 #general ID: 442330163116507136

ChronoX

Er ist aus-stralia

untold lily
#

star random

main arrowBOT
#

🌟 5 #437361640669839385 ID: 437377496824938499

Картошка (Lutschi Kartoffel)
untold lily
#

star random

main arrowBOT
#

3 #voice-chat ID: 316281467141619713

uke22
untold lily
#

star random

main arrowBOT
#

2 #voice-chat ID: 375744151960027146

Berg but scared of admissiontest

DE TING GOES SESKKKKKAA

rare sierra
#

play the greatest song in the world

main arrowBOT
#

I have been inactive for 5 minutes. Goodbye!

vocal granite
#

gr Level B

main arrowBOT
#

:heavy_check_mark: I replaced your old CEFR role with Level B.

brittle walrus
#

star random

main arrowBOT
#

5 #general ID: 377812811268489222

🦊 Floopser 🦊

What does that mean? Like a pillow battle but with pants? 🤔

brittle walrus
#

oh

#

my

#

why

thin iris
#

sub

main arrowBOT
#
These groups are currently accessible
  1. Sciencepractice
  2. Speakinglads
  3. Reading
  4. Python
  5. Soccerwm
thin iris
#

1

#

sub sciencepractice

main arrowBOT
#

:white_check_mark: Alright, I added you to Sciencepractice.

thin iris
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

thin iris
#

sub speakinglads

main arrowBOT
#

:white_check_mark: Alright, I added you to Speakinglads.

limber flicker
#

sub reading

main arrowBOT
#

:white_check_mark: Alright, I added you to Reading.

tender trellis
#

sub reading

main arrowBOT
#

:x: You're already in this group.

tender trellis
#

O.o

thin iris
#

gr nerd

#

gr gaming

surreal fable
#

play can can offenbach

tender trellis
sour prism
#

play and the day goes on

#

rip

mental monolith
#

play beethoven's fifth symphony

#

Y'all can skip the rest of the symphony if you'd like, it's like an hour long.

#

40 minutes almost