<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:30:55] <The_Stargazer> %tonk
L2[00:30:55] <MichiBot> I'm sorry The_Stargazer, you were not able to beat CompanionCube's record of 5 hours, 16 minutes and 10 seconds this time. 4 hours, 4 minutes and 18 seconds were wasted! Missed by 1 hour, 11 minutes and 51 seconds!
L3[00:33:39] ⇦ Quits: {Opsimath}Shawn ({Opsimath}Shawn!~shawn156@c-76-25-73-212.hsd1.co.comcast.net) (Read error: Connection reset by peer)
L4[01:14:53] <The_Stargazer> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/isazidayuy
L5[01:14:58] <The_Stargazer> or will it do something else entirely
L6[01:23:16] <payonel> first of all: https://www.lua.org/pil/3.5.html -- which tells us precedence is +, >, ==, and, or -- so your and will pair bank>price+200 with type==1
L7[01:23:44] <payonel> speaking with parens, it would be equivalent to if (bank>price+200 and type==1) or (type==2) or (type==7) then ... end
L8[01:24:10] <payonel> note, however, this is requiring that your user has more than 200 left over, not 200 left over
L9[01:24:28] <payonel> in other words: (price+200) > (price+200) is false
L10[01:24:56] <The_Stargazer> so I should use `if players[1].bank => board[spaceP1].price + 200 and board[spaceP1].type == 1 or board[spaceP1].type == 2 or board[spaceP1].type == 7 then`
L11[01:24:56] <The_Stargazer> ?
L12[01:25:18] <The_Stargazer> wait, no
L13[01:25:32] <payonel> yes, but honestly, if your condition wasn't obvious -- you should be using more parens and you should split this up over multiple lines to be more verbose
L14[01:25:50] <The_Stargazer> `if players[1].bank => board[spaceP1].price + 200 and board[spaceP1].type == 1 and players[1].bank => board[spaceP1].price + 200 or board[spaceP1].type == 2 and players[1].bank => board[spaceP1].price + 200 or board[spaceP1].type == 7 and players[1].bank => board[spaceP1].price + 200 then`
L15[01:25:50] <The_Stargazer> this?
L16[01:26:00] <The_Stargazer> is that right?
L17[01:26:05] <payonel> oh, you meant to check the purchase and type each time?
L18[01:26:09] <The_Stargazer> yeah
L19[01:26:14] <The_Stargazer> type has to be equal to 1, 2, or 7
L20[01:26:25] <The_Stargazer> and the bank must have at least 200 left over
L21[01:26:35] <payonel> then just say `if (type == 1 or type == 2 or type == 7) and (bank >= price + 200) then ... end`
L22[01:26:41] <The_Stargazer> it looks like burnt spaghetti I know
L23[01:26:51] <The_Stargazer> oh, you can use ()'s in `if` statements?
L24[01:26:56] <payonel> and i wouldn't put this in 1 condtional, for pete's sake
L25[01:27:00] <payonel> of course ...
L26[01:27:02] <The_Stargazer> well then
L27[01:27:07] <The_Stargazer> TIL
L28[01:27:10] <payonel> :)
L29[01:27:32] <The_Stargazer> is it possible to concatenate two variable names to make a single name?
L30[01:27:39] <The_Stargazer> like, `spaceP..num`
L31[01:27:55] <The_Stargazer> so I don't have to do six `if` statements or w/e
L32[01:31:10] <payonel> btw, i'd use more helpful methods to abstract this check, but that's style i suppose
L33[01:31:34] <payonel> you want to reflect on your local var names and build a lookup name to another variable?
L34[01:31:46] <payonel> are these local variables? globals? table fields?
L35[01:33:51] <The_Stargazer> spaceP(1 - 6) is a variable available to all `player()` instances or w/e a running function is called
L36[01:34:03] <The_Stargazer> `turn` is also available to all `player()` instances
L37[01:35:12] <payonel> why do you say player() with () ?
L38[01:35:31] <payonel> and are you saying spaceP1, spaceP2, ..., spaceP6 are your var names?
L39[01:35:37] <The_Stargazer> yea
L40[01:35:47] <The_Stargazer> and `player(num)` is a function
L41[01:36:17] <payonel> so you would call player(1), and are you saying you'd want to access spaceP1, and for player(2) you want to use spaceP2 ?
L42[01:36:21] <The_Stargazer> looks like this https://pastebin.com/X8QH2Yy4
L43[01:36:23] <The_Stargazer> yeah
L44[01:36:52] <payonel> well, i would use a spaceP table, and not separate 1-6 suffixes
L45[01:36:57] <The_Stargazer> rn I have five `elseif` statements that'll have 99% the same code as the first `if` statement
L46[01:36:57] <payonel> then just use the same num in that table
L47[01:37:12] <The_Stargazer> how would I go about doing that? would it decrease the program size?
L48[01:37:43] <payonel> first of all, declare `spaceP = {}` and in place of all spaceP1 just use spaceP[1]
L49[01:38:40] <The_Stargazer> ok
L50[01:39:07] <The_Stargazer> i'm confused
L51[01:39:14] <The_Stargazer> how would `spaceP` be populated?
L52[01:39:26] <The_Stargazer> wait, i know how
L53[01:39:42] <The_Stargazer> something like Code Block pastebined https://paste.pc-logix.com/lolajeroro?
L54[01:40:37] <The_Stargazer> and do `local spaceP = {1, 1, 1, 1, 1, 1}`?
L55[01:40:53] <The_Stargazer> to initialize all player's locations to square 1
L56[01:41:45] <The_Stargazer> is that valid?
L57[01:43:33] <The_Stargazer> hmm
L58[01:43:38] <The_Stargazer> https://pastebin.com/fR8hGcVU
L59[01:43:38] <The_Stargazer> always rolling a 5 and a 5
L60[01:43:53] <The_Stargazer> anyway, i gtg
L61[01:44:01] <The_Stargazer> bye
L62[01:59:41] ⇨ Joins: {Opsimath}Shawn ({Opsimath}Shawn!~shawn156@c-76-25-73-212.hsd1.co.comcast.net)
L63[02:38:28] <Forecaster> %sip
L64[02:38:28] <MichiBot> You drink a porous quicksilver potion (New!). Forecaster gains an extra strand of hair on their face until they find true love.
L65[02:42:19] ⇨ Joins: bauen1 (bauen1!~bauen1@ipbcc03b58.dynamic.kabel-deutschland.de)
L66[02:56:14] ⇦ Quits: bauen1 (bauen1!~bauen1@ipbcc03b58.dynamic.kabel-deutschland.de) (Ping timeout: 206 seconds)
L67[02:58:21] *** Forecaster is now known as Doooop|3
L68[03:08:39] ⇦ Quits: daniel (daniel!~quassel@jupiter.danger-it.de) (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
L69[03:27:30] ⇨ Joins: bauen1 (bauen1!~bauen1@ipbcc03b58.dynamic.kabel-deutschland.de)
L70[04:04:36] ⇦ Quits: bauen1 (bauen1!~bauen1@ipbcc03b58.dynamic.kabel-deutschland.de) (Ping timeout: 189 seconds)
L71[04:15:24] ⇦ Quits: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@mue-88-130-63-115.dsl.tropolys.de) (Ping timeout: 378 seconds)
L72[04:19:00] ⇨ Joins: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de)
L73[04:26:24] ⇨ Joins: daniel (daniel!~quassel@jupiter.danger-it.de)
L74[04:28:58] ⇦ Quits: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de) (Read error: -0x1: UNKNOWN ERROR CODE (0001))
L75[04:33:32] ⇨ Joins: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de)
L76[04:46:03] ⇦ Quits: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de) (Read error: Connection reset by peer)
L77[04:48:32] <Forecaster> http://www.threepanelsoul.com/comic/realistic-art
L78[04:48:42] <Forecaster> probably true fact about cats
L79[05:15:09] ⇨ Joins: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de)
L80[05:18:49] ⇦ Quits: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de) (Ping timeout: 206 seconds)
L81[05:32:52] ⇦ Quits: {Opsimath}Shawn ({Opsimath}Shawn!~shawn156@c-76-25-73-212.hsd1.co.comcast.net) (Read error: Connection reset by peer)
L82[05:34:46] <Forecaster> the dice matching expression now looks like this `(\d*)d(\d+)(?:kh?(\d+))?(?:kl(\d+))?(!?!?)(?:(<?>?)(\d+))?`
L83[05:37:38] *** Doooop|3 is now known as Forecaster
L84[05:38:58] <Forecaster> hrm
L85[05:39:08] <Forecaster> success counting is going to be tricky...
L86[06:05:14] <Forecaster> not the actual counting, that's easy, but how to display it
L87[06:19:28] <Izaya> holy fuck
L88[06:19:34] <Izaya> got third in the CTF I did on Saturday
L89[06:19:35] ⇨ Joins: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de)
L90[06:23:43] <BohemianHacks> %tonk
L91[06:23:43] <MichiBot> Heckgosh! BohemianHacks! You beat CompanionCube's previous record of 5 hours, 16 minutes and 10 seconds (By 36 minutes and 37 seconds)! I hope you're happy!
L92[06:23:44] <MichiBot> BohemianHacks's new record is 5 hours, 52 minutes and 47 seconds! BohemianHacks also gained 0.00366 (0.00061 x 6) tonk points for stealing the tonk.
L93[06:24:56] <BohemianHacks> Izaya, nice! I assume you mean computer based CTF?
L94[06:25:14] <Izaya> yeah
L95[06:26:09] <BohemianHacks> Ive always wanted to do that, but I'm not super confident or very into formal competition/event kinda things
L96[06:26:17] <BohemianHacks> seems like a fun concept though
L97[06:26:28] <Izaya> I got into it via the course I did this year
L98[06:26:29] ⇦ Quits: bauen1 (bauen1!~bauen1@x59cc874e.dyn.telefonica.de) (Ping timeout: 206 seconds)
L99[06:26:34] <Izaya> now I qualify for nationals? ???
L100[06:26:42] <BohemianHacks> Very cool
L101[06:32:28] <AdorableCatgirl> neat
L102[06:32:48] <AdorableCatgirl> i did a thing like that
L103[06:37:15] <BohemianHacks> When I was in school they had a thing called skills usa. I took a computer maintence class and the teacher basically bugged me until I signed up for the computer competition. 0 practicing or preparing and I got 2nd. It was kind of silly.
L104[06:47:10] ⇦ Quits: Neo (Neo!~Neo@eos.pc-logix.com) (Ping timeout: 190 seconds)
L105[06:46:54] <Izaya> nice
L106[06:46:54] ⇦ Quits: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com) (Ping timeout: 202 seconds)
L107[06:46:54] <Izaya> ngl I didn't practice I just figured if I could get in I probably know my way around a *nix box better than the other teams
L108[06:47:43] ⇨ Joins: Neo (Neo!~Neo@eos.pc-logix.com)
L109[06:48:07] ⇨ Joins: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com)
L110[06:48:08] zsh sets mode: +o on SpiritedDusty
L111[06:48:23] ⇨ Joins: dangranos (dangranos!~dangranos@eos.pc-logix.com)
L112[06:48:27] ⇨ Joins: Naomi (Naomi!~Naomi@2607:5300:203:51d5::1bad:babe)
L113[06:49:05] ⇨ Joins: ds84182 (ds84182!~ds84182@eos.pc-logix.com)
L114[06:49:38] ⇨ Joins: payonel (payonel!~payonel@2607:5300:203:51d5::bad:c0de)
L115[06:50:07] *** payonel is now known as Guest75468
L116[06:50:11] ⇨ Joins: Mimiru (Mimiru!~Mimiru@2607:5300:203:51d5::1bad:babe)
L117[06:50:15] zsh sets mode: +o on Mimiru
L118[06:50:41] ⇨ Joins: Shuudoushi (Shuudoushi!~Shuudoush@2607:5300:203:51d5::c0f:fee)
L119[06:51:45] <BohemianHacks> Izaya, the getting in part is what I mostly thought was the point
L120[06:53:44] <Forecaster> I think I've got it
L121[06:54:24] <Izaya> there are automated tools for getting in
L122[06:54:53] <Izaya> I had to reverse some php to get in that was mildly painful
L123[06:55:51] <BohemianHacks> yeah, but I assumed stuff like that doesnt really work in competition
L124[06:55:57] <BohemianHacks> besides the obvious port scanning
L125[06:56:55] <BohemianHacks> The general process as I would guess would be port scan, have different team members check out different port services for possible vulnerabilities.
L126[06:57:36] <Izaya> I mean the automated tools make it a lot easier to get in
L127[06:57:44] <Izaya> but getting in isn't much use if you can't find flags, y'know?
L128[07:03:59] <Forecaster> hmm http://tinyurl.com/vos4ldt
L129[07:04:09] <AdorableCatgirl> Izaya: I used a linux priv escalation exploit to get a lot of my flags
L130[07:04:33] <Izaya> I abused cron
L131[07:04:40] <Izaya> who the fuck puts scripts running as root in /tmp
L132[07:05:11] <AdorableCatgirl> lmao
L133[07:05:28] <AdorableCatgirl> we had a gnome DE
L134[07:05:31] <AdorableCatgirl> so
L135[07:05:48] <Izaya> so you had all of systemd to play with
L136[07:05:51] <AdorableCatgirl> gnome-backlight-control or w/e
L137[07:05:54] <Izaya> systemd/linux
L138[07:06:10] <AdorableCatgirl> was my way in to root
L139[07:09:54] <BohemianHacks> I guess I just assumed it was mostly custom code and not obvious published exploits in competitions like that.
L140[07:10:11] <BohemianHacks> Probably depends on the level of competition too.
L141[07:11:31] <Izaya> yeah I mean this is max ez level
L142[07:13:24] <BohemianHacks> I remember the early days of metasploit. That shit was so fun ?
L143[07:13:32] <AdorableCatgirl> this was ez level but
L144[07:13:39] <Forecaster> well this didn't quite work http://tinyurl.com/tjz8nba
L145[07:13:48] <BohemianHacks> was basically max EZ level, but with real computers
L146[07:13:49] <AdorableCatgirl> someone fucked up somewhere making the image
L147[07:14:05] <AdorableCatgirl> with the chmod on one file
L148[07:14:07] <BohemianHacks> samba exploits everywhere
L149[07:14:19] <BohemianHacks> WEP everywhere
L150[07:14:37] <BohemianHacks> not sure thats even considered real hacking at that point
L151[07:14:54] <BohemianHacks> just run aircrack, then metasploit and boom
L152[07:15:40] <Forecaster> better http://tinyurl.com/tmzo8a7
L153[07:15:50] <Forecaster> not sure what to do about the => though....
L154[07:16:17] <BohemianHacks> setting up to play car lesbians?
L155[07:16:33] <Forecaster> what
L156[07:17:00] <BohemianHacks> http://tinyurl.com/vlz78mb
L157[07:17:37] <Forecaster> maybe I should make it write => x successes and have the math parser not do anything if the string already contains "=>"
L158[07:17:49] <Forecaster> that would override this strange behaviour
L159[07:21:39] <Forecaster> better http://tinyurl.com/rse9g5j
L160[07:24:40] <Forecaster> http://tinyurl.com/we9pukk
L161[07:25:48] <Forecaster> exploding also works http://tinyurl.com/tbnrflo
L162[07:43:29] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L163[07:43:43] <Forecaster> and now these new features are going live
L164[07:44:01] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L165[07:44:01] zsh sets mode: +v on MichiBot
L166[07:44:35] <Forecaster> %roll 4d2!
L167[07:44:42] <MichiBot> [1,2,1,1,2,2,1] => 10
L168[07:49:11] * AmandaC detonates @Forecaster
L169[07:49:19] <Forecaster> ow D:
L170[07:49:31] <AmandaC> Oh good, Inari's not here to lewd that line.
L171[08:02:20] <Lizzy> %tonk
L172[08:02:21] <MichiBot> I'm sorry Lizzy, you were not able to beat BohemianHacks's record of 5 hours, 52 minutes and 47 seconds this time. 1 hour, 38 minutes and 37 seconds were wasted! Missed by 4 hours, 14 minutes and 10 seconds!
L173[08:02:29] <Lizzy> oh
L174[08:21:37] <AdorableCatgirl> whao
L175[08:21:39] <AdorableCatgirl> lewd
L176[08:24:46] <AmandaC> %splash @AdorableCatgirl with mutable redstone potion
L177[08:24:47] <MichiBot> You fling a mutable red potion (New!) that splashes onto @AdorableCatgirl. @AdorableCatgirl turns into a aluminium golem until they see a star fall.
L178[08:25:06] <AdorableCatgirl> am i a terminator now
L179[08:27:55] <Bob> what is and does the database upgrade do
L180[08:27:57] <Bob> and what for
L181[08:28:15] <Forecaster> storing item data for use in comparisons
L182[08:28:38] <Bob> i see
L183[08:46:00] <Bob> welp, time to make a local data table
L184[08:46:03] <Bob> file
L185[08:46:17] <Bob> i can just cheat and use serialization lib anyways
L186[08:55:52] <AmandaC> %tell ben_mkiv Since I seem to be a bug magnet for your mods, here's another bug: https://nc.ddna.co/s/5eNfkidbbgydEky -- the screen doesn't work after a relog unless I break it and the keyboard and re-place both.
L187[08:55:52] <MichiBot> AmandaC: ben_mkiv will be notified of this message when next seen.
L188[09:02:07] <DaComputerNerd> the database plugin handles things like itemstack hashing and working with that
L189[09:21:28] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L190[09:23:06] <Lizzy> %remindme 2h look at setting up test OpenLDAP directory
L191[09:23:07] <MichiBot> I'll remind you about "look at setting up test OpenLDAP directory" at 12/02/2019 11:23:07 AM
L192[09:28:41] <Lizzy> hmm, although if i set up servers using ansible, then i can just sync the passwords across....
L193[09:35:05] <Lizzy> hmm, ldap would be easier to maintain
L194[09:39:14] ⇨ Joins: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu)
L195[09:39:42] <Forecaster> %replace
L196[09:39:45] <Forecaster> nothing to see here
L197[09:39:53] <Forecaster> %restart I mean
L198[09:39:54] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L199[09:40:15] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L200[09:40:15] zsh sets mode: +v on MichiBot
L201[09:44:15] <Forecaster> %splash Lizzy
L202[09:44:17] <MichiBot> You fling a soft diamond potion (New!) that splashes onto Lizzy. Lizzy is suddenly more aware of cute things nearby until the next time they hug someone.
L203[09:44:39] <Forecaster> not one of the newly adjusted ones but oh well
L204[09:47:38] * Lizzy wonders why she's now more hyper aware of people
L205[09:51:48] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L206[10:02:37] <DaComputerNerd> what's the most efficient way to check if the inventory of a given player contains a given item?
L207[10:04:30] <BohemianHacks> ask them
L208[10:04:44] <BohemianHacks> if that fails, probably a sword
L209[10:04:46] <DaComputerNerd> through OC...
L210[10:05:00] <Forecaster> iterate and compare
L211[10:05:01] <DaComputerNerd> debug card can be used
L212[10:05:03] <BohemianHacks> I think the transposer can check inventory
L213[10:05:11] <DaComputerNerd> can it do so from a distance?
L214[10:05:19] <BohemianHacks> no, only adjacent
L215[10:05:47] <BohemianHacks> do nanobots let you do stuff like that?
L216[10:05:52] <Forecaster> no
L217[10:05:54] <BohemianHacks> never messed with them
L218[10:05:59] <Forecaster> %splash @BohemianHacks
L219[10:06:01] <MichiBot> You fling a cloudy gold potion (New!) that splashes onto @BohemianHacks. A bard starts playing a lute behind @BohemianHacks. They don't stop.
L220[10:06:12] <BohemianHacks> YES
L221[10:06:27] <BohemianHacks> I always wanted a pet bard
L222[10:06:57] <DaComputerNerd> "And then they ate Sir Robin's minstrels. And there was much rejoicing."
L223[10:09:35] ⇦ Quits: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu) (Quit: BomberPlayz)
L224[10:10:02] <BohemianHacks> @DaComputerNerd there are blocks from other mods that provide access to player inventory. Perhaps you could put a transposer on one of those and do what you need
L225[10:10:26] <BohemianHacks> https://lumien.net/rtwiki/blocks/player-interface/
L226[10:10:42] <BohemianHacks> oh wow
L227[10:10:48] <BohemianHacks> Right on the page actually: There also is the Creative Player Interface which provides an Open Computers component to set the target player.
L228[10:11:10] ⇨ Joins: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu)
L229[10:12:53] <AmandaC> %8ball be stubborn?
L230[10:12:54] <MichiBot> AmandaC: Without a doubt
L231[10:14:58] ⇦ Quits: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu) (Ping timeout: 190 seconds)
L232[10:15:13] <AmandaC> Hrm. I disagree, what's the worst that can happen
L233[10:15:39] <AmandaC> @Ariri My boredom has incentivised me to join the server, beam me up scotty!
L234[10:16:15] ⇨ Joins: Ariri (Ariri!uid378594@id-378594.hathersage.irccloud.com)
L235[10:16:36] <Ariri> Aye captain
L236[10:21:01] <DaComputerNerd> thank you
L237[10:22:00] <DaComputerNerd> it doesn't have any functions related to the inventory in the creative player interface though
L238[10:22:14] <DaComputerNerd> so it's a bit more of a pain
L239[10:22:17] ⇨ Joins: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu)
L240[10:22:36] <DaComputerNerd> I've learned a lot of things with external access are limited to quite a slow speed. Are transposers limited to a set rate?
L241[10:22:39] <Forecaster> https://maximumble.thebookofbiff.com/comic/1930-whiskers/
L242[10:30:16] ⇦ Quits: BomberPlayz (BomberPlayz!~BomberPla@ns3153546.ip-51-91-61.eu) (Quit: BomberPlayz)
L243[10:40:49] <Ariri> %remindme 7h Fix server fileshare
L244[10:40:49] <MichiBot> I'll remind you about "Fix server fileshare" at 12/02/2019 05:40:49 PM
L245[10:41:08] ⇨ Joins: bauen1 (bauen1!~bauen1@ipbcc03b58.dynamic.kabel-deutschland.de)
L246[10:42:17] <Forecaster> you can't do that, that's illegal! :O
L247[10:42:19] <DaComputerNerd> anyone know?
L248[10:42:50] <Forecaster> dunno
L249[10:42:51] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-192-76-47.dynamic.qsc.de)
L250[10:42:51] zsh sets mode: +v on Vexatos
L251[10:43:08] <Forecaster> I'd guess they're mostly limited by the execution speed, but there might be a transfer limit as well
L252[10:44:20] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-192-76-47.dynamic.qsc.de) (Client Quit)
L253[10:44:39] <Forecaster> that was a short visit from vex
L254[10:44:50] <Ariri> Nice of them to
L255[10:44:54] <Ariri> stop by i guess
L256[10:45:09] <Ariri> I keep hitting enter before i finish my sentence
L257[10:45:24] <Forecaster> are you sure
L258[10:45:27] <Forecaster> you're not just
L259[10:45:30] <Forecaster> talking like
L260[10:45:33] <Forecaster> christopher
L261[10:45:35] <Forecaster> walken
L262[10:45:44] <Ariri> No i’m
L263[10:45:46] <Ariri> pretty sure
L264[10:45:48] <Ariri> i’m not
L265[10:45:54] <Forecaster> darn :P
L266[10:46:03] <Ariri> Heh :3
L267[10:47:17] * Ariri is actually Christopher Walken
L268[10:47:24] <Ariri> %drink
L269[10:47:25] <MichiBot> You drink a prickly violium potion (New!). Ariri feels like a champion!
L270[10:51:21] <Lizzy> %sip
L271[10:51:21] <MichiBot> You drink a muddy ferozium potion (New!). Lizzy shrinks by a negligible amount until they see a bird.
L272[10:53:25] <AmandaC> #@$@#$@#$@$
L273[10:53:36] <AmandaC> "AmandaGC was not careful enough around live wiring"
L274[10:54:05] * Lizzy gives AmandaC an antistatic coat
L275[10:54:12] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-192-76-47.dynamic.qsc.de)
L276[10:54:12] zsh sets mode: +v on Vexatos
L277[10:54:58] <Ariri> Sorry, was going to warn you but i thought it wasn’t needed as you were using the mod :(
L278[10:55:09] <Ariri> %bap HV wire
L279[10:55:09] * MichiBot Ariri baps HV wire with nothing!
L280[10:55:51] <Ariri> I don’t know if it’ll work for sure but you can hit the breakers
L281[10:56:03] <Ariri> Still working on cleaning up the wires
L282[10:56:07] <Lizzy> oooh, Django 3.0 got released today
L283[10:56:10] <AmandaC> Ariri: I just got too close to the AF wire and didn't react fast enough
L284[10:56:14] <AmandaC> Now it's night time.
L285[10:56:36] <AmandaC> So I'mma just wait for day before respawning again, so I don't get chased by monsters again
L286[10:56:46] <Ariri> Oh oops, and yeah that’s smart
L287[10:56:53] <Lizzy> %bap the monsters
L288[10:56:53] * MichiBot Lizzy baps the monsters with the Immovable Force!
L289[10:57:03] <Ariri> Heh if you make a jetpack you can launch yourself with the AF wires
L290[10:57:59] <Lizzy> %remindme 30m clean up myrrdin or adjust nodequery alert thresholds
L291[10:57:59] <MichiBot> I'll remind you about "clean up myrrdin or adjust nodequery alert thresholds" at 12/02/2019 11:27:59 AM
L292[11:02:30] <AmandaC> Ariri: also, "head west from spawn" might have been a better direction. Unless I followed the AF wire the wrong way
L293[11:03:33] <Ariri> I was going to say that but i thought it was easier to sail on the river much easier than climbing mountains for 600 blocks
L294[11:03:54] <Ariri> s/river much easier/river than
L295[11:03:54] <MichiBot> <Ariri> I was going to say that but i thought it was easier to sail on the river than than climbing mountains for 600 blocks
L296[11:04:04] <Ariri> heckgosh
L297[11:05:12] <Forecaster> time to do the than than
L298[11:06:19] * Ariri baps Forecaster with a than than
L299[11:06:47] <Forecaster> %give MichiBot Ariris than than
L300[11:06:49] * MichiBot accepts Ariris than than and adds it to her inventory
L301[11:07:12] <Ariri> Than(k)
L302[11:08:59] <AmandaC> deepends on if you've got a boat. :P
L303[11:10:50] <Ariri> Touche
L304[11:11:25] * Ariri gives AmandaC a big boat
L305[11:11:46] <Forecaster> a gloat boat?
L306[11:12:17] <Ariri> a bloated gloat boat.
L307[11:12:34] <Forecaster> a floating bloated gloat boat?
L308[11:13:12] <Ariri> a floating bloated gloat boat filled with oats
L309[11:15:39] <AmandaC> well, I made it back, and punnched my grave to get my books back, so all's well that ends well. :P
L310[11:16:52] <AmandaC> aand I just crashed looking up how to craft the akashic tome
L311[11:17:49] <Ariri> Rip, i’ll look into that
L312[11:17:55] <AmandaC> Ariri: might be worth trying to update https://www.curseforge.com/minecraft/mc-mods/codechicken-lib-1-8 to see if it fixes it.
L313[11:18:03] <Ariri> %setmyprofile https://i.imgur.com/0ttWO1c_d.png
L314[11:18:06] <AmandaC> That's in the stack trace at least.
L315[11:18:17] <Ariri> Yeah
L316[11:18:41] <AmandaC> And it's been updated in september, when the pack was last updated in march
L317[11:19:24] <Ariri> !setmyavatar https://i.imgur.com/0ttWO1c_d.png
L318[11:20:02] <Ariri> Yeah there hasn’t been any updates surprisingly so i’m not sure if they’ve dropped it or what
L319[11:20:27] <AmandaC> probably have, he's mentioned in his videos that he's going to stop updating Building Gadgets for 1.12 soon
L320[11:21:08] <Ariri> Is that the mod with the wands?
L321[11:21:23] <AmandaC> nope
L322[11:21:35] <Ariri> Oh
L323[11:21:37] <AmandaC> well, kinda?They're not called wands
L324[11:21:57] <Ariri> er, todd’s or something right?
L325[11:22:08] <Ariri> rod* darn autocorrect
L326[11:22:22] * Elfi burrows into Amanda's side. it's coooold
L327[11:22:24] <Ariri> apparently darn isn’t a word either, it has to be dark
L328[11:22:47] * AmandaC snugs Elfi
L329[11:23:00] * AmandaC lays her tail ontop of Elfi as a blanket, to keep her warm. :3
L330[11:23:04] * Ariri gives Elfi a big blanket
L331[11:23:07] <MichiBot> Lizzy REMINDER: look at setting up test OpenLDAP directory
L332[11:23:19] <Lizzy> dammit, i thought i'd be home by now
L333[11:23:35] <AmandaC> Ariri: these are the building gadgets; https://www.curseforge.com/minecraft/mc-mods/building-gadgets
L334[11:23:45] <AmandaC> kinda-techy wands, kinda
L335[11:24:34] <Lizzy> %remindme 20m openldap crap
L336[11:24:34] <MichiBot> I'll remind you about "openldap crap" at 12/02/2019 11:44:34 AM
L337[11:27:07] <Ariri> Hmm, i don’t think i’ve used them yet
L338[11:28:00] <MichiBot> Lizzy REMINDER: clean up myrrdin or adjust nodequery alert thresholds
L339[11:29:19] <AmandaC> oh, the bug can't be replicated in single-player, so we'll only know if it gets fixed by updating ccl by doing it
L340[11:29:45] <Ariri> When I get on AmandaC, i’ll add you to my AE2 network if you ever want anything from there, i have extra of some resources (gold, redstone, ender pearls, etc)
L341[11:29:56] <Ariri> the tome recipe bug?
L342[11:33:47] <AmandaC> yeah, I assume it's the same bug as the one inari's hitting with the dank null
L343[11:34:21] <Ariri> Likely yeah, what’s ccl though?
L344[11:35:30] <AmandaC> Code Chicken Lib
L345[11:35:51] <AmandaC> Also, I'm being camped by skeletons in the rain with no weapon
L346[11:36:08] <Ariri> right, forgot about that rep
L347[11:36:11] <Ariri> dep
L348[11:37:30] <AmandaC> ahha!
L349[11:38:02] <AmandaC> I stole some stone and sticks from Myros27's starter house to make one, now I slept
L350[11:38:13] <AmandaC> s/make one/make a sworf
L351[11:38:13] <MichiBot> <AmandaC> I stole some stone and sticks from Myros27's starter house to make a sworf, now I slept
L352[11:39:47] <Ariri> Well I gotta blast, see y’all later
L353[11:42:40] <AmandaC> see ya
L354[11:44:27] <Forecaster> %sip
L355[11:44:28] <MichiBot> You drink a stirring pink potion (New!). Forecaster suddenly forgets a random piece of trivia.
L356[11:44:35] <MichiBot> Lizzy REMINDER: openldap crap
L357[11:44:45] <Lizzy> aha, thanks MichiBot, right on time
L358[11:50:16] <DaComputerNerd> %sip
L359[11:50:16] <MichiBot> You drink a sedimented naqahdah potion (New!). DaComputerNerd feels chill.
L360[11:51:35] ⇨ Joins: Nevvitan (Nevvitan!~Nevvitan@broadband-188-32-69-216.ip.moscow.rt.ru)
L361[11:52:12] <Nevvitan> ПРИвет
L362[11:52:16] <Nevvitan> ХУЙ
L363[11:52:23] <Lizzy> english only please
L364[11:52:37] <Nevvitan> sorry
L365[11:52:43] <Nevvitan> Hello
L366[11:53:11] <Nevvitan> Im russian
L367[11:54:50] <Forecaster> %hello
L368[11:54:50] <MichiBot> Forecaster: Hello! Welcome to #oc! The one and only opencomputers channel! Please ask your questions directly (dont ask to ask) and provide error/code examples! (Use pastebin.com if theyre more than one line!) Dont mind the random conversation you might have walked into.
L369[11:59:43] ⇦ Quits: Nevvitan (Nevvitan!~Nevvitan@broadband-188-32-69-216.ip.moscow.rt.ru) (Ping timeout: 190 seconds)
L370[12:01:54] <Forecaster> of course
L371[12:02:06] <Forecaster> in other news, wft http://tinyurl.com/wtqsp64
L372[12:02:12] <Forecaster> D:<
L373[12:02:18] <Forecaster> you're an update!
L374[12:02:31] <Forecaster> you take up less than a GB!
L375[12:02:44] <Forecaster> where are you getting the remaining 75 GB from?!
L376[12:09:40] <AmandaC> %tell Inari hey, hey hey, where do we live on Ariri's server?
L377[12:09:40] <MichiBot> AmandaC: Inari will be notified of this message when next seen.
L378[12:14:44] ⇨ Joins: Inari (Inari!~Pinkishu@pD9E8F559.dip0.t-ipconnect.de)
L379[12:17:18] <Inari> Nep
L380[12:17:34] <Inari> AmandaC: So you joined after all ? :P
L381[12:17:52] <AmandaC> Inari: yup. :P
L382[12:17:58] <AmandaC> So, where do we live? :D
L383[12:17:59] <Inari> Well, theres the village
L384[12:18:21] <Inari> And I'm working on a Botania/Bloodmagic area
L385[12:18:22] <AmandaC> I didn't see any house with a massive brocon statue, so I wasn't sure which was yours. :P
L386[12:18:27] <Inari> Haha
L387[12:18:52] <Inari> The srone and wood house of course
L388[12:20:03] <AmandaC> They're all stone and wood!
L389[12:20:22] <Ariri> Really tall one with grass on top
L390[12:20:26] <AmandaC> ah
L391[12:20:30] <Ariri> Far side from river
L392[12:21:20] <Forecaster> poor river
L393[12:21:33] <Inari> "really tall"
L394[12:46:52] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@mue-88-130-63-115.dsl.tropolys.de)
L395[12:46:53] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Read error: Connection reset by peer)
L396[12:48:15] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L397[12:51:41] ⇨ Joins: Thutmose1 (Thutmose1!~Patrick@host-69-59-79-181.nctv.com)
L398[12:51:43] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Ping timeout: 206 seconds)
L399[13:20:34] <Brisingr Aerowing> It appears that my pharmacy fucked up one of my prescriptions.
L400[13:32:34] <Forecaster> go back, slam your fist on the counter and demand they give you the drugs
L401[13:32:42] <Forecaster> will go great, guaranteed
L402[13:32:50] <Brisingr Aerowing> It's not the first time. either.
L403[13:33:12] <Brisingr Aerowing> Started after the new manager took over.
L404[13:35:18] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@mue-88-130-63-115.dsl.tropolys.de) (Killed (NickServ (GHOST command used by ben_mkiv|afk!~ben_mkiv@i59F6789F.versanet.de)))
L405[13:35:23] ⇨ Joins: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@i59F6789F.versanet.de)
L406[13:45:24] ⇦ Quits: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@i59F6789F.versanet.de) (Ping timeout: 189 seconds)
L407[13:49:18] <Brisingr Aerowing> Nurse at the office got it sorted. When she saw what pharmacy I use she sighed and said 'Again?'. I'm guessing they've had prior issues with the pharmacy.
L408[13:50:43] <Inari> %inv add google stadio
L409[13:50:44] * MichiBot summons 'google stadio' and adds to her inventory. I could get some good swings in with this.
L410[13:50:50] <Inari> Well stadia, but whatever
L411[13:55:38] <Forecaster> in the far future, we'll not be subject to the hunger games, but the Google Games!
L412[13:55:47] <Forecaster> a battle to the death in the Google Stadio
L413[13:56:10] <Forecaster> %splash Inari
L414[13:56:10] <MichiBot> You fling a sour aqua potion (New!) that splashes onto Inari. The bottle turns into a sling.
L415[13:56:20] <Forecaster> hrm
L416[13:56:27] <Forecaster> that didn't work the way it was supposed to...
L417[13:56:42] <Inari> %fling Forecaster
L418[13:56:42] <MichiBot> Inari flings An Immovable Object in a random direction. It hits Forecaster on the butt. They take 1d4 = 1 damage!
L419[13:56:51] <Forecaster> ow
L420[13:56:54] <Inari> Sounds illegal
L421[13:56:55] <Inari> But sure
L422[13:58:10] <Forecaster> you're illegal!
L423[14:08:07] <Mimiru> h... how do you fling an immovable object..?
L424[14:08:25] <Forecaster> by moving the universe around it, duh
L425[14:08:27] <Lizzy> by bending the laws of reality of course
L426[14:15:30] <Inari> Mimiru: Thats why I said it's illegal
L427[14:20:52] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@i59F6789F.versanet.de)
L428[14:21:43] <Ariri> Universe.exe has crashed due to an IllegalStateException
L429[14:26:00] <ben_mkiv> michibot, tell me what you know
L430[14:26:34] <ben_mkiv> AmandaC, you arent the magnet, you're the only one reporting them xD
L431[14:54:58] <AmandaC> Ariri: hey, you've got all the inscriber presses right?
L432[14:55:34] <Ariri> Yup it's in my lab
L433[14:55:59] <AmandaC> Ariri: If I give you four blocks of iron, can you make a copy of each for me? :#
L434[14:56:23] <AmandaC> Ariri: (You can make a copy of a press with the press + a block of iron in the inscriber )
L435[14:56:44] <Ariri> Sure, the iron is not needed, i have plenty for now
L436[14:57:01] <AmandaC> ah, okay. Just didn't want to put you out. :P
L437[14:57:04] <Ariri> If you can use them u can make it yourself but it may not work as the chunks or claimed
L438[14:57:22] <Ariri> Yeah dw, if i do need iron i’ll let you know
L439[15:06:07] <Sketamine> how do i access another computers "computer" component without the two computers mingling
L440[15:06:48] <Inari> @Sketamine Let them mingle, it's fun for them
L441[15:06:59] <Sketamine> Its not for me though
L442[15:07:10] <Inari> Well, stop being so prude
L443[15:07:20] <Sketamine> but computer mingling is bad
L444[15:07:25] <Sketamine> it bends their circuit board pins
L445[15:08:02] <Ariri> UwU
L446[15:08:16] <Inari> Only if they insert it wrongly
L447[15:08:27] <Ariri> %inari
L448[15:08:27] <MichiBot> Ariri: http://i.imgur.com/XoYgHyi.gif
L449[15:09:45] <Ariri> They’ll have to handle a large load
L450[15:09:59] <Ariri> They might be in overheat
L451[15:10:28] <Sketamine> but in all seriousness
L452[15:10:40] <Sketamine> i need to turn on a server without me passing input to it
L453[15:11:07] <Forecaster> Mind over matter
L454[15:11:08] <Sketamine> on a computer was fine because i could just use an autonomos activator on it, but racks are different and that doesnt work
L455[15:11:10] <Inari> turn on, eh? :3 And dunno, try an adapter?
L456[15:11:24] <Forecaster> @Sketamine there's wake on lan
L457[15:11:50] <Sketamine> does wake mean actually start the whole thing though?
L458[15:11:58] <Sketamine> or just stop it from idling when it gets a modem message
L459[15:12:21] <Inari> "idling"?
L460[15:12:31] <AdorableCatgirl> sooo
L461[15:12:37] <AdorableCatgirl> i think my partition table format werks
L462[15:12:37] <Sketamine> as in computer.sleep
L463[15:12:42] <Sketamine> as in os.sleep [Edited]
L464[15:13:15] <Forecaster> look it up
L465[15:14:07] <Sketamine> ah setWakeMessage
L466[15:14:10] <Forecaster> yes
L467[15:14:20] <Sketamine> Thats a big help. thanks!
L468[15:14:29] <Inari> setWakeMessage("OwO whats this?")
L469[15:21:55] <AdorableCatgirl> nice http://tinyurl.com/vxh3acd
L470[15:25:16] <AdorableCatgirl> and now with correct flags on the bootcode partition http://tinyurl.com/tnpchqz
L471[15:26:21] <AdorableCatgirl> Izaya: it's werking
L472[15:27:25] <Izaya> ayy
L473[15:27:42] <BohemianHacks> %onk
L474[15:27:45] <BohemianHacks> %tonk even
L475[15:27:45] <MichiBot> Avada Kedavra! BohemianHacks! You beat your own previous record of 5 hours, 52 minutes and 47 seconds (By 1 hour, 32 minutes and 36 seconds)! I hope you're happy!
L476[15:27:45] <AdorableCatgirl> %tonk
L477[15:27:47] <MichiBot> BohemianHacks's new record is 7 hours, 25 minutes and 24 seconds! No points gained for stealing from yourself. (Lost out on 0.00154 x 6 = 0.00924)
L478[15:27:49] <AdorableCatgirl> DAMNIT
L479[15:27:54] <BohemianHacks> ninja fingers
L480[15:27:54] <AdorableCatgirl> i wasn't fast enough
L481[15:28:03] <AdorableCatgirl> anyways
L482[15:28:07] <AdorableCatgirl> Izaya: you know what that means
L483[15:28:15] <AdorableCatgirl> time to continue to debug proximafs
L484[15:28:29] <BohemianHacks> I dont wanna debug anymore
L485[15:28:36] <BohemianHacks> its only 3 but It feels like 6
L486[15:29:09] <AdorableCatgirl> also <3 it feels great to have more than 4K for boot code
L487[15:29:21] <BohemianHacks> Had to explain to customer support that when someone signs up with 4 different emails, then yes they have to figure out which email has which record.
L488[15:29:50] <BohemianHacks> and no, im not going to magically merge all emails at a domain because the user is too slow to figure that out
L489[15:30:53] <BohemianHacks> "thats inconvenient and frustrating for the user!"
L490[15:30:55] <AdorableCatgirl> Izaya: imma make a romfs loader that boots Zorya 1.2 from an unmanaged disk
L491[15:31:02] <BohemianHacks> duh, don't sign up with multiple emails
L492[15:31:12] <BohemianHacks> grumble grumble returns to cave
L493[15:41:34] <bauen1> @AdorableCatgirl is ProximaFS a filesystem for a umanaged disk ?
L494[15:45:59] <ben_mkiv> wait you're all playing on a server? while im playing a stupid modpack on public? xD
L495[15:50:02] <Inari> Ariri: Someone else to recruit
L496[15:58:43] <Vaur> personally I'm playing a modpack in private
L497[16:01:26] <AdorableCatgirl> bauen1: yes, but not a very good one
L498[16:02:08] <Inari> @AdorableCatgirl meow?
L499[16:03:49] <AdorableCatgirl> what
L500[16:03:56] <AdorableCatgirl> anYWAYS
L501[16:04:17] <AdorableCatgirl> it's main limiting factor is you can only have 254 files/folders/symlinks
L502[16:11:12] <AmandaC> hey Izaya, can you hook me and Inari up to the power grid? In theory it'll work, but fuck knows if that'll apply in practice. :D
L503[16:11:24] <Ariri> ben_mkiv Would you like the info :P
L504[16:11:48] <ben_mkiv> uhm, just started another modpack... yours is custom i guess?
L505[16:11:54] <Izaya> ye can do
L506[16:11:59] <AmandaC> It's a modified DW20pack, ben_mkiv
L507[16:12:02] <Ariri> it’s DW20 + some
L508[16:12:19] <Izaya> Though hooking up cables to the relay should work fine
L509[16:12:49] <ben_mkiv> never played dw20, is it just kitchen sink or does it have altered recipes?
L510[16:13:08] <AmandaC> Izaya: All our terracotta is orange, andI can't find a way to turn it into uncoloured, so I can't make the thing to connect us
L511[16:13:19] <Izaya> Ah
L512[16:13:26] <AmandaC> ( and ImmEng won't accept orange terracotta for them )
L513[16:14:32] <AmandaC> Inari's decided she wants to make IC2 machines, so I'm not even sure that the power conversion will happen, but I've run an Energy Condiut up from the basement to the corner of the house
L514[16:14:35] <Ariri> Eh it’s kinda kitchen sink i think, not bad from what i’ve heard here
L515[16:14:41] <Ariri> i’m new to the term
L516[16:14:49] <ben_mkiv> afaik immersive does convert
L517[16:14:59] <ben_mkiv> does the pack have mekanism?
L518[16:15:08] <AdorableCatgirl> bleh
L519[16:15:09] <AdorableCatgirl> mekanism
L520[16:15:13] <AmandaC> Hrm. Maybe instead of energy conduit I should run IC2 wire then
L521[16:16:54] <Ariri> didn’t add it for poss mem issues
L522[16:17:39] <Izaya> >2200G for $85
L523[16:17:46] <Izaya> >2400G for $163
L524[16:17:53] <Izaya> aaaaa
L525[16:18:08] <Ariri> i have the 2400, worth
L526[16:18:22] <Ariri> not even ocd
L527[16:18:32] <Izaya> I don't need another machine
L528[16:18:38] <Izaya> I don't think I have the cash for it
L529[16:18:42] <Izaya> but these are good prices
L530[16:20:42] <AdorableCatgirl> i need a new CPU tbh
L531[16:20:47] <AdorableCatgirl> which means i need a new mobo
L532[16:21:22] <Ariri> i made my pc for 500 if ur interested
L533[16:23:08] <AdorableCatgirl> well i mean
L534[16:23:17] <AdorableCatgirl> my CPU should be fine i guess but i want a new one
L535[16:23:26] <AdorableCatgirl> since the Zen2 stuff is lookin sexy
L536[16:24:13] <Izaya> oops, out of memory
L537[16:24:22] <Izaya> Ariri: I have to contend with Australian prices
L538[16:25:40] <Ariri> Oh yeah
L539[16:25:41] <Ariri> F
L540[16:28:10] <AmandaC> aand I crashed trying to load my test world
L541[16:30:14] <Ariri> %drink
L542[16:30:15] <MichiBot> You drink a muddy crimson potion (New!). Ariri looks confused as nothing happens.
L543[16:30:28] * Ariri hrrms
L544[16:32:45] <Izaya> reee
L545[16:32:50] <Izaya> game crashed looking up recipes again
L546[16:33:08] <Izaya> don't have time for this shit
L547[16:35:40] <AmandaC> seems like my idea won't work
L548[16:43:40] <AmandaC> Izaya: seems you tossed them at me? Seems to be working with just the MV connector to the wire.
L549[16:43:53] <Izaya> oh that works then
L550[16:43:54] <Izaya> yeah
L551[16:44:15] <Izaya> doesn't visually connect but I guess that's okay
L552[16:48:55] <Izaya> man installing FO4 mods on Linux is a PITA
L553[16:49:01] <Brisingr Aerowing> ben_mkiv: IE dropped support for IC2 <-> RF conversion in the 1.8 port.
L554[16:49:12] <AmandaC> never mind, not working
L555[16:49:17] <Izaya> gotta make sure you don't have duplicate folders with different cases
L556[16:50:15] <AmandaC> Inari loaded the generator with charcoal so I thought it was charging from the grid, but it was the generator
L557[16:59:18] <AdorableCatgirl> Izaya: just bley fonv ez
L558[16:59:28] <Izaya> same problem
L559[16:59:33] <AdorableCatgirl> e
L560[16:59:39] <Izaya> some mod authors use Meshes and Actors, some use meshes and actors
L561[16:59:47] <Izaya> on Windows, it mangles them so it doesn't matter
L562[16:59:50] <Izaya> but I use a civilised OS
L563[17:00:15] <Izaya> so I have to run 'find | tr '[A-Z]' '[a-z]' | sort | uniq -d' occasionally
L564[17:00:48] <ben_mkiv> mekanism is better anyways :P
L565[17:03:54] <AdorableCatgirl> currently my stomach is liven'ting
L566[17:07:29] <Izaya> they talk too much on classic countdown
L567[17:09:13] <AdorableCatgirl> whomstdve
L568[17:12:54] <Izaya> countdown highlights from the 70s and 80s
L569[17:17:46] <Ariri> https://www.reddit.com/r/feedthebeast/comments/e52bom/what_do_you_think_of_the_craft_for_the_creative ben_mkiv, would you like something like this :P
L570[17:24:20] <ben_mkiv> if you want a nice modpack base to build on, i would really recommend enigmatica2expert
L571[17:24:40] <ben_mkiv> this + some mods would be the perfect modpack
L572[17:25:10] <ben_mkiv> it also has progression to creative items
L573[17:26:34] <Inari> Needs less UI crafting and more ingame things
L574[17:27:22] <ben_mkiv> e2e involves a lot of extended crafting
L575[17:27:29] <ben_mkiv> where opencomputers did come in handy :>
L576[17:28:18] <Inari> 9x9 crafting/heavy automation packs are just cookie clickers
L577[17:28:57] <Ariri> I’ll be getting on the server shortly
L578[17:29:38] <ben_mkiv> reminds me of my xdotool script i made for cookie clicker xD
L579[17:30:26] ⇦ Quits: Inari (Inari!~Pinkishu@pD9E8F559.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L580[17:32:55] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-192-76-47.dynamic.qsc.de) (Quit: Insert quantum chemistry joke here)
L581[17:40:50] <MichiBot> Ariri REMINDER: Fix server fileshare
L582[17:41:07] <Ariri> Has anyone bought ED on Steam? Im not sure where to get the key so i can log in and play
L583[17:46:08] <Forecaster> right click it > Manage > CD keys
L584[17:55:08] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 190 seconds)
L585[17:56:37] <AmandaC> dang. I forgot how long fluix seeds take to grow
L586[17:57:06] <AmandaC> I left some in the ocean by me annd inari's base like, 2h ago. It's only a quarter done
L587[18:00:51] <Ariri> @Forecaster https://i.imgur.com/ODFHNL5.png
L588[18:00:59] <Ariri> Not there
L589[18:07:56] <Forecaster> Weird, it's there for me
L590[18:08:14] <Forecaster> Are you in locked family mode?
L591[18:08:45] <Forecaster> If so you may need too unlock first
L592[18:09:50] <Ariri> Nope
L593[18:10:14] <Ariri> I bought the cmdr deluxe edition (again) and it says non-key
L594[18:18:35] <Forecaster> Ah
L595[18:21:54] <Ariri> Says please redeem/purchase anyways
L596[18:21:57] <Ariri> :/
L597[18:27:29] ⇦ Quits: MajGenRelativity (MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net) (Ping timeout: 204 seconds)
L598[18:27:51] ⇨ Joins: MajGenRelativity (MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net)
L599[18:59:29] <Kodos> Did you purchase from frontier store previously?
L600[18:59:43] <Kodos> Nvm I think I am misreading
L601[19:00:26] <Izaya> contact fdev support
L602[19:05:58] <Ariri> I cant make a ticket, i click to create and it just goes back to topic selection, doesnt show in my tickets or email
L603[19:13:01] <Ariri> https://www.youtube.com/watch?v=OnMPFBZfJew
L604[19:13:02] <MichiBot> Padoboo Padoboo Chwistmas Weeaboo! (Pardoru Cover/Parody) | length: 2m 15s | Likes: 11,724 Dislikes: 84 Views: 89,282 | by Little Nii | Published On 24/11/2019
L605[20:23:07] <The_Stargazer> https://pastebin.com/yjuftHsp
L606[20:23:08] <The_Stargazer> always rolls 5/5 for some reason...
L607[20:23:38] <Izaya> Anyone got any experience with Citrix stuff?
L608[20:34:19] <The_Stargazer> ok, so the first two numbers are always 5 and 5 it seems
L609[20:36:04] ⇦ Quits: Ariri (Ariri!uid378594@id-378594.hathersage.irccloud.com) (Quit: Connection closed for inactivity)
L610[20:40:22] <The_Stargazer> ok so
L611[20:40:25] <The_Stargazer> math.randomseed(os.time())
L612[20:40:25] <The_Stargazer> math.random()
L613[20:40:25] <The_Stargazer> fixed it
L614[20:44:14] <The_Stargazer> Code Block pastebined https://paste.pc-logix.com/risikejalu
L615[20:44:15] <The_Stargazer> ^ this isn't incrementing the turn number
L616[20:44:28] <The_Stargazer> Code Block pastebined https://paste.pc-logix.com/edaniqojeb
L617[20:49:42] <The_Stargazer> Code Block pastebined https://paste.pc-logix.com/goxusetixo
L618[20:49:42] <The_Stargazer> ^ spams that in output
L619[20:50:44] <The_Stargazer> wait, i'm an idiot
L620[20:51:12] <The_Stargazer> i was doing `print("End of Player "..num.."'s turn. It is now Player "..num.."'s turn.")`
L621[20:52:15] <The_Stargazer> still doesn't change the turn number
L622[20:53:26] <The_Stargazer> https://pastebin.com/nNMM54Q8
L623[20:53:27] <The_Stargazer> this is what I've got
L624[20:53:45] <The_Stargazer> by "doesn't change turn num" I mean it's always Player 1's turn
L625[20:55:07] <The_Stargazer> Code Block pastebined https://paste.pc-logix.com/etohiqokum
L626[20:55:07] <The_Stargazer> this is what I get
L627[20:55:49] <AdorableCatgirl> anyways
L628[20:56:07] <AdorableCatgirl> gonna make an OSDI lib for OpenOS
L629[20:56:15] <The_Stargazer> OSDI?
L630[21:02:47] <The_Stargazer> also: holy shit the steam interface has changed
L631[21:04:31] <DaComputerNerd> yea
L632[21:04:34] <DaComputerNerd> I don't like it
L633[21:28:11] <AdorableCatgirl> OSDI
L634[21:28:22] <AdorableCatgirl> https://github.com/Adorable-Catgirl/Random-OC-Docs/blob/master/formats/osdi/1.0.md
L635[21:50:29] ⇦ Quits: quantsini (quantsini!~quantsini@quantsini.com) (Remote host closed the connection)
L636[22:04:08] ⇨ Joins: Neo (Neo!~Neo@eos.pc-logix.com)
L637[22:04:18] ⇨ Joins: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com)
L638[22:04:19] zsh sets mode: +o on SpiritedDusty
L639[22:04:19] *** vifino is now known as Guest45959
L640[22:04:19] ⇨ Joins: Corded (Corded!~MichiBot@eos.pc-logix.com)
L641[22:04:20] zsh sets mode: +v on Corded
L642[22:04:22] ⇨ Joins: phroa (phroa!~phroa@173.254.236.155)
L643[22:05:30] ⇨ Joins: Elfi (Elfi!~temia@monmusu.me)
L644[22:19:37] ⇦ Quits: Thutmose1 (Thutmose1!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L645[22:21:33] <BohemianHacks> %tonk
L646[22:21:35] <MichiBot> I'm sorry BohemianHacks, you were not able to beat BohemianHacks's record of 7 hours, 25 minutes and 24 seconds this time. 6 hours, 53 minutes and 48 seconds were wasted! Missed by 31 minutes and 35 seconds!
L647[22:21:47] <BohemianHacks> FUUUUU
L648[22:22:40] <BohemianHacks> I must commit sudoku now
L649[22:44:36] <Ariri> sudoku
L650[22:52:41] <IdotMaster1> to program lua for oc you have to from minecraft?
L651[22:55:01] ⇨ Joins: IdotMaster1 (IdotMaster1!webchat@c55-120.i07-14.onvol.net)
L652[22:55:03] <IdotMaster1> hi
L653[22:55:34] <IdotMaster1> Xd im a bot
L654[22:56:05] <IdotMaster1> ok so bye
L655[22:56:28] ⇦ Quits: IdotMaster1 (IdotMaster1!webchat@c55-120.i07-14.onvol.net) (Client Quit)
L656[23:11:37] <Kodos> @IdotMaster1 not necessarily
L657[23:18:24] <Trainfan91> can i use the irc client to connect to Relays Other than this one?
L658[23:19:22] <Ariri> Yes, you can connect to any other IRC you like
L659[23:19:33] <Ariri> (assuming its public ofc)
L660[23:20:17] <Ariri> Transferring my CMDR needs my old FID but I cant access it :(
L661[23:20:31] <CompanionCube> fun fact: you don't connect to relays
L662[23:20:39] <CompanionCube> the relaying is a different thing.
L663[23:21:01] <Trainfan91> how?
L664[23:21:09] <Trainfan91> http://?
L665[23:21:27] <CompanionCube> Mimiru wrote a bot that does the discord<->bridging.
L666[23:21:37] <CompanionCube> *<-> IRC
L667[23:22:28] <CompanionCube> generally you access IRC by connecting to a network and joining a channel.
L668[23:22:41] <CompanionCube> This one is on irc.esper.net, the channel is #oc.
L669[23:28:21] <Trainfan91> what would i need to type in for the quakenet irc for example?
L670[23:29:52] <AmandaC> %tell Inari I built us a computer, with some borrowed supplies from Ariri. Only two of the crates we have are hooked up yet, but it's 00:30 and I should sleep.
L671[23:29:52] <MichiBot> AmandaC: Inari will be notified of this message when next seen.
L672[23:30:20] <Trainfan91> here is their web address https://webchat.quakenet.org/
L673[23:30:24] <AmandaC> %tell Inari er, AE system. Me + Sister call them computers.
L674[23:30:24] <MichiBot> AmandaC: Inari will be notified of this message when next seen.
L675[23:30:42] <CompanionCube> irc.quakenet.org by the looks of things
L676[23:31:03] * AmandaC snugs up protectively around elfi, contemplates if she wants to halucinate some before bed.
L677[23:31:12] <AmandaC> %8ball halucinate before the unconcious halucinations?
L678[23:31:12] <MichiBot> AmandaC: Ask again later
L679[23:31:20] <AmandaC> guess that's a no. night nerds. :3
L680[23:33:41] <Ariri> The new ED tutorial is really nice
L681[23:37:35] <Trainfan91> this is probably impossible, but can i connect to other discord channels using irc?
L682[23:38:09] <Mimiru> Not unless they've written, or use some other relay bot
L683[23:38:24] <Mimiru> Discord doesn't support IRC
L684[23:41:46] <AlchemicRaker> I'm super confused: are drones unable to mine cobblestone and netherrack? the same drone can mine dirt and clay just fine
L685[23:45:33] <AmandaC> Drones can not use tools
L686[23:46:16] <AlchemicRaker> ........
L687[23:46:23] <AmandaC> Dust and clay can be reasonably broken using a hand, cobble and netherrack can not
L688[23:46:38] <AmandaC> Dirt*
L689[23:46:46] <AlchemicRaker> well crud
L690[23:46:54] <AlchemicRaker> hmm
L691[23:47:28] <AmandaC> Robots can use tools, though
L692[23:48:17] <AlchemicRaker> right, and I usually use robots. this time I was coding a drone to do it... because I haven't used them much in the past
L693[23:48:53] <AlchemicRaker> so I've got all of the code working, and it can't use tools. a bit miffed atm. will think of something.
L694[23:50:33] <Trainfan91> @AlchemicRaker sounds like you need a drone/robot hybrid...
L695[23:50:52] <AlchemicRaker> yeah, I'm already thinking about making an upgrade or something to make this possible now
L696[23:51:32] <Trainfan91> can bots use tools from other mods?
L697[23:51:58] <AlchemicRaker> they can't use pickaxes from thermal expansion, so I don't think so.
L698[23:52:54] <Trainfan91> i was JUST about to have bots go terminator on my butt too lol...
<<Prev Next>> Scroll to Top