Added fumo functionality. Far less jank then in Thembot.
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 356 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1010 KiB |
After Width: | Height: | Size: 625 KiB |
After Width: | Height: | Size: 6.2 MiB |
After Width: | Height: | Size: 1.7 MiB |
After Width: | Height: | Size: 2.5 MiB |
After Width: | Height: | Size: 3.5 MiB |
After Width: | Height: | Size: 1.4 MiB |
@ -0,0 +1,20 @@
|
||||
def fumo_main(event)
|
||||
fumoFolder = "./modules/fumo/fumoPics"
|
||||
if directory_exists?(fumoFolder)
|
||||
fumoArray = Dir.entries(fumoFolder).select { |f| File.file? File.join(fumoFolder, f) }
|
||||
x = fumoArray.length
|
||||
rng = rand x
|
||||
fumoFile = "#{fumoFolder}/#{fumoArray[rng]}"
|
||||
$bot.send_file(event.message.channel, File.open(fumoFile, 'r'))
|
||||
else
|
||||
event.respond "No fumo folder found. Please fix that."
|
||||
end
|
||||
end
|
||||
|
||||
def fumo_getCommand()
|
||||
return ["fumo", "fumo_main"]
|
||||
end
|
||||
|
||||
def directory_exists?(directory)
|
||||
File.directory?(directory)
|
||||
end
|