Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- discord hook : https://github.com/Wendelstein7/DiscordHook-CC
- local DiscordHook = require("DiscordHook")
- local success, hook = DiscordHook.createWebhook("https://discord.com/api/webhooks/")
- if not success then
- error("Webhook connection failed! Reason: " .. hook)
- end
- local fish = true
- while true do
- if redstone.getInput("left") then
- if fish == true then
- hook.send("<@&1110727813654401134> you need to mend your fishing rods", "Fish Bot 2000", "https://cdn.discordapp.com/attachments/359389959850819606/1110725486457405530/2Q.png")
- fish = false
- end
- sleep(10)
- else
- fish = true
- sleep(10)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement