Advertisement
Guest User

noodle's code

a guest
Mar 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. import discord
  2. from discord.ext import commands
  3. import asyncio
  4. import random
  5.  
  6. nood1 = ['https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTk9a4XOHJ7E0K9Fba4oEEzckkI4hwSuvD0nDvRhl05uMhhnbzH','http://images2.fanpop.com/image/polls/388000/388039_1267362777665_full.jpg?v=1267362985', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2TWddWoUFW3BOjaGowPGdSgDX8RJX-rRiEVbjU-HcmZAAvsxi']
  7. nood2 = ['https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSY9nE4v_Dpwn9NOHQ3GifJRm5SSe-vufebvZzMHQTynXplMDfi','https://img00.deviantart.net/d188/i/2013/085/5/9/noodle_phase_2_by_shinohida-d5zels1.jpg','https://78.media.tumblr.com/094859e256b2fc90201f2dd8e72fb316/tumblr_nqf6uy3P461tmbwswo2_500.jpg']
  8. nood3 = ['https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSSH60pVu9WQCAQ5t_8Dtt1sJI2A9OAwLJgXs2LQrM5eGpZAfbdzw', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQii3NTJMgs8WXnE00HmNlUPbt8nSqOU76BMht9ROyDXbOr2Vry', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ240Et9h5c_HffzlznHXn8D-gaZzEHNoIEiowhOBQW5TLl4Rd3MA']
  9. nood4 = ['https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQnLV0u0DBTfoQfcDOy8LieSzC3znZz14unCyhbCk97lo2IRkt7', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhNj-bIesrBmaD3DgL9qpbtrdJmrjd7vLCw1ObMmmd2e4pfSwW', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRW-PHPki9oaMo7WEKfJtzQ0X5s0ehhFilu0l_JtDm0snFxpI2_w', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRS1TQ1QurTGxK5hvREhgm8gjoMBvXou2Rvu9zPXwQqj3vxFaXG']
  10.  
  11.  
  12. bot = commands.Bot ("!!")
  13.  
  14. @bot.event
  15. async def on_ready():
  16. print ("bot ready!")
  17.  
  18. @bot.command(pass_context=True)
  19. async def lemmesmashpleasektx(ctx):
  20. await bot.say ("kk np mate")
  21.  
  22. @bot.command(pass_context=True)
  23. async def ily(ctx):
  24. await bot.say ("<3")
  25.  
  26. @bot.command(pass_context=True)
  27. async def drink(ctx):
  28. await bot.say ("uve been blesst :eye: :lips: :eye:")
  29.  
  30. @bot.command(pass_context=True)
  31. async def p4noodle(ctx):
  32. await bot.say (random.choice(nood4))
  33.  
  34. @bot.command(pass_context=True)
  35. async def p1noodle(ctx):
  36. await bot.say(random.choice(nood1))
  37.  
  38. @bot.command(pass_context=True)
  39. async def p2noodle(ctx):
  40. await bot.say (random.choice(nood2))
  41.  
  42. @bot.command(pass_context=True)
  43. async def creep(ctx):
  44. await bot.say ("https://cdn.discordapp.com/attachments/410957952514654230/425731357793189889/DYv9-daWkAEmRyN.png")
  45.  
  46. @bot.command(pass_context=True)
  47. async def p3noodle(ctx):
  48. await bot.say (random.choice(nood3))
  49.  
  50. @bot.command(pass_context=True)
  51. async def noodlewiki(ctx):
  52. await bot.say ("http://gorillaz.wikia.com/wiki/Noodle")
  53.  
  54. @bot.command(pass_context=True)
  55. async def kyuzo(ctx):
  56. await bot.say ("https://vignette.wikia.nocookie.net/kong/images/d/dc/Noodleosakapl5eq2.png/revision/latest/scale-to-width-down/200?cb=20100608213320")
  57.  
  58. @bot.command(pass_context=True)
  59. async def mike(ctx):
  60. await bot.say ("http://gorillaz.wikia.com/wiki/Mike_the_Monkey")
  61.  
  62. @bot.command(pass_context=True)
  63. async def spacemonkay(ctx):
  64. await bot.say ("https://pre00.deviantart.net/49f4/th/pre/i/2018/079/3/5/monayxnoods_by_spiral05-dc6gpe3.png")
  65.  
  66. @bot.command(pass_context=True)
  67. async def wannagoout(ctx):
  68. await bot.say ("uhhhhh if you're drink :wink:")
  69.  
  70. @bot.command(pass_context=True)
  71. async def petergriffin(ctx):
  72. await bot.say ("how dare you do that binsh")
  73.  
  74. @bot.command(pass_context=True)
  75. async def kill(ctx):
  76. await bot.say (":gun: to my head? right now?")
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84. bot.run ("the bot's key goes here. I can't tell you mine.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement