]> git.lizzy.rs Git - furrybot.git/blob - bot.lua
Add kill and die commands
[furrybot.git] / bot.lua
1 furrybot.commands = {}
2 furrybot.requests = {}
3 furrybot.unsafe_commands = {}
4
5 local http, env, storage
6 local C = minetest.get_color_escape_sequence
7
8 furrybot.colors = {
9         ping = C("#00DCFF"),
10         system = C("#FFFA00"),
11         error = C("#D70029"),
12         detail = C("#FF6683"),
13         rpg = C("#FFD94E"),
14         braces = C("#FFFAC0"),
15         info = C("#00FFC3"),
16         fun = C("#A0FF24"),
17         random = C("#A300BE"),
18         money = C("#A11600"),
19 }
20
21 -- helper functions
22
23 function furrybot.send(msg, color)
24         minetest.send_chat_message("/me " .. furrybot.colors.braces .. "[" .. color .. msg .. furrybot.colors.braces .. "]")
25 end
26
27 function furrybot.ping(player, color)
28         return furrybot.colors.ping .. "@" .. player .. color
29 end
30
31 function furrybot.ping_message(player, message, color)
32         furrybot.send(furrybot.ping(player, color) .. ": " .. message, "")
33 end
34
35 function furrybot.error_message(player, error, detail)
36         furrybot.ping_message(player, error .. (detail and furrybot.colors.detail .. " '" .. detail .. "'" .. furrybot.colors.error or "") .. ".", furrybot.colors.error)
37 end
38
39 function furrybot.parse_message(player, message, discord)
40         if message:find("!") == 1 then
41                 local args = message:sub(2, #message):split(" ")
42                 local cmd = table.remove(args, 1)
43                 local func = furrybot.commands[cmd]
44                 if func then
45                         if furrybot.unsafe_commands[cmd] and discord then
46                                 furrybot.error_message(player, "Sorry, you cannot run this command from discord", cmd)
47                         else
48                                 func(player, unpack(args))
49                         end
50                 else
51                         furrybot.error_message(player, "Invalid command", cmd)
52                 end
53         end
54 end
55
56 function furrybot.reload()
57         local func, err = env.loadfile("clientmods/furrybot/bot.lua")
58         if func then
59                 local old_fb = table.copy(furrybot)
60                 local status, init = pcall(func)
61                 if status then
62                         init(http, env, storage)
63                 else
64                         furrybot = old_fb
65                         return false, furrybot.colors.error .. "Error: " .. furrybot.colors.detail .. init
66                 end
67         else
68                 return false, furrybot.colors.error .. "Syntax error: " .. furrybot.colors.detail .. err
69         end
70 end
71
72 function furrybot.player_online(name)
73         for _, n in ipairs(minetest.get_player_names()) do
74                 if name == n then
75                         return true
76                 end
77         end
78 end
79
80 function furrybot.online_or_error(name, other, allow_self)
81         if not other then
82                 furrybot.error_message(name, "You need to specify a player")
83         elseif name == other and not allow_self then
84                 furrybot.error_message(name, "You need to specify a different player than yourself")
85         elseif furrybot.player_online(other) then
86                 return true
87         else
88                 furrybot.error_message(name, "Player not online", other)
89         end
90 end
91
92 function furrybot.choose(list, color)
93         return furrybot.colors.random .. list[math.random(#list)] .. color
94 end
95
96 function furrybot.random(min, max, color)
97         return furrybot.colors.random .. math.random(min, max) .. color
98 end
99
100 function furrybot.http_request(url, name, callback)
101         http.fetch({url = url}, function(res)
102                 if res.succeeded then
103                         callback(res.data)
104                 else
105                         furrybot.error_message(name, "Request failed with code", res.code)
106                 end
107         end)
108 end
109
110 function furrybot.json_http_request(url, name, callback)
111         furrybot.http_request(url, name, function(raw)
112                 local data = minetest.parse_json(raw)
113                 callback(data[1] or data)
114         end)
115 end
116
117 function furrybot.strrandom(str, seed, ...)
118         local v = 0
119         local pr = PseudoRandom(seed)
120         for i = 1, #str do
121                 v = v + str:byte(i) * pr:next()
122         end
123         return PseudoRandom(v):next(...)
124 end
125
126 function furrybot.repeat_string(str, times)
127         local msg = ""
128         for i = 1, times do
129                 msg = msg .. str
130         end
131         return msg
132 end
133
134 function furrybot.interactive_rpg_command(action)
135         return function(name, target)
136                 if furrybot.online_or_error(name, target) then
137                         furrybot.send(name .. " " .. action .. " " .. target .. ".", furrybot.colors.rpg)
138                 end
139         end
140 end
141
142 function furrybot.solo_rpg_command(action)
143         return function(name)
144                 furrybot.send(name .. " " .. action .. ".", furrybot.colors.rpg)
145         end
146 end
147
148 function furrybot.request_command(on_request, on_accept)
149         return function(name, target)
150                 if furrybot.online_or_error(name, target) and on_request(name, target) ~= false then
151                         furrybot.requests[target] = {
152                                 origin = name,
153                                 func = on_accept,
154                         }
155                 end
156         end
157 end
158
159 function furrybot.get_money(name)
160         local key = name .. ".money"
161         if storage:contains(key) then
162                 return storage:get_int(key)
163         else
164                 return 100
165         end
166 end
167
168 function furrybot.set_money(name, money)
169         storage:set_int(name .. ".money", money)
170 end
171
172 function furrybot.add_money(name, add)
173         local money = furrybot.get_money(name)
174         furrybot.set_money(name, money + add)
175 end
176
177 function furrybot.take_money(name, remove)
178         local money = furrybot.get_money(name)
179         local new = money - remove
180         if new < 0 then
181                 return false
182         else
183                 furrybot.set_money(name, new)
184                 return true
185         end
186 end
187
188 function furrybot.money(money, color)
189         return furrybot.colors.money .. "$" .. money .. color
190 end
191
192 -- Commands
193
194 -- system
195 function furrybot.commands.help()
196         local keys = {}
197         for k in pairs(furrybot.commands) do
198                 table.insert(keys, k)
199         end
200         furrybot.send("Available commands: " .. table.concat(keys, ", "), furrybot.colors.system)
201 end
202
203 function furrybot.commands.accept(name)
204         local tbl = furrybot.requests[name]
205         if tbl then
206                 furrybot.requests[name] = nil
207                 tbl.func(tbl.origin, name)
208         else
209                 furrybot.error_message(name, "Nothing to accept")
210         end
211 end
212 furrybot.unsafe_commands.accept = true
213
214 function furrybot.commands.deny(name)
215         local tbl = furrybot.requests[name]
216         if tbl then
217                 furrybot.requests[name] = nil
218                 furrybot.ping_message(name, "Denied request", furrybot.colors.system)
219         else
220                 furrybot.error_message(name, "Nothing to deny")
221         end
222 end
223 furrybot.unsafe_commands.deny = true
224
225 -- don't bug players that are running ClamityBot commands from discord
226 function furrybot.commands.status()
227 end
228
229 function furrybot.commands.cmd()
230 end
231
232 -- rpg
233 furrybot.commands.cry = furrybot.solo_rpg_command("cries")
234 furrybot.commands.laugh = furrybot.solo_rpg_command("laughs")
235 furrybot.commands.confused = furrybot.solo_rpg_command("is confused")
236 furrybot.commands.smile = furrybot.solo_rpg_command("smiles")
237 furrybot.commands.hug = furrybot.interactive_rpg_command("hugs")
238 furrybot.commands.cuddle = furrybot.interactive_rpg_command("cuddles")
239 furrybot.commands.kiss = furrybot.interactive_rpg_command("kisses")
240 furrybot.commands.hit = furrybot.interactive_rpg_command("hits")
241 furrybot.commands.slap = furrybot.interactive_rpg_command("slaps")
242 furrybot.commands.beat = furrybot.interactive_rpg_command("beats")
243 furrybot.commands.lick = furrybot.interactive_rpg_command("licks")
244
245 furrybot.commands.smellfeet = furrybot.request_command(function(name, target)
246         furrybot.ping_message(target, name .. " wants to smell your feet. Type !accept to accept or !deny to deny.", furrybot.colors.system)
247 end, function(name, target)
248         furrybot.ping_message(name, " you are smelling " .. target .. "'s feet. They are kinda stinky!", furrybot.colors.rpg)
249 end)
250
251 furrybot.commands.blowjob = furrybot.request_command(function(name, target)
252         furrybot.ping_message(target, name .. " wants to suck your dick. Type !accept to accept or !deny to deny.", furrybot.colors.system)
253 end, function(name, target)
254         furrybot.send(name .. " is sucking " .. target .. "'s cock. ˣoˣ IT'S SO HUGE", furrybot.colors.rpg)
255 end)
256
257 furrybot.commands.sex = furrybot.request_command(function(name, target)
258         furrybot.ping_message(target, name .. " wants to have sex with you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
259 end, function(name, target)
260         furrybot.send(name .. " and " .. target .. " are having sex! OwO", furrybot.colors.rpg)
261 end)
262 furrybot.commands.bang = furrybot.commands.sex
263 furrybot.commands.fuck = furrybot.commands.sex
264
265 furrybot.commands.marry = furrybot.request_command(function(name, target)
266         if storage:contains(name .. ".partner", target) then
267                 furrybot.error_message(name, "You are already married to", storage:get_string(name .. ".partner"))
268                 return false
269         elseif storage:contains(target .. ".partner", name) then
270                 furrybot.error_message(name, target .. " is already married to", storage:get_string(name .. ".partner"))
271                 return false
272         else
273                 furrybot.ping_message(target, name .. " proposes to you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
274         end
275 end, function(name, target)
276         storage:set_string(name .. ".partner", target)
277         storage:set_string(target .. ".partner", name)
278         furrybot.send("Congratulations, " .. furrybot.ping(name, furrybot.colors.rpg) .. "&" .. furrybot.ping(target, furrybot.colors.rpg) .. ", you are married. You may now kiss :).", furrybot.colors.rpg)
279 end)
280 furrybot.commands.propose = furrybot.commands.marry
281 furrybot.unsafe_commands.marry = true
282 furrybot.unsafe_commands.propose = true
283
284 function furrybot.commands.divorce(name)
285         if storage:contains(name .. ".partner") then
286                 local partner = storage:get_string(name .. ".partner")
287                 storage:set_string(name .. ".partner", "")
288                 storage:set_string(partner .. ".partner", "")
289                 furrybot.ping_message(name, "divorces from " .. partner .. " :(", furrybot.colors.rpg)
290         else
291                 furrybot.error_message(name, "You are not married")
292         end
293 end
294 furrybot.unsafe_commands.divorce = true
295
296 function furrybot.commands.partner(name, target)
297         target = target or name
298         if storage:contains(target .. ".partner") then
299                 furrybot.ping_message(name, (target == name and "You are" or target .. " is") .. " married to " .. storage:get_string(target .. ".partner"), furrybot.colors.system)
300         else
301                 furrybot.error_message(name, (target == name and "You are" or target .. " is") .. " not married")
302         end
303 end
304 furrybot.commands.married = furrybot.commands.partner
305
306 furrybot.kill_deathmessages = {
307         "%s walked into fire whilst fighting %s",
308         "%s was struck by lightning whilst fighting %s",
309         "%s was burnt to a crisp whilst fighting %s",
310         "%s tried to swim in lava to escape %s",
311         "%s walked into danger zone due to %s",
312         "%s suffocated in a wall whilst fighting %s",
313         "%s drowned whilst trying to escape %s",
314         "%s starved to death whilst fighting %s",
315         "%s walked into a cactus whilst trying to escape %s",
316         "%s hit the ground too hard whilst trying to escape %s",
317         "%s experienced kinetic energy whilst trying to escape %s",
318         "%s didn't want to live in the same world as %s",
319         "%s died because of %s",
320         "%s was killed by magic whilst trying to escape %s",
321         "%s was killed by %s using magic",
322         "%s was roasted in dragon breath by %s",
323         "%s withered away whilst fighting %s",
324         "%s was shot by a skull from %s",
325         "%s was squashed by a falling anvil whilst fighting %s",
326         "%s was slain by %s",
327         "%s was shot by %s",
328         "%s was fireballed by %s",
329         "%s was killed trying to hurt %s",
330         "%s was blown up by %s",
331         "%s was squashed by %s",
332 }
333
334 furrybot.deathmessages = {
335         "%s went up in flames",
336         "%s was struck by lightning",
337         "%s burned to death",
338         "%s tried to swim in lava",
339         "%s discovered the floor was lava",
340         "%s suffocated in a wall",
341         "%s drowned",
342         "%s starved to death",
343         "%s was pricked to death",
344         "%s hit the ground too hard",
345         "%s experienced kinetic energy",
346         "%s fell out of the world",
347         "%s died",
348         "%s was killed by magic",
349         "%s was roasted in dragon breath",
350         "%s withered away",
351         "%s was squashed by a falling anvil",
352         "%s blew up",
353         "%s was squished too much",
354         "%s went off with a bang",
355 }
356
357 function furrybot.commands.kill(name, target)
358         if furrybot.online_or_error(name, target, true) then
359                 if name == target then
360                         furrybot.send(string.format("%s died due to lack of friends", target), furrybot.colors.rpg)
361                 else
362                         furrybot.send(string.format(furrybot.kill_deathmessages[math.random(#furrybot.kill_deathmessages)], target, name), furrybot.colors.rpg)
363                 end
364         end
365 end
366
367 function furrybot.commands.die(name)
368         furrybot.send(string.format(furrybot.deathmessages[math.random(#furrybot.deathmessages)], name), furrybot.colors.rpg)
369 end
370
371 -- misc
372 function furrybot.commands.rolldice(name)
373         furrybot.ping_message(name, "rolled a dice and got a " .. furrybot.random(1, 6, furrybot.colors.system) .. ".", furrybot.colors.system)
374 end
375
376 function furrybot.commands.coinflip(name)
377         furrybot.ping_message(name, "flipped a coin and got " .. furrybot.choose({"Heads", "Tails"}, furrybot.colors.system) .. ".", furrybot.colors.system)
378 end
379
380 function furrybot.commands.choose(name, ...)
381         local options = {...}
382         if #options > 1 then
383                 furrybot.ping_message(name, "I choose " .. furrybot.choose(options, "", furrybot.colors.system) .. ".", furrybot.colors.system)
384         else
385                 furrybot.error_message(name, "Not enough options")
386         end
387 end
388
389 function furrybot.commands.dicksize(name, target)
390         target = target or name
391         local size = furrybot.strrandom(target, 31242, 2, 10)
392         local dick = furrybot.repeat_string("=", size) .. "D"
393         furrybot.send(minetest.rainbow(dick) .. furrybot.colors.system .. "   ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", C("#FF4DE1"))
394 end
395 furrybot.commands.cocksize = furrybot.commands.dicksize
396
397 -- fun
398 function furrybot.commands.amogus(name)
399         furrybot.ping_message(name, "YOU KINDA SUS MAN", furrybot.colors.fun)
400 end
401
402 function furrybot.commands.verse(name)
403         furrybot.json_http_request("https://labs.bible.org/api/?type=json&passage=random", name, function(data)
404                 furrybot.send(data.text .. furrybot.colors.info .. "[" .. data.bookname .. " " .. data.chapter .. "," .. data.verse .. "]", furrybot.colors.fun)
405         end)
406 end
407
408 function furrybot.commands.define(name, word)
409         if word then
410                 furrybot.json_http_request("https://api.dictionaryapi.dev/api/v1/entries/en_US/" .. word:gsub("computer", "person"), name, function(data)
411                         local meaning = data.meaning
412                         local selected = meaning.abbreviation or meaning["cardinal number"] or meaning.exclamation or meaning.noun or meaning.verb or meaning.adjective or meaning["transitive verb"] or meaning.adverb or meaning["relative adverb"]
413                         if not selected then
414                                 print(dump(meaning))
415                                 furrybot.error_message(name, "Error in parsing response")
416                         else
417                                 furrybot.send(word:sub(1, 1):upper() .. word:sub(2, #word):lower() .. ": " .. furrybot.colors.fun .. selected[1].definition, furrybot.colors.info)
418                         end
419                 end)
420         else
421                 furrybot.error_message(name, "You need to specify a word")
422         end
423 end
424
425 function furrybot.commands.insult(name, target)
426         if furrybot.online_or_error(name, target, true) then
427                 furrybot.http_request("https://insult.mattbas.org/api/insult", name, function(data)
428                         furrybot.ping_message(target, data, furrybot.colors.fun)
429                 end)
430         end
431 end
432
433 function furrybot.commands.joke(name, first, last)
434         if not first then
435                 first = "Chuck"
436                 last = "Norris"
437         elseif not last then
438                 last = ""
439         end
440         furrybot.json_http_request("http://api.icndb.com/jokes/random?firstName=" .. first .. "&lastName=" .. last, name, function(data)
441                 local joke = data.value.joke:gsub("&quot;", "\""):gsub("  ", " ")
442                 furrybot.send(joke, furrybot.colors.fun)
443         end)
444 end
445
446 function furrybot.commands.question(name)
447         furrybot.json_http_request("https://8ball.delegator.com/magic/JSON/anything", name, function(data)
448                 furrybot.ping_message(name, data.magic.answer, furrybot.colors.fun)
449         end)
450 end
451 furrybot.commands["8ball"] = furrybot.commands.question
452
453 -- economy
454 function furrybot.commands.money(name, target)
455         target = target or name
456         furrybot.ping_message(name, (target == name and "You have " or target .. " has ") .. furrybot.money(furrybot.get_money(target), furrybot.colors.system) .. ".", furrybot.colors.system)
457 end
458 furrybot.commands.balance = furrybot.commands.money
459
460 function furrybot.commands.pay(name, target, number)
461         if furrybot.online_or_error(name, target) then
462                 local money = tonumber(number or "")
463                 if not money or money <= 0 or math.floor(money) ~= money then
464                         furrybot.error_message(name, "Invalid amount of money")
465                 else
466                         if furrybot.take_money(name, money) then
467                                 furrybot.add_money(target, money)
468                                 furrybot.ping_message(target, name .. " has payed you " .. furrybot.money(money, furrybot.colors.system) .. ".", furrybot.colors.system)
469                         else
470                                 furrybot.error_message(name, "You don't have enough money")
471                         end
472                 end
473         end
474 end
475 furrybot.unsafe_commands.pay = true
476
477 -- send load message
478 furrybot.send("FurryBot - " .. C("#170089") .. "https://github.com/EliasFleckenstein03/furrybot", furrybot.colors.system)
479
480 if furrybot.loaded then
481         furrybot.send("Reloaded", furrybot.colors.system)
482 else
483         furrybot.loaded = true
484 end
485
486 return function(_http, _env, _storage)
487         http, env, storage = _http, _env, _storage
488 end