<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[02:01:25] ⇦ Quits: TPG24 (~ThePiGuy2@host-92-17-121-206.as13285.net) (Remote host closed the connection)
L2[04:22:07] ⇦ Quits: PCL-Jenkins (~PircBotx@50.38.58.88) ()
L3[04:24:26] ⇨ Joins: PCL-Jenkins (~PircBotx@50.38.58.88)
L4[04:40:04] ⇦ Quits: PCL-Jenkins (~PircBotx@50.38.58.88) ()
L5[04:42:22] ⇨ Joins: PCL-Jenkins (~PircBotx@50.38.58.88)
L6[05:07:31] ⇦ Quits: PCL-Jenkins (~PircBotx@50.38.58.88) ()
L7[05:10:46] ⇨ Joins: PCL-Jenkins (~PircBotx@50.38.58.88)
L8[05:23:01] ⇦ Quits: PCL-Jenkins (~PircBotx@50.38.58.88) ()
L9[05:48:58] ⇨ Joins: PCL-Jenkins (~PircBotx@ip233.ip-51-222-228.net)
L10[05:50:35] ⇦ Quits: PCL-Jenkins (~PircBotx@ip233.ip-51-222-228.net) (Client Quit)
L11[12:40:22] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@host-92-17-121-206.as13285.net)
L12[14:10:52] ⇨ Joins: TPG24 (~ThePiGuy2@host-92-17-121-206.as13285.net)
L13[14:12:14] ⇦ Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-121-206.as13285.net) (Ping timeout: 189 seconds)
L14[14:53:52] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@host-92-17-121-206.as13285.net)
L15[14:54:21] ⇦ Quits: TPG24 (~ThePiGuy2@host-92-17-121-206.as13285.net) (Ping timeout: 192 seconds)
L16[16:16:43] <Blue​_595> %lua for k, v in component.list() do print(k, v) end
L17[16:16:44] <MichiBot> main:1: attempt to index global 'component' (a nil value)
L18[16:16:59] <Blue​_595> Damn I was hoping you'd simulate an actual OpenComputers rig
L19[16:44:53] <Mic​hiyo> No, pure lua 5.3
L20[16:45:01] <Blue​_595> sad
L21[16:45:50] <Mic​hiyo> I mean.. if you want to implement something https://github.com/PC-Logix/LanteaBot/blob/master/src/main/java/pcl/lc/irc/hooks/JNLuaSandbox.java :P
L22[16:47:51] <Mic​hiyo> https://github.com/PC-Logix/LanteaBot/blob/master/src/main/resources/jnlua/luasb.lua lua sandbox
L23[16:48:18] <Mic​hiyo> %lua uhm('Test')
L24[16:48:18] <MichiBot> eTssts
L25[16:48:22] <Mic​hiyo> lol..
L26[16:54:22] ⇨ Joins: TPG24 (~ThePiGuy2@host-92-17-121-206.as13285.net)
L27[16:56:08] ⇦ Quits: ThePiGuy24 (~ThePiGuy2@host-92-17-121-206.as13285.net) (Ping timeout: 189 seconds)
L28[16:59:24] <Blue​_595> wait what just happened
L29[16:59:31] <Blue​_595> %lua uhm("Hello, world!")
L30[16:59:31] <MichiBot> eHlelloo,, ,w owrolrdd!!
L31[17:01:57] <Blue​_595> Time for "standard reverse engineering practices"
L32[17:02:05] <Blue​_595> %lua uhm("abcdefghijklmnop")
L33[17:02:05] <MichiBot> baccddeeffgghgiijjkjllmlnmonpp
L34[17:02:16] <Blue​_595> That doesn't make it any clearer
L35[17:05:38] <Blue​_595> Code Block pastebined https://paste.pc-logix.com/ohavisoyug It's working in 2-character chunks, but I can't find a pattern for the bits at the bottom (BACK)
L36[17:06:03] <Blue​_595> %lua uhm(string.rep("abcd", 20))
L37[17:06:04] <MichiBot> bacbddaabaccdcaabbcbddadbaccddadbaccdcaabaccddaabacbddadbacbddaabbcbddadbacbdcadbaccddaabaccdcadbbcbddaabbccdcaabaccdcaabbccdcaabbcbddaabbccddadbbccddaabacbdc
L38[17:08:14] <Blue​_595> Code Block pastebined https://paste.pc-logix.com/misiwekohi The pattern also changes every time
L39[17:08:24] <Blue​_595> But only slightly (?!)
L40[17:12:30] <Blue​_595> Might be some hash or digest of the message as a whole
L41[17:14:34] <Blue​_595> Could be SHA-384 (...C7C12A45CDBCA...)
L42[17:16:14] <Blue​_595> I don't get it
L43[17:17:20] <Amanda> if only the source for it was recently linked
L44[17:17:44] <Blue​_595> damn it
L45[17:18:28] <Blue​_595> `local c=i+(math.random()>=(i%1)and 1 or 0)` I was hoping it wouldn't be random
L46[17:27:10] <Blue​_595> Well here's my non-random version:
L47[17:27:12] <Blue​_595> %lua function uhm(a) local b,x='','' for i=1,#a,0.5 do local c=i+(string.byte(x)%2) x=a:sub(c,c) b=b..x end return b end
L48[17:27:20] <Blue​_595> %lua uhm("Hello, world!")
L49[17:27:20] <MichiBot> main:1: attempt to perform arithmetic on a nil value
L50[17:27:37] <Blue​_595> damn
L51[17:28:07] <Blue​_595> x needs to have a value maybe
L52[17:28:07] <Blue​_595> %lua function uhm(a) local b,x='',' ' for i=1,#a,0.5 do local c=i+(string.byte(x)%2) x=a:sub(c,c) b=b..x end return b end
L53[17:28:13] <Blue​_595> %lua uhm("Hello, world!")
L54[17:28:13] <MichiBot> HHelllllo,,, worolrlldd!
L55[17:28:22] <Blue​_595> Now it's just more of a stutter
L56[17:30:28] <Blue​_595> More messing around them
L57[17:30:30] <Blue​_595> More messing around then [Edited]
L58[17:30:32] <Blue​_595> %lua function mess(a) a=bit32.bxor(a,bit32.lshift(a,4)) a=bit32.bxor(a,bit32.lshift(a,2)) a=bit32.bxor(a,bit32.lshift(a,1)) return a%2 end
L59[17:30:46] <Blue​_595> %lua function uhm(a) local b,x='',' ' for i=1,#a,0.5 do local c=i+mess(string.byte(x)) x=a:sub(c,c) b=b..x end return b end
L60[17:30:59] <Blue​_595> %lua uhm("Hello, world!")
L61[17:31:00] <MichiBot> HHelllllo,,, worolrlldd!
L62[17:31:07] <Blue​_595> That didn't change it at all
L63[17:31:40] <Blue​_595> %lua function mess(a) a=bit32.bxor(a,bit32.lshift(a,4)) a=bit32.bxor(a,bit32.lshift(a,2)) a=bit32.bxor(a,bit32.lshift(a,1)) return a%8 end -- Wider jumps?
L64[17:31:46] <Blue​_595> %lua uhm("Hello, world!")
L65[17:31:47] <MichiBot> main:1: bad argument #1 to 'lshift' (number expected, got nil)
L66[17:31:51] <Blue​_595> fuck
L67[17:43:18] <Blue​_595> %lua function mess(a) a=bit32.bxor(a,bit32.rshift(a,4)) a=bit32.bxor(a,bit32.rshift(a,2)) a=bit32.bxor(a,bit32.rshift(a,1)) return a%4 end
L68[17:43:24] <Blue​_595> %lua function uhm(a) local b,x='',' ' for i=1,#a+4,1 do local c=i-mess(string.byte(x)) c=(c>=1)and c or 1 c=(c<=#a)and c or #a x=a:sub(c,c) b=b..x end return b end
L69[17:43:33] <Blue​_595> %lua uhm("Hello, world!")
L70[17:43:33] <MichiBot> HeHlol o wr!dd!!
L71[17:44:22] <Mic​hiyo> @Blue_595 the source for uhm is in the sandbox script :P
L72[17:44:33] <Mic​hiyo> Oh god damn it
L73[17:44:35] <Mic​hiyo> I was scrolled up
L74[17:45:34] <Blue​_595> I made my own uhm() by the way
L75[17:45:49] <Mic​hiyo> Yes, I noticed. I also see you overwrote the one in the sandbox.
L76[17:46:10] <Blue​_595> too bad
L77[17:46:12] ⇨ Joins: Michiyo (webchat@50.38.58.88)
L78[17:46:12] Spock sets mode: +o on Michiyo
L79[17:46:18] <Michiyo> %resetsandbox
L80[17:46:22] <Michiyo> INdeed.
L81[17:46:43] <Michiyo> %resetlua
L82[17:46:43] <MichiBot> Sandbox reset
L83[17:46:46] <Michiyo> That';s the one.
L84[18:31:30] ⇦ Quits: TPG24 (~ThePiGuy2@host-92-17-121-206.as13285.net) (Read error: Connection reset by peer)
L85[18:32:04] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@host-92-17-121-206.as13285.net)
L86[21:11:57] <bad at​ vijya> %lua 0/0
L87[21:12:03] <bad at​ vijya> %lua print(0/0)
L88[21:12:07] <bad at​ vijya> fuckin
L89[21:12:08] <bad at​ vijya> re
L90[21:14:28] <bad at​ vijya> %test
L91[21:14:28] <MichiBot> bad at​ vijya: No.
L92[21:14:33] <bad at​ vijya> yo what the fuck
L93[21:14:55] <bad at​ vijya> %lua print "test"
L94[21:15:01] <bad at​ vijya> i think i'm blacklisted still
L95[21:15:03] <bad at​ vijya> :(
L96[21:43:09] ⇦ Quits: Ariri (~finch@cpe-104-33-154-8.socal.res.rr.com) (Ping timeout: 189 seconds)
L97[21:43:33] <Mic​hiyo> "blacklisted"
L98[21:43:36] <Mic​hiyo> ?*
L99[21:43:48] <Mic​hiyo> MichiBot has exactly 1 ignore list, and if you were on it %test wouldn't work either
L100[21:43:49] <MichiBot> Mic​hiyo: No.
L101[21:43:57] <Mic​hiyo> ... right that's a fucking thing
L102[21:48:46] <Mic​hiyo> %ignorelist
L103[21:49:07] <Michiyo> %ignorelist
L104[21:49:07] <MichiBot> Mic​hiyo: Ignored Users: [280070658820538370, !0§A.pjals™, !0?a.pjals?, add 675688103540686858]
L105[21:50:16] <Mic​hiyo> And seeing as your discord userid is 175686996461617162 I don't think that applies
L106[21:52:02] <bad_at​_vijya> ye, turns out it was spaces
L107[21:52:07] <bad_at​_vijya> %lua ((#{#{}})<<((#{#{},#{}}+#{#{}})*#{#{},#{}}))+(#{#{}}<<#{#{}, #{}})+#{#{}}
L108[21:52:08] <MichiBot> main:1: unexpected symbol near '<'
L109[21:52:11] <bad_at​_vijya> FUCK
L110[21:52:42] <Corded> * <Mic​hiyo> pat pat
L111[21:52:43] <Mic​hiyo> It's ok
L112[21:53:46] <bad_at​_vijya> don't ask why i'm doing this
L113[22:02:57] ⇨ Joins: finch (~finch@2603-8000-2f00-e0b3-0226-18ff-fe06-8702.res6.spectrum.com)
L114[22:03:10] *** finch is now known as Ariri
L115[22:20:50] <bad_at​_vijya> %lua ` = setmetatable({}, {index=G, call=function(_, ...) return string.char(...) end})`
L116[22:20:50] <MichiBot> main:1: unexpected symbol near '`'
L117[22:20:53] <bad_at​_vijya> fuck
L118[22:20:57] <bad_at​_vijya> %lua = setmetatable({}, {index=G, call=function(_, ...) return string.char(...) end})
L119[22:20:57] <MichiBot> main:1: unexpected symbol near char(29)
L120[22:21:05] <bad_at​_vijya> ._.
L121[22:21:12] <bad_at​_vijya> %lua ``` = setmetatable({}, {index=G, call=function(_, ...) return string.char(...) end})```
L122[22:21:12] <MichiBot> main:1: unexpected symbol near '`'
L123[22:21:55] <bad_at​_vijya> %lua =setmetatable({}, {\\index=G, \\call=function(\_, ...) return string.char(...) end})
L124[22:21:55] <MichiBot> main:1: unexpected symbol near char(29)
L125[22:22:10] <bad_at​_vijya> what does michibot mean by this
L126[23:19:02] <Mic​hiyo> It means there is a symbol that it doesn't expect near char(29) (ASCII Group Separator ) :P
L127[23:19:07] <Mic​hiyo> No clue really...
L128[23:19:41] <Mic​hiyo> I assume you're trying some hacky workaround for discord and it's use of markdown, to use underscores in the code line
L129[23:19:47] <Mic​hiyo> I assume you're trying some hacky workaround for discord and its use of markdown, to use underscores in the code line [Edited]
L130[23:42:57] ⇦ Quits: Ariri (~finch@2603-8000-2f00-e0b3-0226-18ff-fe06-8702.res6.spectrum.com) (Ping timeout: 204 seconds)
L131[23:44:08] ⇨ Joins: finch (~finch@cpe-104-33-154-8.socal.res.rr.com)
L132[23:44:26] *** finch is now known as Ariri
<<Prev Next>> Scroll to Top