Git Product home page Git Product logo

bernkebotv2's Introduction

Brad Whitesell ๐Ÿ‘จโ€๐Ÿ’ป

Twitter

bernkebotv2's People

Contributors

atomicw0mbat avatar echofrost avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

bernkebotv2's Issues

!thisi

Posts the text string "This, but ironically" Similar to !thisu command
๐Ÿ˜Ž

   elif message.content.startswith('!thisi'):
        msg = 'This, but ironically'.format(message)
        yield from channel.send(msg)

Add !child command

Posts the text "Did a child write this?"
๐Ÿง’

    elif message.content.startswith('!child'):
        msg = 'Did a child write this?'.format(message)
        yield from channel.send(msg)

Add !iconic command

Should embed the following image:
https://i.imgur.com/k7FjY1m.jpg

๐Ÿ‘ด๐Ÿ“ˆ

    elif message.content.startswith('!iconic'):
        msg = discord.Embed()
        msg.set_image(url="https://i.imgur.com/k7FjY1m.jpg")
        yield from channel.send(embed=msg)

Add 'ethereum' message parsing

Should include a message with the following:

ethereum. lmao nice meme

๐Ÿ’ฒ

 elif 'ethereum' in message.content.lower():
        msg = '>ethereum. lmao nice meme'.format(message)
        yield from channel.send(msg)

!takerate

Need to implement a random integer and concatenate it with two strings before sneind a message
๐ŸŽฒ

r = random.SystemRandom()
    elif message.content.startswith('!takerate'):
        rate = 'Q' + str(r.randint(1,4)) + ' Take'
        msg = rate.format(message)
        yield from channel.send(msg)

Add !everyone command

Command pings everyone and says "lmao" without quotes
๐Ÿคฃ

    if message.content.startswith('!everyone'):
        msg = '@everyone lmao'.format(message)
        yield from channel.send(msg)

Add !model command

Displays the text string "What's your model?" in reference to a theoretical or mathematical model of a claim
๐Ÿ“Š

elif message.content.startswith('!model'):
        msg = "What's your model?".format(message)

Add !balls command

Should include a message with the following:
Do it no balls

โšพ

    elif message.content.startswith('!balls'):
        msg = 'Do it no balls'.format(message)
        yield from channel.send(msg)

Add !GOD command

Should embed the following image:
https://i.imgur.com/VKqSxBH.jpg

โ›…

    elif message.content.startswith('!GOD'):
        msg = discord.Embed()
        msg.set_image(url="https://i.imgur.com/VKqSxBH.jpg")
        yield from channel.send(embed=msg)

Add !git command

Should include a message or a code embed with the following:
git commit -m "no need for pull request already reviewed changes dw"
git push origin master

๐Ÿ‘ฉโ€๐Ÿ’ป

    elif message.content.startswith('!git'):
        msg = 'git commit -m "no need for pull request already reviewed changes dw"\ngit push origin master'
        yield from channel.send(msg)

Add !takematrix command

This command is a simple text command that documents the meanings of the different matrix quadrants

elif message.content.startswith('!takematrix'):
        msg = 'Q1 = Hot and Right, Q2 = Hot and Wrong, Q3 = Cold and Wrong, Q4 = Cold and Right'.format(message)
        yield from channel.send(msg)

Add !thisu command

Posts the text string "This, but unironically" Similar to !thisi command
๐Ÿ˜ณ

    elif message.content.startswith('!thisu'):
        msg = 'This, but unironically'.format(message)
        yield from channel.send(msg)

Add !dumbdumb command

Should include a message or embed for the following:
lol ur big dumb

๐Ÿคค

    elif message.content.startswith('!dumbdumb'):
        msg = 'lol ur big dumb'.format(message)
        yield from channel.send(embed=msg)

Add !trailer command

Should include a message or a link embed with the following:
https://youtu.be/z7-LxU4SqCw

๐Ÿฑโ€๐Ÿ’ป

    elif message.content.startswith('!trailer'):
        msg = 'https://youtu.be/z7-LxU4SqCw'.format(message)
        yield from channel.send(msg)

Add 'bitcoin' message parsing

Should include a message with the following:
>bitcoin. lmao nice meme

๐Ÿ‘›

    elif 'bitcoin' in message.content.lower():
        msg = '>bitcoin. lmao nice meme'.format(message)
        yield from channel.send(msg)

Add !god command

Should embed the following image:
https://i.imgur.com/pZi485H.jpg

โ›…

    elif message.content.startswith('!god'):
        msg = discord.Embed()
        msg.set_image(url="https://i.imgur.com/pZi485H.jpg")
        yield from channel.send(embed=msg)

Add !specifictakerate command

This should print a tuple of two integers whose values are randomly generated from the range -999999999 to 999999999 followed by the message 'Use !takerate for a more general take'.

๐Ÿ”ข

    elif message.content.startswith('!specifictakerate'):
        msg = '(' + str(r.randint(-999999999,999999999)) + ', ' + str(r.randint(-999999999,999999999)) + ') Use !takerate for a more general take'.format(message)
        yield from channel.send(msg)

Add !failure command

Should include a message that mentions the command user and adds the following text:
' is a market failure'

๐Ÿ’น

    elif message.content.startswith('!failure'):
        msg = '{0.author.mention} is a market failure'.format(message)
        yield from channel.send(msg)

Implement rat reaccs

Current data model assumes memorial breakfast, need to reimplement in a way that fits new server architecture. This will require a design meeting discussion.

    # Rat react any posts in the rat zone channel
    if str(message.channel) == "rat-zone-memorial-breakfast":
        yield from client.add_reaction(message, "\U0001F400")

We also need to upgrade the original rat reacc in legacy code to new version of discord.py

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.