<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[04:57:25] ⇦ Quits: ThePiGuy24 (~ThePiGuy2@37.152.254.61) (Remote host closed the connection)
L2[07:06:02] <My​ros> %lua print("test")
L3[07:06:02] <MichiBot> test
L4[07:07:44] <My​ros> %lua help
L5[07:07:44] <MichiBot> nil
L6[07:08:06] <My​ros> %lua help = "nah"
L7[07:08:16] <My​ros> %lua help
L8[07:08:16] <MichiBot> nah
L9[07:08:35] <My​ros> %lua print(x)
L10[07:08:35] <MichiBot> table: 0x7f21c803aad0
L11[07:09:13] <My​ros> %lua print("%tonk")
L12[07:09:13] <MichiBot> %tonk
L13[07:10:35] <My​ros> %lua io()
L14[07:10:35] <MichiBot> main:1: attempt to call global 'io' (a table value)
L15[07:11:04] <My​ros> %lua y = {io()}
L16[07:11:04] <MichiBot> main:1: attempt to call global 'io' (a table value)
L17[07:12:16] <My​ros> %lua for k, v in pairs(io) do
L18[07:12:16] <MichiBot> main:1: 'end' expected near <eof>
L19[07:12:16] <My​ros> print(v[1])
L20[07:12:16] <My​ros> end
L21[07:14:39] <My​ros> %lua for key, value in pairs(0x7f21c803aad0) do
L22[07:14:39] <MichiBot> main:1: 'end' expected near <eof>
L23[07:14:39] <My​ros> print(key, " -- ", value)
L24[07:14:40] <My​ros> end
L25[07:14:57] <My​ros> %lua for key, value in pairs(0x7f21c803aad0) do print(key, " -- ", value) end
L26[07:14:57] <MichiBot> main:1: bad argument #1 to 'pairs' (table expected, got number)
L27[07:15:11] <My​ros> %lua for key, value in pairs(io) do print(key, " -- ", value) end
L28[07:15:26] <My​ros> %lua for key, value in pairs(io()) do print(key, " -- ", value) end
L29[07:15:26] <MichiBot> main:1: attempt to call global 'io' (a table value)
L30[07:17:18] <My​ros> %lua print(os)
L31[07:17:18] <MichiBot> table: 0x7f221c7784d0
L32[07:17:30] <My​ros> %lua for key, value in pairs(os) do print(key, " -- ", value) end
L33[07:17:30] <MichiBot> time, -- , function: 0x7f22022d9940 | date, -- , function: 0x7f22022d9ac0 | clock, -- , function: 0x7f22022d97e0 | difftime, -- , function: 0x7f22022d9780
L34[07:19:11] <My​ros> %lua print(os.date)
L35[07:19:11] <MichiBot> function: 0x7f22022d9ac0
L36[07:19:19] <My​ros> %lua print(os.date())
L37[07:19:19] <MichiBot> Mon Mar 22 07:19:19 2021
L38[07:19:39] <My​ros> %lua print(os.clock())
L39[07:19:39] <MichiBot> 2712.516756
L40[07:19:46] <My​ros> %lua print(os.clock())
L41[07:19:46] <MichiBot> 2712.5425
L42[07:20:00] <My​ros> %lua print(os.difftime())
L43[07:20:00] <MichiBot> main:1: bad argument #1 to 'difftime' (number expected, got no value)
L44[07:20:06] <My​ros> %lua print(os.clock(2712.5425))
L45[07:20:06] <MichiBot> 2712.638258
L46[07:20:21] <My​ros> %lua print(os.difftime(2712.638258))
L47[07:20:21] <MichiBot> 2712
L48[07:20:42] <My​ros> %lua print(os.difftime(0))
L49[07:20:42] <MichiBot> 0
L50[07:20:53] <My​ros> %lua print(os.difftime(1))
L51[07:20:53] <MichiBot> 1
L52[07:21:32] <My​ros> %lua print(os[1])
L53[07:21:32] <MichiBot> nil
L54[07:21:42] <My​ros> %lua print(os[difftime])
L55[07:21:42] <MichiBot> nil
L56[07:21:56] <My​ros> %lua for key, value in pairs(os) do print(value) end
L57[07:21:56] <MichiBot> function: 0x7f22022d9940 | function: 0x7f22022d9ac0 | function: 0x7f22022d97e0 | function: 0x7f22022d9780
L58[07:22:06] <My​ros> %lua for key, value in pairs(os) do print(key) end
L59[07:22:06] <MichiBot> time | date | clock | difftime
L60[07:23:02] <My​ros> %lua for key, value in pairs(io) do print(key) end
L61[07:31:17] <My​ros> %lua for key, value in pairs(os) do print(key) end
L62[07:31:17] <MichiBot> time | date | clock | difftime
L63[07:31:44] <My​ros> %lua print(component)
L64[07:31:44] <MichiBot> nil
L65[07:31:58] <My​ros> %lua print(event)
L66[07:31:59] <MichiBot> nil
L67[07:32:12] <My​ros> %lua print(filesystem)
L68[07:32:12] <MichiBot> nil
L69[07:32:18] <My​ros> %lua print(fs)
L70[07:32:19] <MichiBot> nil
L71[07:32:30] <My​ros> %lua print(shell)
L72[07:32:30] <MichiBot> nil
L73[07:32:37] <My​ros> %lua printcmd)
L74[07:32:37] <MichiBot> main:1: syntax error near ')'
L75[07:32:44] <My​ros> %lua print(cmd)
L76[07:32:44] <MichiBot> nil
L77[07:36:38] <My​ros> %lua function out() print(m) end
L78[07:36:50] <My​ros> %lua m = 1 out()
L79[07:36:50] <MichiBot> 1
L80[07:37:09] <My​ros> %tonk
L81[07:37:09] <MichiBot> Zoinks! My​ros! You beat Compan​ionCube's previous record of 3 hours, 34 minutes and 19 seconds (By 27 minutes and 33 seconds)! I hope you're happy!
L82[07:37:10] <MichiBot> Myros's new record is 4 hours, 1 minute and 53 seconds! Myros also gained 0.00184 (0.00046 x 4) tonk points for stealing the tonk. Position #4. Need 0.07079 more points to pass Forec​aster!
L83[07:37:22] <My​ros> %sip
L84[07:37:22] <MichiBot> You drink a silent bombastium potion (New!). Myros has a sudden desire to run around in a circle until they see a bird.
L85[07:39:02] <My​ros> %lua os.clock()
L86[07:39:03] <MichiBot> 2715.434326
L87[07:39:08] <My​ros> %lua os.clock()
L88[07:39:08] <MichiBot> 2715.46331
L89[07:41:10] <My​ros> %lua sleep(1) out()
L90[07:41:10] <MichiBot> main:1: attempt to call global 'sleep' (a nil value)
L91[07:41:22] <My​ros> %lua os.sleep(1) out()
L92[07:41:22] <MichiBot> main:1: attempt to call field 'sleep' (a nil value)
L93[07:43:16] <My​ros> %lua ok,ffi = pcall(require,"ffi")
L94[07:43:23] <My​ros> %lua print(ok)
L95[07:43:23] <MichiBot> false
L96[07:44:24] <My​ros> %lua print(socket())
L97[07:44:24] <MichiBot> main:1: attempt to call global 'socket' (a nil value)
L98[07:44:51] <My​ros> %lua os.execute("sleep 1") out()
L99[07:44:51] <MichiBot> main:1: attempt to call field 'execute' (a nil value)
L100[07:46:16] <My​ros> %lua function wait() x = os.clock() + 1 while x > os.clock() do end end
L101[07:46:28] <My​ros> %lua wait() out()
L102[07:46:29] <MichiBot> 1
L103[07:46:51] <My​ros> %lua function wait(y) x = os.clock() + y while x > os.clock() do end end
L104[07:47:03] <My​ros> %lua wait(20) out()
L105[07:47:07] <MichiBot> script took too long
L106[07:47:24] <My​ros> %lua function wait(y) x = os.clock() + y while x > os.clock() do end end
L107[07:47:37] <My​ros> %lua wait(10) out()
L108[07:47:41] <MichiBot> script took too long
L109[07:48:01] <My​ros> %lua wait(5) out()
L110[07:48:05] <MichiBot> script took too long
L111[07:48:11] <My​ros> %lua wait(4) out()
L112[07:48:15] <MichiBot> script took too long
L113[07:48:20] <My​ros> %lua wait(2) out()
L114[07:48:22] <MichiBot> 1
L115[07:48:27] <My​ros> %lua wait(3) out()
L116[07:48:30] <MichiBot> 1
L117[07:48:40] <My​ros> %lua wait(3.3) out()
L118[07:48:44] <MichiBot> script took too long
L119[07:48:49] <My​ros> %lua wait(3.1) out()
L120[07:48:52] <MichiBot> 1
L121[07:48:58] <My​ros> %lua wait(3.2) out()
L122[07:49:01] <MichiBot> 1
L123[07:49:11] <My​ros> %lua wait(3.3) out()
L124[07:49:14] <MichiBot> 1
L125[07:49:20] <My​ros> %lua wait(3.4) out()
L126[07:49:24] <MichiBot> script took too long
L127[07:49:27] <My​ros> %lua wait(3.3) out()
L128[07:49:31] <MichiBot> 1
L129[07:49:35] <My​ros> %lua wait(3.3) out()
L130[07:49:38] <MichiBot> 1
L131[07:49:43] <My​ros> %lua wait(3.3) out()
L132[07:49:46] <MichiBot> 1
L133[07:51:17] <My​ros> %lua function wait(y) v = 0 x = os.clock() + y while x > os.clock() do v = v + 1 end print(v) end
L134[07:51:25] <My​ros> %lua wait(1)
L135[07:51:26] <MichiBot> 585194
L136[07:51:34] <My​ros> %lua wait(3.3)
L137[07:51:37] <MichiBot> 1746606
L138[07:51:49] <My​ros> %lua wait(1)
L139[07:51:50] <MichiBot> 474160
L140[07:51:55] <My​ros> %lua wait(3.3)
L141[07:51:58] <MichiBot> 1502507
L142[07:52:02] <My​ros> %lua wait(3.3)
L143[07:52:06] <MichiBot> 1494107
L144[07:52:12] <My​ros> %lua wait(3.3)
L145[07:52:16] <MichiBot> script took too long
L146[07:52:28] <My​ros> %lua wait(3.2)
L147[07:52:31] <MichiBot> 1411557
L148[07:52:35] <My​ros> %lua wait(3.2)
L149[07:52:39] <MichiBot> 1394942
L150[07:52:56] <My​ros> %lua wait(3.2)
L151[07:52:59] <MichiBot> 1371725
L152[07:53:04] <My​ros> %lua wait(3.2)
L153[07:53:08] <MichiBot> 1369166
L154[07:53:12] <My​ros> %lua wait(3.2)
L155[07:53:17] <MichiBot> script took too long
L156[07:53:31] <My​ros> %lua wait(3)
L157[07:53:34] <MichiBot> 1300604
L158[07:53:37] <My​ros> %lua wait(3)
L159[07:53:40] <MichiBot> 1284184
L160[07:53:53] <My​ros> %lua wait(3)
L161[07:53:56] <MichiBot> 1268434
L162[07:54:02] <My​ros> %lua wait(3)
L163[07:54:06] <MichiBot> 1290650
L164[07:57:51] <My​ros> %lua function wait(y) y = y / 1000 v = 0 x = os.clock() + y while x > os.clock() do v = v + 1 end print(v) end
L165[07:57:56] <My​ros> %lua wait(3000)
L166[07:57:59] <MichiBot> 1623998
L167[08:06:22] <My​ros> %lua m = "The Problem is this high number, it seems this uses a lot of CPU"
L168[08:24:53] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@37.152.254.61)
L169[09:10:36] <n​il> %lua for k,v in pairs(io)do print(k,v)end
L170[09:11:04] <n​il> %lua print'1'
L171[09:11:04] <MichiBot> 1
L172[09:11:14] <n​il> %lua print(#io)
L173[09:11:14] <MichiBot> 0
L174[09:11:55] <n​il> %lua for k,v in pairs(_G)do print(k,v)end
L175[09:11:55] <MichiBot> main:1: bad argument #1 to 'pairs' (table expected, got nil)
L176[09:12:09] <n​il> %lua print(getfenv(0))
L177[09:12:09] <MichiBot> main:1: attempt to call global 'getfenv' (a nil value)
L178[09:23:47] <My​ros> %lua print(getfenv[0])
L179[09:23:47] <MichiBot> main:1: attempt to index global 'getfenv' (a nil value)
L180[09:24:03] <My​ros> %lua print(getfenv)
L181[09:24:03] <MichiBot> nil
L182[09:26:39] <My​ros> %lua print(io.stdin)
L183[09:26:39] <MichiBot> nil
L184[09:34:45] <My​ros> %lua print(m:read'*l')
L185[09:34:45] <MichiBot> main:1: attempt to call method 'read' (a nil value)
L186[09:34:55] <My​ros> %lua print(m:read'*1')
L187[09:34:55] <MichiBot> main:1: attempt to call method 'read' (a nil value)
L188[09:35:13] <My​ros> %lua print(m:wait(1)) [Edited]
L189[09:35:13] <MichiBot> main:1: attempt to call method 'wait' (a nil value)
L190[09:35:31] <My​ros> %lua print(m:wait(2)) [Edited]
L191[09:35:32] <MichiBot> main:1: attempt to call method 'wait' (a nil value)
L192[12:02:48] ⇨ Joins: TPG24 (~ThePiGuy2@37.152.254.61)
L193[12:04:26] ⇦ Quits: ThePiGuy24 (~ThePiGuy2@37.152.254.61) (Ping timeout: 189 seconds)
L194[12:06:33] <My​ros> %tonkout
L195[12:06:33] <MichiBot> Golly! My​ros! You beat your own previous record of 4 hours, 1 minute and 53 seconds (By 27 minutes and 30 seconds)! I hope you're happy!
L196[12:06:34] <MichiBot> My​ros has tonked out! Tonk has been reset! They gained 0.004 tonk points! plus 0.006 bonus points for consecutive hours! Current score: 0.4044305, Position #4 Need 0.06079 more points to pass Forec​aster!
L197[12:59:30] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@37.152.254.61)
L198[13:00:31] ⇦ Quits: TPG24 (~ThePiGuy2@37.152.254.61) (Ping timeout: 204 seconds)
L199[13:31:46] <My​ros> %tonk
L200[13:31:46] <MichiBot> Bingo! My​ros! You beat your own previous record of <0 (By 37 minutes and 51 seconds)! I hope you're happy!
L201[13:31:47] <MichiBot> Myros's new record is 37 minutes and 51 seconds! No points gained for stealing from yourself. (Lost out on 0.00063)
L202[13:51:34] <My​ros> %lua print(io)
L203[13:51:34] <MichiBot> table: 0x7f221c778490
L204[13:54:59] <My​ros> %addquote Myros
L205[13:55:25] <My​ros> %quote Myros
L206[13:55:25] <MichiBot> My​ros: No quotes found for name 'My​ros'
L207[14:05:09] <n​il> %tonksnipe blue Myros
L208[14:05:09] <MichiBot> n​il: You are out of Blue Shells
L209[14:05:14] <n​il> oof
L210[14:05:19] <n​il> %tonksnipe list
L211[14:05:26] <n​il> %tonksnipe count
L212[14:05:26] <MichiBot> n​il: You have 0 Blue Shells, 1 Red Shell, 5 Green Shells, and 2 Bricks
L213[14:05:36] <n​il> %tonksnipe red Myros
L214[14:05:36] <MichiBot> n​il: You hit Myros! They lost 0.13425885 tonk points which you gain! Congratulations! Position #5 => #4 (Overtook Myros) Need 0.19504885 more points to pass Forec​aster!
L215[14:07:53] <Va​ur> %sip
L216[14:07:53] <MichiBot> You drink a hairy pearlpeas potion (New!). Vaur now has a mullet until they exit the room.
L217[14:09:10] <n​il> %tonk
L218[14:09:10] <MichiBot> I'm sorry nil, you were not able to beat Myros's record of 37 minutes and 51 seconds this time. 37 minutes and 23 seconds were wasted! Missed by 27 seconds!
L219[14:09:24] <n​il> WHAAAAAAT?????!!
L220[14:09:41] <n​il> %tonkout
L221[14:09:59] <ThePi​Guy24> can people please stop tonking in this channel
L222[14:10:15] <n​il> why
L223[14:10:33] <ThePi​Guy24> because those in the oc channel cannot see it
L224[14:12:45] <My​ros> @ThePiGuy24 what exactly should be done in #oc and what in #bots? https://tinyurl.com/yhhvg7tv
L225[14:13:21] <ThePi​Guy24> well the bots channel is intended for testing michibot, not for its main usage
L226[14:13:57] <My​ros> i'm triing to get my sleep funktion running without have a busywait
L227[14:13:58] <ThePi​Guy24> playing about with the lua here is fine, but games such as tonk should be done where people can actually see it
L228[14:14:06] <My​ros> ok
L229[14:14:27] <My​ros> is %sip, etc. part of the game?
L230[14:14:52] <My​ros> tbh i just do that from time to time, but i dont even know what it does xD
L231[14:15:35] <ThePi​Guy24> sip is just a big of fun but can have some effects, so probably do in oc
L232[14:15:40] <My​ros> ok
L233[14:16:06] <Forec​aster> I obviously meant "go spam lua commands in #bots"
L234[14:16:18] <Forec​aster> you were spamming the main channel...
L235[14:16:19] <My​ros> i understood %* stuff here
L236[14:16:45] <ThePi​Guy24> sip is just a bit of fun but can have some effects, so probably do in oc [Edited]
L237[14:17:14] <Forec​aster> and yet people have been using other commands in the main channel without anyone saying anything
L238[14:17:56] <My​ros> yea sure, but i didnt think that is would hurt anyone if i do bot stuff in a #bot channel
L239[14:25:53] <Forec​aster> sigh
L240[17:57:04] ⇨ Joins: TPG24 (~ThePiGuy2@37.152.254.61)
L241[17:58:57] ⇦ Quits: ThePiGuy24 (~ThePiGuy2@37.152.254.61) (Ping timeout: 189 seconds)
L242[18:22:16] <Mic​hiyo> Should possibly add tonk to the optional system, and then only enable it in #oc
L243[19:34:09] <Forec​aster> I'm going to refactor the database and give it it's own table at some point, then I will also make it channel-specific
L244[19:38:34] <Michiyo> Optional could be a good stopgap for now, would also stop people from tonking in PM.
L245[19:38:41] <Michiyo> cause I know that has happened in the past.
L246[19:42:54] <Forec​aster> it's already ignoring those
L247[20:31:48] ⇦ Quits: TPG24 (~ThePiGuy2@37.152.254.61) (Read error: Connection reset by peer)
L248[20:32:17] ⇨ Joins: ThePiGuy24 (~ThePiGuy2@37.152.254.61)
<<Prev Next>> Scroll to Top