<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:21:28] <walksanato​r. B⃢ot.> >PwnagePineapple (He/Him): So I'd like to hear people's thoughts on an API for a TIS-3D entity radar. Basically wh…
L2[00:21:29] <walksanato​r. B⃢ot.> Relative positioning
L3[00:22:52] <walksanato​r. B⃢ot.> -> 1/2/3 (XY or Z)
L4[00:22:53] <walksanato​r. B⃢ot.> -> 0-65535 (sort)
L5[00:22:53] <walksanato​r. B⃢ot.> <- float relative coordinates to center of module of closest
L6[00:23:28] <walksanato​r. B⃢ot.> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/rayavofuve
L7[01:23:16] <Mic​hiyo> %tonk
L8[01:23:19] <MichiBot> Boom! Mic​hiyo! You beat TechT​astic's previous record of 43 minutes and 9 seconds (By 1 hour, 29 minutes and 49 seconds)! I hope you're happy!
L9[01:23:20] <MichiBot> Michiyo's new record is 2 hours, 12 minutes and 59 seconds! Michiyo also gained 0.0015 tonk points for stealing the tonk. Position #1.
L10[01:30:13] <PwnagePineap​ple (He/Him)> >walksanator. B⃢ot.: -> 1/2/3 (XY or Z)
L11[01:30:13] <PwnagePineap​ple (He/Him)> -> 0-65535 (sort)
L12[01:30:13] <PwnagePineap​ple (He/Him)> <- float relative coordinates to center of module of c…
L13[01:30:13] <PwnagePineap​ple (He/Him)> I like relative offsets, but I'm not a huge fan of double-write APIs. If I set an arbitrary lower limit on the sort, I could probably pack the bits together into one write
L14[01:30:52] <PwnagePineap​ple (He/Him)> And IMO, it's unlikely that one would need the position of the 65,535th closest entity
L15[01:33:38] <PwnagePineap​ple (He/Him)> Could probably do one bit for reversing the sort, two bits for axis (and maybe pack a euclidean distance mode in there too), and the remaining 13 bits for sort index
L16[01:34:20] <Amanda> %choose zzzmews?
L17[01:34:21] <MichiBot> Ama​nda: I talked to the Swedish Chef, he said "Bork bork!" I think that means yes?
L18[01:34:21] <PwnagePineap​ple (He/Him)> Hmmm... What should I return if no such entity exists? I feel like an HCF is a bit harsh here
L19[01:35:05] <Amanda> Actually that me- of wait, that's right! Good bot, you're learning swedish!
L20[01:37:01] * Amanda tucks in around elfi, meows sleepily about her day continuing to set up a new distro on her laptop, and hit she learned that her monitor is broken
L21[01:37:31] <walksanato​r. B⃢ot.> >PwnagePineapple (He/Him): Hmmm... What should I return if no such entity exists? I feel like an HCF is a bit hars…
L22[01:37:31] <walksanato​r. B⃢ot.> You can represent NaN in float
L23[01:37:59] <PwnagePineap​ple (He/Him)> I'm not sure if NaN or INF is better
L24[01:39:15] <walksanato​r. B⃢ot.> Inf would indicate something further then the max value of a float
L25[01:39:26] <PwnagePineap​ple (He/Him)> I do plan on range-limiting it, so NaN is probably the way to go
L26[01:39:29] <walksanato​r. B⃢ot.> NaN means nothin
L27[01:40:59] <walksanato​r. B⃢ot.> Luckily NaN is easy to represent https://tinyurl.com/2ao4b7dd
L28[01:41:02] <PwnagePineap​ple (He/Him)> ~~Return negative zero~~
L29[01:41:10] <Amanda> Night girls
L30[01:41:49] <walksanato​r. B⃢ot.> >PwnagePineapple (He/Him): ~~Return negative zero~~
L31[01:41:50] <walksanato​r. B⃢ot.> True
L32[01:41:50] <walksanato​r. B⃢ot.> And that would be easy to test against
L33[01:42:10] <Mic​hiyo> Night Amanda
L34[01:42:20] <Amanda> Nan isn't a single value, it's a class of the bit representation, which is nice Nan can != Nan
L35[01:43:38] * Amanda lays against @Michiyo does a heccen zzzmew
L36[01:45:25] <walksanato​r. B⃢ot.> I mean you can validate NaN via (bit mask `FC00` results in `7C00`) and(bitmask `03FF` results in a non-zero value)
L37[01:45:43] <walksanato​r. B⃢ot.> Right bitmask is `band` instruction
L38[01:47:55] <walksanato​r. B⃢ot.> Nvm you just need to bitmask `7C00` and see if that equals `7C00` (all exponent bits are on)
L39[01:47:55] <walksanato​r. B⃢ot.> And if bitmask `03FF` is not zero
L40[01:48:47] <walksanato​r. B⃢ot.> Since you can have "negative nan" without the -
L41[01:48:55] <PwnagePineap​ple (He/Him)> Maybe I should add a "jump if NaN" instruction
L42[01:49:50] <walksanato​r. B⃢ot.> `jin` and `jnn` Jump Is NaN, Jump Not NaN
L43[01:54:17] <walksanato​r. B⃢ot.> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/rulanuvubi
L44[01:57:18] <walksanato​r. B⃢ot.> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/anebewihug
L45[01:58:06] <walksanato​r. B⃢ot.> Hmm mabey instead of a String module
L46[01:58:06] <walksanato​r. B⃢ot.> Why not a Array module
L47[01:59:18] <walksanato​r. B⃢ot.> Because array module could have `RUN` Read Untill Null
L48[02:00:42] <PwnagePineap​ple (He/Him)> I briefly considered implementing my own floating point execution module
L49[02:01:03] <PwnagePineap​ple (He/Him)> Then I decided extending the existing execution module was less work
L50[02:03:26] <PwnagePineap​ple (He/Him)> Also I feel like regexes are waaaay more abstract than TIS-3D is meant to be used for
L51[02:20:40] ⇨ Joins: Hawk777 (~Hawk777@2607:c000:8295:ee00:fb22:84e2:b460:24b1)
L52[03:00:58] <walksanato​r. B⃢ot.> Dumb VR game idea
L53[03:00:58] <walksanato​r. B⃢ot.> A fighting game but 1 player controls the legs and hips and the other controls the Armand head
L54[03:22:11] <TechT​astic> https://tenor.com/view/right-austin-st-john-red-ranger-jason-lee-scott-mighty-morphin-power-rangers-gif-19518912
L55[03:24:54] <walksanato​r. B⃢ot.> Ah so the 5v5 mode would be... wait no each player controlling a leg is hard
L56[03:25:46] <walksanato​r. B⃢ot.> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/revofisuja
L57[03:25:48] <TechT​astic> https://tenor.com/view/keith-voltron-gif-9694002
L58[03:27:08] <walksanato​r. B⃢ot.> Yeah the torso/right arm guy have to cordinate
L59[03:27:25] <walksanato​r. B⃢ot.> So that you get that little bit more force from the rotation of your torso
L60[03:43:18] <SoBi​nary> %tonkout
L61[03:43:31] <MichiBot> Waesucks! SoBi​nary! You beat Mic​hiyo's previous record of 2 hours, 12 minutes and 59 seconds (By 7 minutes and 11 seconds)! I hope you're happy!
L62[03:43:32] <MichiBot> SoBi​nary has stolen the tonkout! Tonk has been reset! They gained 0.002 tonk points! plus 0.001 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.1281. Position #7 Need 0.03283 more points to pass walksanato​r. B⃢ot.!
L63[03:50:22] <Saphire> %blep
L64[03:50:25] <Saphire> Awh
L65[03:53:36] <walksanato​r. B⃢ot.> %sip
L66[03:53:43] <MichiBot> You drink a proprietary ferozium potion (New!). walksanator. B⃢ot. feels a sudden surge of static electricity.
L67[04:34:34] <TechT​astic> %down
L68[04:34:37] <MichiBot> You drink a timeless toxictop potion (New!). Some tonk points fly by. TechTastic caught 0.057 tonk points. (Rem. uses: 0)
L69[04:34:54] <TechT​astic> %tonkleaders
L70[04:34:55] <MichiBot> https://michibot.pc-logix.com/tonk
L71[04:35:30] <TechT​astic> %greenshell RedstoneParkour
L72[04:35:34] <MichiBot> TechT​astic: You hit RedstoneParkour! They lost 0.02905543 tonk points which you gain! Congratulations! Position #8 => #7 (Overtook SoBinary) Need 0.00502599 more points to pass walksanato​r. B⃢ot.!
L73[04:36:12] <TechT​astic> %tonk
L74[04:36:15] <MichiBot> Wut! TechT​astic! You beat SoBi​nary's previous record of <0 (By 52 minutes and 44 seconds)! I hope you're happy!
L75[04:36:16] <MichiBot> TechTastic's new record is 52 minutes and 44 seconds! TechTastic also gained 0.00088 tonk points for stealing the tonk. Position #7. Need 0.00414599 more points to pass walksanato​r. B⃢ot.!
L76[04:37:22] <Mic​hiyo> You couldn't even wait the 8 minutes for a full hour ._.
L77[04:37:23] <Mic​hiyo> lol
L78[04:49:02] <SoBi​nary> full hour doesn't give multipliers though does it
L79[04:49:20] ⇦ Quits: Hawk777 (~Hawk777@2607:c000:8295:ee00:fb22:84e2:b460:24b1) (Quit: Leaving.)
L80[05:41:49] <Va​ur> %tonk
L81[05:41:49] <MichiBot> By my throth! Va​ur! You beat TechT​astic's previous record of 52 minutes and 44 seconds (By 12 minutes and 50 seconds)! I hope you're happy!
L82[05:41:50] <MichiBot> Vaur's new record is 1 hour, 5 minutes and 35 seconds! Vaur also gained 0.00021 tonk points for stealing the tonk. Position #4. Need 0.328185 more points to pass Compan​ionCube!
L83[05:42:24] <walksanato​r. B⃢ot.> %sip
L84[05:42:24] <MichiBot> You drink a wonderful orange potion (New!). walksanator. B⃢ot.: Nothing seemed to happen...
L85[05:42:48] <Va​ur> %sip
L86[05:42:48] <MichiBot> You drink an unaligned titanium potion (New!). A bard starts playing a lute behind Vaur until an elephant forgets.
L87[05:42:55] <walksanato​r. B⃢ot.> Seemed will always be vaguely threatening
L88[05:42:56] <walksanato​r. B⃢ot.> Source: I play D&D
L89[05:51:58] ⇨ Joins: Hawk777 (~Hawk777@2607:c000:8295:ee00:fb22:84e2:b460:24b1)
L90[05:53:33] <Forec​aster> Maybe that's the intent
L91[05:55:17] <Va​ur> %sip
L92[05:55:17] <MichiBot> You drink a chewy dalekanium potion (New!). 3 nearby pebbles suddenly shift slightly in Vaur's direction.
L93[06:13:14] <Va​ur> %sip
L94[06:13:18] <MichiBot> You drink a goopy diamond potion (New!). A bard starts playing a lute behind Vaur until someone turns on a lamp and then off again.
L95[06:16:38] <Elfi> %inv add a morb
L96[06:16:40] * MichiBot summons 'a morb' and adds to her inventory. I could get some good swings in with this.
L97[06:17:32] <Elfi> %inv add a loot bug
L98[06:17:57] <Elfi> %give MichiBot a loot bug
L99[06:17:58] * MichiBot accepts the loot bug and adds it to her inventory
L100[06:25:08] <Elfi> Chat deserves cute things
L101[06:25:12] <Elfi> Like me!
L102[06:25:39] * Elfi climbs onto Amanda and dozes in her floof, zzzzz
L103[07:18:08] <AR2​000> Ocelot news : v1.3.0.1 fix a crash when a relay is present in the workspace
L104[08:12:45] <SquidDev> %tonk
L105[08:12:50] <MichiBot> Aw jeez! Squi​dDev! You beat Va​ur's previous record of 1 hour, 5 minutes and 35 seconds (By 1 hour, 25 minutes and 23 seconds)! I hope you're happy!
L106[08:12:51] <MichiBot> SquidDev's new record is 2 hours, 30 minutes and 59 seconds! SquidDev also gained 0.00284 (0.00142 x 2) tonk points for stealing the tonk. Position #11. Need 0.01441302 more points to pass S​ky!
L107[08:24:37] ⇨ Joins: ben_mkiv (~ben_mkiv@200116B80001a400fE3497FFFeA975f2.dip.versatel-1u1.de)
L108[08:33:35] <walksanato​r. B⃢ot.> %sip
L109[08:33:39] <MichiBot> You drink a frosty dalekanium potion (New!). walksanator. B⃢ot.'s pockets suddenly contain 1d​10 => 2 Dalekanium colored marbles.
L110[08:33:56] <walksanato​r. B⃢ot.> What are the marbles usag
L111[08:40:22] ⇦ Quits: Hawk777 (~Hawk777@2607:c000:8295:ee00:fb22:84e2:b460:24b1) (Quit: Leaving.)
L112[08:55:05] <SoBi​nary> %sip
L113[08:55:18] <MichiBot> You drink a sedimented bavarium potion (New!). SoBinary feels the need to use "%shell".
L114[08:57:42] <Forec​aster> My packages! https://tinyurl.com/2cyqbudl
L115[09:01:42] <AR2​000> is `io.stderr` a thing ?
L116[09:01:43] <AR2​000> Because when I use it in a program it isn't, but in the `lua` interpreter it is
L117[09:48:50] <Forec​aster> Have you required io in the program?
L118[10:36:11] <ThePi​Guy24> io doesnt need to be required?
L119[10:47:05] <ThePi​Guy24> the global one and the required one are slightly different for some reason
L120[10:47:52] <ThePi​Guy24> the only difference i can tell is that the global one has the __index metatable function set
L121[10:48:06] <SoBi​nary> %tonkout
L122[10:48:08] <MichiBot> Wah! SoBi​nary! You beat Squi​dDev's previous record of 2 hours, 30 minutes and 59 seconds (By 4 minutes and 19 seconds)! I hope you're happy!
L123[10:48:09] <MichiBot> SoBi​nary has stolen the tonkout! Tonk has been reset! They gained 0.002 tonk points! plus 0.001 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.1316. Position #8 Need 0.02518401 more points to pass TechT​astic!
L124[10:54:48] <MichiBot> Amanda REMINDER: investigate why renovate-bot isn't running
L125[10:59:29] * Amanda detects a fairy fren in her floof, carefully reconstitutes, then meows and looks around
L126[11:00:59] <Va​ur> %sip
L127[11:01:05] <MichiBot> You drink a warpy rock potion (New!). A tiny genie appears, gives Vaur a thumbs up, and poofs away.
L128[11:03:00] <Amanda> nadja: good mews! My subconscious has dreamt up the worst possible themed resort idea! Colonial expansion into a racist stereotype of an island nation! The inhabitants rightly hate you and give you asinine tasks to earn the "local" currency, which everything uses!
L129[11:03:45] <Amanda> Oh also there's some kind of supernatural murder mystery
L130[11:12:10] <AR2​000> >Forecaster: Have you required io in the program?
L131[11:12:10] <AR2​000> Yes I did
L132[11:14:39] <nadja> Amanda: Uhhhhh did you just invent Animal Crossing, Amanda edition?
L133[11:15:07] <Amanda> nadja: animal crossing, but IRL
L134[11:15:14] <AR2​000> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/ifavujobaw
L135[11:15:32] <AR2​000> Guess who forgot a `%s`
L136[11:18:25] <Amanda> I'm guessing @Inari
L137[11:18:36] <Amanda> Those foxen are always forgetting formatting params
L138[11:34:59] <Forec​aster> %sip
L139[11:35:01] <MichiBot> You drink an included toxictop potion (New!). Forecaster hears a train whistle in the distance.
L140[11:35:13] <Forec​aster> Aw I missed the train
L141[11:35:25] <Forec​aster> It is coming straight at me, I can't tell
L142[11:35:36] <Forec​aster> Or it's*
L143[11:42:34] <Amanda> Don't worry, I definately wasn't sleeping on the tracks, causing it to derail when it hit my force fields
L144[11:54:37] <Forec​aster> Does anyone know a way to make oos stop silently catching events in an event listener
L145[11:55:21] <kim​apr> suddenly had an idea: can robots interact with ender chests?
L146[11:58:34] <Amanda> @Forecaster wrap the entire event listener with a pcall, otherwise no
L147[11:58:46] <Amanda> oh wait, catch events? no
L148[11:59:08] <Forec​aster> No, that should have said errors
L149[11:59:55] <Amanda> Ah
L150[12:00:25] <SoBi​nary> %tonk
L151[12:00:26] <MichiBot> Zounderkite! SoBi​nary! You beat your own previous record of <0 (By 1 hour, 12 minutes and 18 seconds)! I hope you're happy!
L152[12:00:27] <MichiBot> SoBinary's new record is 1 hour, 12 minutes and 18 seconds! No points gained for stealing from yourself. (Lost out on 0.00121)
L153[12:00:33] <SoBi​nary> wait
L154[12:00:33] <Amanda> Then no, other than the pcall idea. You could make a function that returns a lambda wrapping the passes function with pcall though
L155[12:03:06] * Amanda beams a mug of iced coffee and some doughnuts by herself for Elfi when she awakes
L156[12:05:49] <Forec​aster> The "bad argument" error is completely useless without the full stacktrace
L157[12:07:10] <Amanda> Then use xpcall instead of pcall
L158[12:09:36] <Amanda> xpcall with debug.traceback
L159[12:17:53] <Amanda> %choose waves or factory
L160[12:17:53] <MichiBot> Ama​nda: A nearby lamp replies "Not factory!".
L161[13:08:09] <Redston​eParkour> AR2000: try *not* requiring the io library
L162[13:21:54] <Amanda> %choose waves; em or pressure
L163[13:21:55] <MichiBot> Ama​nda: em waves
L164[13:54:38] <Forec​aster> how strange...
L165[13:54:56] <Forec​aster> os.time is supposed to return the world time in seconds
L166[13:55:18] <Forec​aster> but if I call it, wait 10 seconds and call it again, the difference is 700?
L167[14:02:49] <TechT​astic> %greenshell RedstoneParkour
L168[14:02:50] <MichiBot> TechT​astic: You are out of Green Shells
L169[14:03:05] <TechT​astic> %redshell RedstoneParkour
L170[14:03:05] <MichiBot> TechT​astic: You can't snipe right now. Try again in 14 hours, 32 minutes and 26 seconds.
L171[14:03:20] <TechT​astic> %down
L172[14:03:21] <MichiBot> You drink a forked purple potion (New!). The bottle turns into an oculemon dagger.
L173[14:03:46] <TechT​astic> %tonkout
L174[14:03:46] <MichiBot> Huzzah! TechT​astic! You beat SoBi​nary's previous record of 1 hour, 12 minutes and 18 seconds (By 51 minutes and 1 second)! I hope you're happy!
L175[14:03:47] <MichiBot> TechT​astic has stolen the tonkout! Tonk has been reset! They gained 0.002 tonk points! plus 0.001 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.16028401. Position #7 Need 0.00064599 more points to pass walksanato​r. B⃢ot.!
L176[14:07:20] <SoBi​nary> %up
L177[14:07:22] <SoBi​nary> wait
L178[14:07:26] <SoBi​nary> %down
L179[14:07:26] <MichiBot> You drink a prickly redstone potion (New!). The potion bottle insults SoBinary's haircut.
L180[14:07:39] <SoBi​nary> i don't even have one, silly
L181[14:10:09] <Marc​elsky> oc fabric port when
L182[14:11:44] <TechT​astic> %down
L183[14:11:53] <Forec​aster> when you make one
L184[14:12:55] <TechT​astic> I've semi-thought about making my own computer mod but ik how complex this shit gets so not rn
L185[14:14:53] <TechT​astic> I wanted to go a more mystical route, breaking computers down to a point where its just energy running through gold inlays and various crystals
L186[14:15:58] <TechT​astic> %down
L187[14:15:58] <MichiBot> You drink a ripe rainbow potion (New!). TechTastic is easily spotted.
L188[15:04:26] <SoBi​nary> %tonk
L189[15:04:26] <MichiBot> Golly! SoBi​nary! You beat TechT​astic's previous record of <0 (By 1 hour and 40 seconds)! I hope you're happy!
L190[15:04:27] <MichiBot> SoBinary's new record is 1 hour and 40 seconds! SoBinary also gained 0.00101 tonk points for stealing the tonk. Position #8. Need 0.02767401 more points to pass TechT​astic!
L191[15:04:38] <Amanda> %remindme 30m check renovate
L192[15:04:38] <MichiBot> I'll tell you "check renovate" in 30m at 04/07/2023 03:34:38 PM
L193[15:16:33] <walksanato​r. B⃢ot.> %sip
L194[15:16:34] <MichiBot> You drink a muddy stainless steel potion (New!). walksanator. B⃢ot. turns into a rock cat wolf until they say the phrase "Nice Awesome".
L195[15:17:13] <walksanato​r. B⃢ot.> I agree with this tweatmwnt
L196[15:31:27] <Va​ur> %sip
L197[15:31:28] <MichiBot> You drink a sedimented dilithium potion (New!). Vaur turns into a gold bear boy until they use "Soup" in a sentence.
L198[15:31:40] <Va​ur> Soup ! Soup !
L199[15:34:39] <MichiBot> Amanda REMINDER: check renovate
L200[15:44:01] ⇦ Quits: ben_mkiv (~ben_mkiv@200116B80001a400fE3497FFFeA975f2.dip.versatel-1u1.de) (Quit: Leaving)
L201[16:10:23] <TechT​astic> %down
L202[16:10:24] <MichiBot> You drink a salty solarium potion (New!). After drinking the potion TechTastic notices a label that says "Side effects may include giggle fits and excessive monologuing."
L203[16:10:27] <S​ky> %sip
L204[16:10:27] <MichiBot> You drink a steady copper potion (New!). Sky's left sock is now cursed.
L205[16:10:40] <S​ky> im not wearing a sock
L206[16:10:40] <S​ky> hah
L207[16:18:34] <SoBi​nary> %sip
L208[16:18:34] <MichiBot> You drink a gloomy ocean potion (New!). A tiny cloud appears with a ridiculous smile on it. It follows SoBinary until hell has a nice fall.
L209[16:19:31] <TechT​astic> %down
L210[16:21:04] <TechT​astic> >TechTastic: %down
L211[16:21:05] <TechT​astic> .
L212[16:21:05] <MichiBot> You drink a shining tuna potion (New!). After drinking the potion TechTastic realizes the bottle has their face on it.
L213[16:46:20] <Mic​hiyo> %tonk
L214[16:46:20] <MichiBot> Darn it! Mic​hiyo! You beat SoBi​nary's previous record of 1 hour and 40 seconds (By 41 minutes and 13 seconds)! I hope you're happy!
L215[16:46:21] <MichiBot> Michiyo's new record is 1 hour, 41 minutes and 54 seconds! Michiyo also gained 0.00138 (0.00069 x 2) tonk points for stealing the tonk. Position #1.
L216[16:46:29] <Mic​hiyo> oh.. huh
L217[16:48:53] <TechT​astic> Huh
L218[16:49:13] <TechT​astic> Couldve sworn it was not that late...
L219[16:59:39] <Saphire> Chirrup
L220[17:35:08] <SoBi​nary> %sip
L221[17:35:09] <MichiBot> You drink a sedimented pussplum potion (New!). SoBinary's left sock is now cursed.
L222[17:35:21] <SoBi​nary> nooOOOOO
L223[18:36:57] <PwnagePineap​ple (He/Him)> %tonk
L224[18:36:58] <MichiBot> By my throth! PwnagePineap​ple (He/Him)! You beat Mic​hiyo's previous record of 1 hour, 41 minutes and 54 seconds (By 8 minutes and 43 seconds)! I hope you're happy!
L225[18:36:59] <MichiBot> PwnagePineapple (He/Him)'s new record is 1 hour, 50 minutes and 37 seconds! PwnagePineapple (He/Him) also gained 0.0003 (0.00015 x 2) tonk points for stealing the tonk. Position #12. Need 0.027469 more points to pass Squi​dDev!
L226[18:37:49] <TechT​astic> %down
L227[18:37:49] <MichiBot> You drink a slimy rock potion (New!). TechTastic's pockets suddenly contain 1d​10 => 6 Violet marbles.
L228[18:48:38] <walksanato​r. B⃢ot.> %sip
L229[18:48:39] <MichiBot> You drink a muddy chocolate potion (New!). A bard behind walksanator. B⃢ot. suddenly stops playing. They were most likely eaten by a monster.
L230[18:49:07] <Va​ur> %sip
L231[18:49:07] <MichiBot> You drink a shimmering aether potion (New!). Vaur's feet tingle briefly.
L232[19:02:30] <Va​ur> %sip
L233[19:02:30] <MichiBot> You drink a wonderful rainbow potion (New!). Vaur: Nothing seemed to happen...
L234[19:10:39] <walksanato​r. B⃢ot.> %sip
L235[19:10:39] <MichiBot> You drink a boiling salmon potion (New!). walksanator. B⃢ot. zones out for 2 minutes.
L236[19:18:40] <Va​ur> %sip
L237[19:18:41] <MichiBot> You drink a fragrant amethyst potion (New!). Vaur's pockets suddenly contain 1d​10 => 5 Pearlpeas colored marbles.
L238[19:21:13] <TechT​astic> %down
L239[19:21:13] <MichiBot> You drink a prickly octiron potion (New!). TechTastic's eyebrows vanish for 3 hours.
L240[19:21:40] <TechT​astic> https://tenor.com/view/peekaboo-reveal-its-me-makeup-no-eyebrows-gif-13806379
L241[19:38:57] <Amanda> %choose waves; em or pressure
L242[19:38:58] <MichiBot> Ama​nda: pressure waves
L243[19:39:05] <Va​ur> %sip
L244[19:39:05] <MichiBot> You drink a forked grass potion (New!). The potion contained a computer virus! It sent a message to all of Vaur's friends telling them that they love them!
L245[19:41:34] <walksanato​r. B⃢ot.> %sip
L246[19:41:35] <MichiBot> You drink a cloudy spice potion (New!). walksanator. B⃢ot. forgets the location of a great treasure.
L247[19:42:27] <TechT​astic> %tonkout
L248[19:42:27] <MichiBot> I'm sorry TechT​astic, you were not able to beat PwnagePineap​ple (He/Him)'s record of 1 hour, 50 minutes and 37 seconds this time. 1 hour, 5 minutes and 29 seconds were wasted! Missed by 45 minutes and 8 seconds!
L249[19:42:49] <TechT​astic> Welp
L250[19:43:11] <TechT​astic> %down
L251[19:43:11] <MichiBot> You drink an unaligned spice potion (New!). TechTastic turns into a chocolate shark water until they see a unicorn.
L252[19:47:04] <walksanato​r. B⃢ot.> %sip
L253[19:51:29] <Va​ur> %sip
L254[19:51:29] <MichiBot> You drink a viscous aegisalt potion (New!). A water flies past that vaguely resembles someone Vaur knows.
L255[20:02:51] <Forec​aster> Hm
L256[20:03:32] <Forec​aster> Todo: implement a system that disables effects after a certain number of times
L257[20:04:17] <Forec​aster> Every, say, 2 days re-enable a random effect
L258[20:06:29] <Amanda> I thought the potions were reset every 2 days?
L259[20:06:40] <Amanda> oh
L260[20:06:51] <Amanda> You mean that effect won't be rolled again in a new potion?
L261[20:08:16] <Forec​aster> Yes
L262[20:32:15] <TechT​astic> %down
L263[20:32:15] <MichiBot> You drink an invisible aegisalt potion (New!). TechTastic falls into a shaft and drop 2 floors!
L264[20:40:56] <Forec​aster> Okay... Apparently if I calculate the difference between os.time now and then, and divide it by 72 I get something that looks like the actual time that's passed in seconds...
L265[20:51:30] <Forec​aster> I have no idea what this magic number is from...
L266[21:15:36] <Amanda> %choose laptopnaptime?
L267[21:15:36] <MichiBot> Ama​nda: I wouldn't do that if I were you...
L268[21:15:49] <Amanda> Okay, but, consider: laptopnaptime and halucinate...
L269[21:15:58] * Amanda curls up around Elfi, reads more stories of lesibabs to her
L270[23:31:37] <SquidDev> %tonk
L271[23:31:39] <MichiBot> Gadsbudlikins! Squi​dDev! You beat PwnagePineap​ple (He/Him)'s previous record of 1 hour, 50 minutes and 37 seconds (By 1 hour, 58 minutes and 33 seconds)! I hope you're happy!
L272[23:31:40] <MichiBot> SquidDev's new record is 3 hours, 49 minutes and 11 seconds! SquidDev also gained 0.00396 (0.00198 x 2) tonk points for stealing the tonk. Position #11. Need 0.01045302 more points to pass S​ky!
L273[23:32:29] ⇨ Joins: CoolestDuelest (~CoolestDu@185.107.192.68)
L274[23:33:14] ⇦ Quits: CoolestDuelest (~CoolestDu@185.107.192.68) (Client Quit)
L275[23:33:50] ⇨ Joins: CoolestDuelest (~CoolestDu@185.107.192.68)
L276[23:33:57] ⇦ Quits: CoolestDuelest (~CoolestDu@185.107.192.68) (Client Quit)
L277[23:47:53] <Amanda> %choose rain box $; now or later
L278[23:47:53] <MichiBot> Ama​nda: rain box now
L279[23:52:19] ⇦ Quits: jackie (~jackie@banana-new.kilobyte22.de) (Ping timeout: 183 seconds)
L280[23:52:19] ⇦ Quits: kilobyte (~kilobyte2@banana-new.kilobyte22.de) (Ping timeout: 183 seconds)
L281[23:52:29] ⇦ Quits: nadja (~dequbed@banana-new.kilobyte22.de) (Ping timeout: 189 seconds)
L282[23:53:44] ⇨ Joins: jackie (~jackie@banana-new.kilobyte22.de)
L283[23:53:44] zsh sets mode: +v on jackie
L284[23:53:48] ⇨ Joins: kilobyte (~kilobyte2@banana-new.kilobyte22.de)
L285[23:53:48] zsh sets mode: +v on kilobyte
L286[23:53:50] ⇨ Joins: nadja (~dequbed@banana-new.kilobyte22.de)
<<Prev Next>> Scroll to Top