<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:32:00] ⇦
Quits: Corded (~Corded@2001:19f0:8001:d8f:5400:4ff:fea5:61b0)
(Remote host closed the connection)
L2[00:33:46] ⇦
Quits: Neo (~neo@heimdall.pc-logix.com) (ZNC 1.8.2 - https://znc.in)
L3[00:34:25] ⇨
Joins: Neo (~neo@heimdall.pc-logix.com)
L4[00:34:26] <Amanda> Fiiine
L5[00:34:37] *** Server sets mode: +ntz
L6[00:34:47] <Michiyo> ffs
L7[00:35:19] <Michiyo> as soon as I enabled
WG I lose internet access ._.
L8[00:43:50] *
stephan48 quickly runs off to bed :P
L9[00:44:22] <stephan48> did you check if it
might stupidly set a default route you don't want?
L10[00:47:26] <Amanda> %choose hallucinate
or waves
L11[00:47:27] <MichiBot> Amanda: I
received a telegram from a long lost relative that only read
"hallucinate". Weird.
L12[00:48:02] <Amanda> Are you sure that
was a relative, and not chat gpt?
L13[01:24:22] <Amanda> %choose
zzzmews?
L14[01:24:23] <MichiBot> Amanda: Why would
you do that when you could do something else instead?
L15[01:24:40] <Amanda> Hrm
L16[01:24:42] <Amanda> Zzzmews
L17[01:25:29] *
Amanda tries to find elfi, spots her sleepy clinging to a wall,
walks up the wall to curl up atop for zzzpurrs
L18[01:25:40] <Amanda> Night girls
L19[01:53:49]
<AR2000>
%tonk
L20[01:53:50] <MichiBot> Shoot! AR2000!
You beat Vaur's previous record of 4 hours, 55 minutes and 36
seconds (By 3 hours, 7 minutes and 58 seconds)! I hope you're
happy!
L21[01:53:51] <MichiBot> AR2000's new
record is 8 hours, 3 minutes and 35 seconds! AR2000 also gained
0.01565 (0.00313 x 5) tonk points for stealing the tonk. Position
#6 => #5. (Overtook SoBinary) Need 0.02461 more points to pass
Liizzii!
L22[03:00:50] ⇨
Joins: Hawk777
(~Hawk777@2001:569:7e40:1300:3d29:d808:c7b1:7763)
L23[03:24:30] ⇦
Quits: Izzy (~izzy@210.1.218.92) (Ping timeout: 195
seconds)
L24[04:31:27]
<csguy> do
mending fishing rods not work with robots (even with the experience
upgrade)? (I am on 1.12.2)
L25[04:32:05]
<csguy> the
XP orbs from fishing just end up on top of the robot
L26[04:32:19]
<Forecaster> I think that only works for
real players
L27[04:33:04]
<csguy>
mending does work for pickaxes
L28[04:33:12]
<csguy> but
I assume some special handling is done for that
L29[04:35:07]
<csguy>
anyway, it's fine because it makes automating fishing more
interesting :P
L30[04:37:49]
<csguy> if
anyone gets to this message by searching: I am not sure if robots
being able to fish is just a happy little accident because they are
pretty broken (there is no visible bobber) but it does work if you
fish down
L31[04:44:56] ⇨
Joins: Izzy (~izzy@210.1.218.92)
L32[04:58:07]
<TechTastic> @csguy did you give the Robot
a XP Upgrade
L33[04:58:41] <Corded> >
<TechTastic> @csguy did you give the Robot a XP
Upgrade
L34[04:58:41]
<csguy>
yeah
L35[04:58:51]
<TechTastic> weird
L36[04:59:06]
<csguy> you
got it working before or?
L37[04:59:15]
<TechTastic> nope, just thought it
might
L38[04:59:39]
<csguy> I
looked through OC's code and I didn't really find any special
handling for fishing
L40[05:05:59]
<Forecaster> If it works for pickaxes it
should work for fishing rods
L41[05:11:02]
<Forecaster> That's very weird
L42[05:17:26]
<TechTastic> maybe it doesnt work due to
how the XP is spawned?
L45[05:25:26]
<csguy>
there is no handler for use events (so fishing is not
handled)
L46[07:55:42] ⇨
Joins: Vexatos
(~Vexatos@p200300eAef0bE2000AF096E6279ffbd5.dip0.t-ipconnect.de)
L47[07:55:42] zsh
sets mode: +v on Vexatos
L48[08:21:01] ⇦
Quits: Hawk777 (~Hawk777@2001:569:7e40:1300:3d29:d808:c7b1:7763)
(Quit: Leaving.)
L49[09:27:33] ⇦
Quits: Vexatos
(~Vexatos@p200300eAef0bE2000AF096E6279ffbd5.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)
L50[09:29:11] ⇨
Joins: Vexatos
(~Vexatos@p200300eaef0be200b21029764f983773.dip0.t-ipconnect.de)
L51[09:29:11] zsh
sets mode: +v on Vexatos
L52[10:27:14] <SquidDev> Fishing is an
absolute nightmare to implement on 1.12 from memory. Lots of
player-sepcific code, which doesn't really work with fake
players.
L53[10:29:16]
<Bunting_chj> hello, can I get some help
on TIS-3D? I just started using it and used ```DIV 256``` and
```SHR 8``` to get the upper byte of the ACC register, and it seems
that either of them filled upper byte with 0xFF.
L54[10:30:37]
<Bunting_chj> it worked anyway since the
purpose was to write upper byte to RAM, but why does division fill
the upper byte with ones? I think that would ruin some
calculations.
L55[10:31:41]
<Bunting_chj> and yeah, I am aware that
DIV would round up the remainder so SHR is better at my case.
L56[11:12:09] <fingercomp> that's because
`DIV` performs signed division and `SHR` arithmetic
(sign-extending) bit shift
L57[11:13:22]
<Bunting_chj> Ohh I understood
L58[11:14:23]
<Bunting_chj> ACC value was 0xABCD so it
was negative, right?
L59[11:14:43] <fingercomp> yeah, because
its most significant bit is 1
L60[11:15:54]
<Bunting_chj> Thanks, that really
helped!
L61[11:53:54] <MichiBot> Amanda REMINDER:
mutable rainbow
L62[12:31:05] <Amanda> %splash @Forecaster
with mutable rainbow potion
L63[12:31:05] <MichiBot> You fling a
mutable rainbow potion (New!) that splashes onto @Forecaster.
@Forecaster turns into a cat girl until they steal the concept of
stealing.
L64[12:41:44]
<Forecaster> Dangit
L65[12:49:01]
<AR2000>
%tonkout
L66[12:49:02] <MichiBot> Eureka! AR2000!
You beat your own previous record of 8 hours, 3 minutes and 35
seconds (By 2 hours, 51 minutes and 36 seconds)! I hope you're
happy!
L67[12:49:03] <MichiBot> AR2000 has tonked
out! Tonk has been reset! They gained 0.01 tonk points! plus 0.018
bonus points for consecutive hours! Current score: 0.10804,
Position #5 => #4 (Overtook Liizzii) Need 0.17845 more points to
pass CompanionCube!
L68[12:53:12] <Amanda> I don't like this
potion, it perpetuates the lie that cat girls are all theifs
L69[12:53:37] <Amanda> It's the foxgirls
you have to look out for
L70[13:00:15] <Amanda> All cat girls will
steal is your heart by being adorable
L71[13:05:11] <Amanda> Isn't that right,
Liizzii?
L72[13:11:25]
<Forecaster> I mean, I would steal a
sparkly thing if it was left unattended
L73[13:12:42] <Amanda> Hrm, maybe some
corvid DNA got into the potion
L74[13:17:14]
<Forecaster> Absolutely if it was dice
shaped
L75[13:46:56]
<Forecaster> Then I would push it off a
table
L76[13:47:03]
<Forecaster> Or maybe the other way
around
L77[14:57:09] <Amanda> %choose be
productive or cubes
L78[14:57:09] <MichiBot> Amanda: Pretty
sure I'd want you to go with "cubes"!
L79[15:09:24]
<Forecaster> %sip
L80[15:09:25] <MichiBot> You drink a
seeping mithril potion (New!). Wheels are briefly square.
L81[15:09:45]
<Forecaster> I'm sure no one noticed
that
L82[15:10:17]
<Forecaster> _steals Amanda's favourite
nap spot while she's distracted by the cubes_
L84[16:28:11] ⇨
Joins: dev
(webchat@dslb-090-186-115-091.090.186.pools.vodafone-ip.de)
L86[16:28:28]
<Forecaster> %yeshi
L87[16:28:28] <MichiBot> Hi, welcome to the
opencomputers IRC channel. If you just connected from minecraft,
yes this is a real chat. There are people here, but dont expect
people to engage with someone who just says "hi" or
similar, we are (usually) pretty busy.
L88[16:28:50] ⇦
Quits: dev
(webchat@dslb-090-186-115-091.090.186.pools.vodafone-ip.de) (Client
Quit)
L89[17:04:06] <Amanda> Not sure if super
lucky, or unlucky. The nether portal I rebuilt int he overworld
lead right to a nether fortress
L90[17:04:27]
<Forecaster> why not both
L91[17:04:56] ⇨
Joins: Hawk777
(~Hawk777@2001:569:7e40:1300:2978:fecb:50dc:f795)
L92[17:05:05] <Amanda> but hey, I've got my
blaze burner now, so I can make brass
L93[17:11:55] ⇦
Quits: Hawk777 (~Hawk777@2001:569:7e40:1300:2978:fecb:50dc:f795)
(Quit: Leaving.)
L94[17:12:38] ⇨
Joins: Hawk777
(~Hawk777@2001:569:7e40:1300:2978:fecb:50dc:f795)
L95[17:26:14] ⇨
Joins: borges (~borges@201.17.111.161)
L96[17:26:20] ⇦
Quits: borges (~borges@201.17.111.161) (Client Quit)
L97[17:42:42]
<Forecaster> (she hasn't noticed yet,
excellent)
L98[18:09:07] <Amanda> %remindme 30m check
if grafana login works again
L99[18:09:07] <MichiBot> I'll tell you
"check if grafana login works again" in 30m at 02/02/2024
06:39:07 PM
L100[18:39:08] <MichiBot> Amanda REMINDER:
check if grafana login works again
L101[18:43:36] <Amanda> Nope, but
restarting it turns it into a yes
L102[18:49:04]
<Forecaster> No but yes
L103[19:00:25]
⇨ Joins: deneme (~deneme@188.119.60.196)
L104[19:00:29] <deneme> deneme
L105[19:00:32]
⇨ Joins: Space (~Space@188.119.60.196)
L106[19:04:31] ⇦
Quits: Space (~Space@188.119.60.196) (Remote host closed the
connection)
L107[19:04:31] ⇦
Quits: deneme (~deneme@188.119.60.196) (Remote host closed the
connection)
L108[19:06:40]
<AR2000>
%tonk
L109[19:06:41] <MichiBot> Eh! AR2000! You
beat your own previous record of <0 (By 6 hours, 17 minutes and
39 seconds)! I hope you're happy!
L110[19:06:42] <MichiBot> AR2000's new
record is 6 hours, 17 minutes and 39 seconds! No points gained for
stealing from yourself. (Lost out on 0.00629)
L111[19:07:10]
<AR2000>
Oh
L112[19:08:04]
<AR2000> I
shouldn't have tonked
L113[20:32:35] <Amanda> Can't immediately
tonkout anyway
L114[21:15:46] <Amanda> %choose cubes or
continue being barely productive or halucinate
L115[21:15:46] <MichiBot> Amanda: I tried
reading my tea leaves this morning. There was something about death
and doom. Anyway, go with "cubes"
L116[21:17:04] <Amanda> %choose kbd+mouse
or controller
L117[21:17:05] <MichiBot> Amanda:
"kbd+mouse" is for cool kids!
L118[21:17:12] <Amanda> %8ball low-temp
goat-kitten?
L119[21:17:12] <MichiBot> Amanda: Reply
hazy, try again
L120[21:17:18] <Amanda> Guess not.
L121[21:17:37] *
Amanda tucks in in @Forecaster's lap with elfi, lets her watch her
play with cubes on her steamdeck
L123[21:18:07] <Amanda> Shh! Don't tell
@Nadja!
L124[21:19:04]
<AR2000> I
played too much no man's sky
L125[21:19:05]
<AR2000> I
have 16 stuck in my head
L126[22:05:26]
<Brisingr
Aerowing> I think that's a quirk in Corded.
L127[22:05:39]
<Brisingr
Aerowing> Sometimes the response comes before the initial
message.
L128[22:05:45]
<Brisingr
Aerowing> Timing is fun!
L129[22:16:48] <Hawk777> Looked like they
were in the right order to me, here in IRCland. I blame the carrier
pigeons inside Corded; the one carrying the first message probably
got tired and took a nap and was overtaken.
L130[22:26:58] ⇦
Quits: dustinm`
(~dustinm@static.38.6.217.95.clients.your-server.de) (Quit:
Leaving)
L131[22:37:29]
⇨ Joins: dustinm`
(~dustinm@static.38.6.217.95.clients.your-server.de)
L132[23:03:59] <Amanda> Message order is
not guaranteed with discord webhooka
L133[23:04:25] <Amanda> Which corded uses
to provide avatars and nicks
L134[23:25:57] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef0be200b21029764f983773.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)
L135[23:32:28] <Amanda> %choose
laptopnaptime
L136[23:32:28] <MichiBot> Amanda: Ah, I
was just about to do that!
L137[23:32:32] <Amanda> Sounds good