<- Previous Log Select Different Log Next Log ->  
Searching from 2022-01-01 00:00:00 to 2022-01-01 23:59:59.999999.
Query completed in 8.62 seconds
[2022-01-01 08:02:19] <Z-Man> Of course raylib does have a GUI: https://github.com/raysan5/raygui
[2022-01-01 08:04:28] <Z-Man> It's not super flexible and only seems to support pixely UI styles, but it's there. I personally don't mind if engines/systems enforce some general styles, like how you can tell most of the time a game was made with GameMaker or that other thing, RPG Studio?
[2022-01-01 08:06:09] <Z-Man> Also, it's immediate mode. Which may cause some brain pain, but I can assure you those are only the bits used to widget object based UIs dying off, you don't need those! Immediate mode GUIs are great for a code centric workflow.
[2022-01-01 08:10:46] <Z-Man> Sidescrolling is not simply sidescrolling, sorry. Nowadays, you have real flat bitmap sidescrolling and 2.5D sidescrolling. Also, since forever, you have automatic scrolling or scrolling along with the main character, and if you scroll along, you have to decide where the camera focus should be; does the camera look ahead a bit? Can it even scroll backwards?
[2022-01-01 08:12:28] <Z-Man> I don't think any engine should just do sidescrolling. It should give you the tools so you can do sidescrolling of your choice with minimal friction.
[2022-01-01 08:14:01] <Z-Man> At this particular aspect, the Fuze Basic thing on the Switch is great. It has a map (2D level) and sprites, both share a coordinate system, then:
[2022-01-01 08:14:09] <Z-Man> A function to load a map by name
[2022-01-01 08:14:33] <Z-Man> A function to load a sprite sheet image into a sprite
[2022-01-01 08:14:51] <Z-Man> Functions to play sprite sheet animations
[2022-01-01 08:15:24] <Z-Man> A function to set the camera, then one to draw the map (divided into layers, if you like), a function to draw all sprites
[2022-01-01 08:15:51] <Z-Man> Functions to move sprites, with automatically applied velocity if you like
[2022-01-01 08:16:42] <Z-Man> Functions to set the collision shape of sprites (rectangle or ellipse, both with dimensions of your choice)
[2022-01-01 08:17:55] <Z-Man> Sprite/Sprite and Sprite/Map collision functions of two types: One gives you the list of collisions and the collision resolution vectors, one just resolves the collision.
[2022-01-01 08:22:19] <Z-Man> And yeah, sorry, "The rest is your game". Every decision on how to use these functions determines how your game feels. The engine should not have a "eSideScrollerApp" class that you customize, it should just give you tools like that and let you work with them. If you do want the engine to provide a basic sidescroller, use templates or examples. 
[2022-01-01 16:06:00] <Lucifer_arma> Interestingly enough, you've also just described how pygame handles sprites and has done so since before the Switch existed :)
[2022-01-01 16:06:16] <Lucifer_arma> except I don't think it provides the collision vector, which we're going to provide
[2022-01-01 16:06:52] <Lucifer_arma> I think a general purpose sidescroller can be made.  Also, having a general purpose sidescroller means we have to build up from all the primitives ourselves, so if we're careful about how we do it,
[2022-01-01 16:07:08] <Lucifer_arma> we can provide each successful level of primitives to the game developer
[2022-01-01 16:07:41] <Lucifer_arma> so if the sidescroller we make isn't satisfactory, the game developer can build up from the same primitives and choose which level of sophistication suits him/her the most and go from there
[2022-01-01 16:08:15] <Lucifer_arma> If you haven't looked at it before, though, you should check out Qt::QGraphicsView
[2022-01-01 16:08:42] <Lucifer_arma> it's basically a general purpose widget that can be used to make a sidescroller, and it makes the compelling argument for a general sidescroller
[2022-01-01 16:09:14] <Lucifer_arma> the way it works, Qt can optimize a lot of crap for performance and stability without knowing in advance what it's actually going to display
[2022-01-01 16:09:57] <Lucifer_arma> what do you mean by immediate mode GUI?  The two concepts in my head are object oriented and menu-based, where menu-based (like arma) is just a subset of object-oriented
[2022-01-01 16:11:49] <Lucifer_arma> also, as far as enforcing coding styles, it's really not possible to get around doing that.  I'm already requiring developers to make an Application and MainWindow object.
[2022-01-01 16:12:23] <Lucifer_arma> and we'll definitely have a style where cerritos does 99% of the work (that may be hyperbolic) and takes over the main loop completely
[2022-01-01 16:13:13] <Lucifer_arma> we'll have event-based game programming, where you get a controller event, or a collision event, or whatever
[2022-01-01 16:13:53] <Lucifer_arma> we're already talking about making a sprite file format that will describe the sprite, give paths to images, define collision geometry, animation parameters, etc.
[2022-01-01 16:15:19] <Lucifer_arma> the whole point of reserving a way of letting the game developer manage the main loop is basically admitting we won't get everything right, and yeah, it's your game, so it's up to you to fix it :)
[2022-01-01 16:17:54] <Lucifer_arma> we also have new ideas to bring to the table.  We'll be abstracting controllers, primarily because we want to make IP controllers that run as apps on another system, like a phone or a tablet
[2022-01-01 16:19:23] <Lucifer_arma> we're also going to support multiple displays over IP, because the WiiU controller was a great idea that failed because Nintendo's policies about developers are crap, not because the technology sucked
[2022-01-01 16:20:13] <Lucifer_arma> so you could have arma playing on the big screen in your living room, and the mini-map displaying on a tablet sitting on a stand in front of you
[2022-01-01 16:20:56] <Lucifer_arma> at the same time, we're looking at all the old games (80s, mostly) and asking "What do we need to put in cerritos so you can write <this game> in 20 lines or less?"
[2022-01-01 16:21:17] <Lucifer_arma> where "20 lines or less" is an arbitrary choice meant to show "few lines needed"
[2022-01-01 16:23:18] <Lucifer_arma> with that in mind, our sidescroller doesn't have to implement all possible sidescrolling methods, it really only has to be able to play pitfall, galaga, and super mario brothers
[2022-01-01 16:23:37] <Lucifer_arma> from there, it should be reasonably extensible to support other games
[2022-01-01 16:24:02] <Lucifer_arma> by pitfall I meant pitfall 2, pitfall wasn't a sidescroller
[2022-01-01 19:42:50] -!- Z-Man changed nick to Guest9932
[2022-01-01 19:42:52] --> Z-Man has joined the channel
[2022-01-01 19:45:19] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-01 19:46:29] --> Z-Man has joined the channel
[2022-01-01 19:48:27] <-- Guest9932 has quit (Ping timeout: 480 seconds)
[2022-01-01 21:20:21] -!- Z-Man changed nick to Guest9941
[2022-01-01 21:20:22] --> Z-Man has joined the channel
[2022-01-01 21:24:30] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-01 21:25:40] --> Z-Man has joined the channel
[2022-01-01 21:27:51] <-- Guest9941 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-02 00:00:00 to 2022-01-02 23:59:59.999999.
Query completed in 7.01 seconds
[2022-01-02 03:13:12] <Lucifer_arma> in non-game news, I'm finally crossing over to the dark side, and I like it.  I ordered the ubereats thermal bag to replace my ailing postmates bag.
[2022-01-02 03:13:41] <Lucifer_arma> Besides the fact that my bag has been falling apart, I also made programmer money tonight delivering food.
[2022-01-02 03:14:06] <Lucifer_arma> It won't happen very often, but it's awesome that it happened.  So I will be sporting the ubereats bag in the future.
[2022-01-02 15:15:36] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-02 15:15:40] --> Z-Man has joined the channel
[2022-01-02 21:18:54] -!- Z-Man changed nick to Guest10071
[2022-01-02 21:18:56] --> Z-Man has joined the channel
[2022-01-02 21:23:07] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-02 21:24:16] --> Z-Man has joined the channel
[2022-01-02 21:26:52] <-- Guest10071 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-03 00:00:00 to 2022-01-03 23:59:59.999999.
Query completed in 6.99 seconds
[2022-01-03 14:44:42] -!- Z-Man changed nick to Guest10163
[2022-01-03 14:44:43] --> Z-Man has joined the channel
[2022-01-03 14:46:17] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-03 14:47:57] --> Z-Man has joined the channel
[2022-01-03 14:49:56] <-- Guest10163 has quit (Ping timeout: 480 seconds)
[2022-01-03 16:23:47] --> yuri has joined the channel
[2022-01-03 16:34:19] <-- yuri has left the channel ()
[2022-01-03 21:35:41] -!- Z-Man changed nick to Guest10178
[2022-01-03 21:35:43] --> Z-Man has joined the channel
[2022-01-03 21:39:37] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-03 21:41:09] --> Z-Man has joined the channel
[2022-01-03 21:43:12] <-- Guest10178 has quit (Ping timeout: 480 seconds)
[2022-01-03 22:18:26] <-- luke-jr has quit (Ping timeout: 260 seconds)
[2022-01-03 22:18:45] --> lukedashjr has joined the channel
[2022-01-03 22:20:30] -!- lukedashjr changed nick to luke-jr
[2022-01-03 22:22:03] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-03 22:45:28] --> Luke-Jr has joined the channel
[2022-01-03 23:48:18] --> lukedashjr has joined the channel
[2022-01-03 23:49:37] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-03 23:50:07] -!- lukedashjr changed nick to luke-jr
[2022-01-03 23:54:03] <-- Luke-Jr has quit (Ping timeout: 480 seconds)

Searching from 2022-01-04 00:00:00 to 2022-01-04 23:59:59.999999.
Query completed in 8.00 seconds
[2022-01-04 00:17:25] --> Luke-Jr has joined the channel
[2022-01-04 06:25:22] <Z-Man> Immediate Mode GUI works like immediate mode OpenGL. You have no objects representing the UI, just function calls. So a main menu might look like
[2022-01-04 06:25:29] <Z-Man> void MainMenu(){
[2022-01-04 06:25:46] <Z-Man> MenuStart("Main Menu");
[2022-01-04 06:26:10] <Z-Man> if( MenuItemText("Start") ) EnterGame();
[2022-01-04 06:26:43] <Z-Man> if( MenuItemText("Settings") ) SettingsMenu();
[2022-01-04 06:26:55] <Z-Man> if( MenuItemText("Exit")) return;
[2022-01-04 06:27:02] <Z-Man> MenuEnd();
[2022-01-04 06:27:03] <Z-Man> }
[2022-01-04 06:27:22] <Z-Man> And I forgot to put all of that function body into a while(true) loop.
[2022-01-04 06:30:52] <Z-Man> So for each UI item, you pass all the information needed into a function, and the return value tells you the state. It might be more elaborate than a boolean, maybe you can also detect which item currently is selected.
[2022-01-04 06:32:30] <Z-Man> And there usually needs to be some local state; something does need to track which item currently is selected, where the mouse pointer is and things.
[2022-01-04 06:45:45] <Z-Man> The "20 lines or less for any classic game" goal is a good one. If interpreted loosely, yeah. Without any lines that make you go "wtf do *I* have to do this?" might be a better angle, after all, complexity varies. The destructible shield blocks in Space Invaders, for example, would take up a surprising amount of code in any modern reimplementation.
[2022-01-04 06:46:31] <Z-Man> Back then, they were just bits in the framebuffer, I assume, and you'd directly check for collisions by checking the right bit at the location of the shots and clear them out on hit.
[2022-01-04 06:47:33] <Z-Man> Nowadays, you don't have direct cheap access to the frame buffer, or any graphics buffer. So you have to keep a shadow copy in some CPU accessible data structure.
[2022-01-04 06:48:28] <Z-Man> And on hit, you need to update the image and re-upload it to the GPU... Of course, if you're super hardcore, you do it all in shader code that runs entirely on the GPU.
[2022-01-04 06:52:53] <Z-Man> Huh, apparently nobody has done that so far.
[2022-01-04 06:57:01] <Z-Man> Another super important test for any engine: A platformer with moving platforms. Absolutely critical: If you are standing on a platform that moves upward, you must not sink into it.
[2022-01-04 06:59:51] <Z-Man> Movement must not become glitchy on a platform that is moving downward. Even Zelda: BOTW gets this wrong. "Moving" may also mean "Rotating" and you're standing on the side that goes up or down.
[2022-01-04 07:07:12] <Z-Man> Conservation of momentum needs to be a choice for the game designer. If a platform I'm on switches from moving to the left to moving to the right suddenly, do I still move a bit to the left, risking falling off, or do I stay glued to the platform? If I jump off a platform that is moving up, does my jump get higher than usual? If a platform I am on is continuously moving left and I jump up, do I still move left and safely land back on the 
[2022-01-04 07:07:12] <Z-Man> platform without touching the left/right controls (air resistance ignored)? The engine should not answer those questions. So collision information given to the game needs to not just include current positions, but also velocities for this and the previous frame, minimum.
[2022-01-04 07:18:26] <Z-Man> Another thing many platformers have that engines support poorly: One way collisions. Platforms that you don't fall off, but you can jump through them from below. Usually represented as thin floors. Related: Walls you can only pass one way. I can't think of a good unified solution that can handle both.
[2022-01-04 07:33:05] <Z-Man> Game code execution order is critical for all of this. I personally would not use an event based system, given the choice. Handling player input and player movement need to happen together. I can't think of a situation where I would want to subscribe to an input event, all I'd do in the handler is store the input away for later processing.
[2022-01-04 07:35:42] <Z-Man> (So yes, Arma uses a mechanism that passes for event based input processing and pressing a turn key on the client immediately turns the cycle on the client. But STFU :) The brake is just stored in a bit, and on the server, input commands from the clients are just stored in a buffer for later execution.)
[2022-01-04 07:41:36] <Z-Man> Same for collision events. The right time to resolve player collisions is right after you decided how you want to move the player. If collisions are reported via events exclusively, that makes reacting to them correclty hard.
[2022-01-04 07:45:08] <Z-Man> Of course, there a case can be made that collision events should be provided: If I want a ball bouncing around the level, I don't want to check for its collision state every frame. I want it handled by physics. Ideally completely, but if I want to customize its bounce so it never gets to rest, I'll need to put some work in, and a collision event handler would be the most convenient place to do that.
[2022-01-04 11:10:58] <Z-Man> Back to moving platforms, you also want good support for elements that slowly react to the player character's presence, like scales and see-saws that go down when you are on top of them. The quick handwavy solution to all of those is to just stick everything into a physics system. Only then, you make behavior much harder to tune because you're no longer setting the maximum player run speed, you're setting friction, mass and forces. Also, 
[2022-01-04 11:10:58] <Z-Man> you open yourself up to weird, unexplainable glitches.
[2022-01-04 11:13:52] <Z-Man> So slowly reacting stuff needs to be possible without full physics. Should not be a problem, since it's supposed to react slowly, you get away with having it react to the state of the player character a frame ago.
[2022-01-04 11:14:26] <Z-Man> Qt::QGraphicsView does indeed look like a 2D game rendering engine, just one with a lot of stuff you don't need :)
[2022-01-04 11:26:43] <Z-Man> The Wii U has a proprietary RF signal feeding the tablet display, IIRC. Only that gave it a low enough latency. Over IP and especially WiFi, you will always get delays. Of course, for secondary displays or slower stuff, it can still work. There are very few games that use the smartphones everybody is expected to have now as secondary displays.
[2022-01-04 11:27:52] <Z-Man> Fibbage, I think, is a game that uses a big screen for shared information, and then each player's smartphone for secret information... IIRC, it's a "who can lie to the assembled friends best" kind of game.
[2022-01-04 11:28:51] <Z-Man> And I think there is a Starship Bridge Simulator thing like you wanted to create, where the TV is the main viewscreen and every bridge crewmember has their console on their own device.
[2022-01-04 11:29:13] <Z-Man> More of that stuff could be good.
[2022-01-04 13:43:36] --> lukedashjr has joined the channel
[2022-01-04 13:44:03] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-04 13:45:26] -!- lukedashjr changed nick to luke-jr
[2022-01-04 13:48:32] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-04 13:52:50] --> lukedashjr has joined the channel
[2022-01-04 13:54:37] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-04 13:54:42] -!- lukedashjr changed nick to luke-jr
[2022-01-04 14:11:53] --> Luke-Jr has joined the channel
[2022-01-04 14:57:01] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-04 14:58:16] --> luke-jr has joined the channel
[2022-01-04 15:01:00] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-04 15:24:20] --> Luke-Jr has joined the channel
[2022-01-04 17:04:18] <-- Lucifer_arma has quit (Quit: Konversation terminated!)
[2022-01-04 17:33:38] --> Lucifer_arma has joined the channel
[2022-01-04 17:35:24] <Lucifer_arma> EmptyEpsilon is the open source bridge simulator, and it's quite fun
[2022-01-04 17:35:31] <Lucifer_arma> there's also Space Nerds in Space
[2022-01-04 17:41:22] <Lucifer_arma> Event-based collision detection, imo, is most useful for objects that aren't real important and have their own physics embedded in the class
[2022-01-04 17:41:55] <Lucifer_arma> While I want to have everything be event-based, I don't want event-based to be everything.  So there will always be a second way to do something besides events
[2022-01-04 17:42:38] <Lucifer_arma> sometimes a third.  Usually, lots of ways because the mechanism I want to use is to simply expose the fundamentals for the programmer, where game engines usually go out of their way to hide the fundamentals
[2022-01-04 17:43:42] <Lucifer_arma> also, I've seen an issue with people writing games using event-based input.  It's most obvious in Rocks and Diamonds, where two player is unplayable because their event handlers are mutually exclusive
[2022-01-04 17:44:24] <Lucifer_arma> the good news is that a decent compiler won't even include event code that's not used in the binary
[2022-01-04 17:49:04] <Lucifer_arma> You're also sorta describing a modal dialog in your immediate mode gui.  I don't have any intention of supporting that pattern, sorry.  You'll get roughly the same effect in what I do write, but it'll be different in a few ways
[2022-01-04 17:49:35] <Lucifer_arma> as for the Wii U's dumb controller, it was dumb in how they implemented it.  They already use bluetooth to connect wirelessly, but they made the screen dumb
[2022-01-04 17:50:06] <Lucifer_arma> we'll have an actual android client that you install to be the controller, so the only data sent over the wire will be game data in small amounts, and keeping *that* low latency is pretty easy
[2022-01-04 17:51:28] <Lucifer_arma> and yeah, moving platforms are one of the things you have to get right in a platformer.  Blobwars gets them exactly right, I think.
[2022-01-04 17:52:28] <Lucifer_arma> ah, QGraphicsView isn't designed to be a game engine, it's just advanced enough you could use it as one
[2022-01-04 17:52:51] <Lucifer_arma> I think someone has a Qt game engine, but it's poorly maintained, incomplete, and platform support is small
[2022-01-04 17:53:33] <Lucifer_arma> but you could somewhat easily write a QGameView that inherits QGraphicsView that essentially strips away the stuff that's not needed for games
[2022-01-04 17:54:29] <Lucifer_arma> I've been thinking about the space invader shields.  Iirc, on the atari 2600, they didn't even have access to the framebuffer, they had more direct access, which made programming for the system particular hard
[2022-01-04 17:55:30] <Lucifer_arma> I don't have a ready, obvious solution to the space invader shields, let alone a general purpose solution, but I also have a hard time coming up with another game where they did something similar
[2022-01-04 17:56:37] <Lucifer_arma> we're also only using SDL's 2d hardware accelerated api for 2d stuff.  I don't see a reason a new game engine shouldn't be fully hardware accelerated from the start, and SDL will fall back to a decent software renderer if it needs to
[2022-01-04 17:59:09] <Lucifer_arma> we may wind up changing that to an OpenGLES 2d api and not even using SDL's 2d api.  Again, no reason a new game engine should even waste time on software rendering when all the current common devices have OpenGLES drivers
[2022-01-04 17:59:52] <Lucifer_arma> the big change there will be when it's time to support the XBox, which I'm pretty sure doesn't have OpenGL-anything on it, and we'll need a native backend specific for Windows and XBox
[2022-01-04 18:00:00] <Lucifer_arma> so that's obviously down the road quite a bit
[2022-01-04 18:01:36] <Lucifer_arma> so we already have Surface, Sprite, and we'll be adding GameObject to the api
[2022-01-04 18:02:07] <Lucifer_arma> there'll be base classes so these objects can be managed internally regardless of if you're doing 2d or 3d, so in 3d, Surface may become a Mesh or Model
[2022-01-04 18:02:47] <Lucifer_arma> anyway, Surface knows only screen and image coordinates.  Sprite knows screen coordinates and collisions, and game coordinates, and GameObjects will only know game coordinates and collisions
[2022-01-04 18:03:38] <Lucifer_arma> so a sidescroller engine has the same three layer setup, where it'll use Surface to render most things, Sprites for some things, and GameObjects for the player and enemies and stuff
[2022-01-04 18:04:03] <Lucifer_arma> so we'll start with the Surface layer and get that working right and general purpose, because that's where most of the rendering will be happening
[2022-01-04 18:04:52] <Lucifer_arma> then we'll add Sprites, and finally GameObjects, trying to keep in mind that a sidescroller isn't necessarily a platformer.  The same renderer that gives you Super Mario Brothers can also give you Ultima, after all
[2022-01-04 18:06:55] <Lucifer_arma> oh yeah, Sprites also know animation and GameObjects don't need to know.  So those two need to be pretty tightly linked so the Sprite can determine from the GameObject which animation to use without the GameObject even knowing that animation is a thing
[2022-01-04 21:34:40] -!- Z-Man changed nick to Guest10299
[2022-01-04 21:34:43] --> Z-Man has joined the channel
[2022-01-04 21:38:17] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-04 21:39:50] --> Z-Man has joined the channel
[2022-01-04 21:42:10] <-- Guest10299 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-05 00:00:00 to 2022-01-05 23:59:59.999999.
Query completed in 7.05 seconds
[2022-01-05 04:51:46] -!- Z-Man changed nick to Guest10341
[2022-01-05 04:51:49] --> Z-Man has joined the channel
[2022-01-05 04:53:25] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-05 04:55:03] --> Z-Man has joined the channel
[2022-01-05 04:57:11] <-- Guest10341 has quit (Ping timeout: 480 seconds)
[2022-01-05 05:25:43] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-05 05:27:14] --> Z-Man has joined the channel
[2022-01-05 08:20:07] -!- Z-Man changed nick to Guest10363
[2022-01-05 08:20:09] --> Z-Man has joined the channel
[2022-01-05 08:22:05] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-05 08:23:28] --> Z-Man has joined the channel
[2022-01-05 08:25:45] <-- Guest10363 has quit (Ping timeout: 480 seconds)
[2022-01-05 09:45:05] -!- Z-Man changed nick to Guest10370
[2022-01-05 09:45:06] --> Z-Man has joined the channel
[2022-01-05 09:46:57] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-05 09:48:05] --> Z-Man has joined the channel
[2022-01-05 09:50:36] <-- Guest10370 has quit (Ping timeout: 480 seconds)
[2022-01-05 10:30:03] <-- Netsplit between *.net and *.split. Quit: Z-Man, luke-jr
[2022-01-05 10:32:57] --> Netsplit between *.net and *.split ended. Joined: luke-jr, Z-Man
[2022-01-05 17:08:23] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-05 17:09:20] --> luke-jr has joined the channel
[2022-01-05 17:11:35] <-- luke-jr has quit (Excess Flood)
[2022-01-05 17:12:14] --> luke-jr has joined the channel
[2022-01-05 19:04:37] --> zmanuel has joined the channel
[2022-01-05 19:04:38] -!- Z-Man changed nick to Guest10424
[2022-01-05 19:04:38] -!- zmanuel changed nick to Z-Man
[2022-01-05 19:06:13] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-05 19:07:48] --> Z-Man has joined the channel
[2022-01-05 19:10:02] <-- Guest10424 has quit (Ping timeout: 480 seconds)
[2022-01-05 19:55:17] -!- Z-Man changed nick to Guest10428
[2022-01-05 19:55:19] --> Z-Man has joined the channel
[2022-01-05 19:56:57] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-05 19:58:35] --> Z-Man has joined the channel
[2022-01-05 20:01:02] <-- Guest10428 has quit (Ping timeout: 480 seconds)
[2022-01-05 20:59:06] --> lukedashjr has joined the channel
[2022-01-05 21:00:43] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-05 21:00:54] -!- lukedashjr changed nick to luke-jr
[2022-01-05 21:04:05] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-05 21:27:27] --> Luke-Jr has joined the channel
[2022-01-05 21:57:48] -!- Z-Man changed nick to Guest10438
[2022-01-05 21:57:50] --> Z-Man has joined the channel
[2022-01-05 22:02:03] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-05 22:03:10] --> Z-Man has joined the channel
[2022-01-05 22:05:16] <-- Guest10438 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-06 00:00:00 to 2022-01-06 23:59:59.999999.
Query completed in 6.80 seconds
[2022-01-06 01:32:17] <-- Armanelgtron has quit (No Ping reply in 180 seconds.)
[2022-01-06 01:32:17] <-- Armanelgtron has quit (No Ping reply in 180 seconds.)
[2022-01-06 01:34:32] --> Armanelgtron_ has joined the channel
[2022-01-06 01:34:32] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2022-01-06 01:34:32] -!- Topic set by ChanServ!services@services.oftc.net on 2021-07-26 22:57:25 UTC
[2022-01-06 01:34:32] -!- Armanelgtron changed nick to Guest10464
[2022-01-06 01:34:32] -!- Armanelgtron changed nick to Armanelgtron
[2022-01-06 01:34:32] -!- reflection.oftc.net set mode #armagetron +nt
[2022-01-06 01:34:32] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
[2022-01-06 01:34:35] --> Armanelgtron has joined the channel
[2022-01-06 01:34:35] -!- zirconium.libera.chat set mode #armagetron +nt
[2022-01-06 01:34:35] -!- Channel #armagetron created on 2021-05-20 17:23:14 UTC
[2022-01-06 01:36:10] <-- Guest10464 has quit (Ping timeout: 480 seconds)
[2022-01-06 13:06:17] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-06 13:06:41] --> Lucifer_arma has joined the channel
[2022-01-06 13:26:24] <-- luke-jr has quit (Read error: Connection reset by peer)
[2022-01-06 13:27:47] --> luke-jr has joined the channel
[2022-01-06 16:10:33] -!- Z-Man changed nick to Guest10503
[2022-01-06 16:10:35] --> Z-Man has joined the channel
[2022-01-06 16:12:45] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-06 16:13:52] --> Z-Man has joined the channel
[2022-01-06 16:16:21] <-- Guest10503 has quit (Ping timeout: 480 seconds)
[2022-01-06 17:32:36] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-06 17:33:25] --> Lucifer_arma has joined the channel
[2022-01-06 18:38:34] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-06 18:39:50] --> Lucifer_arma has joined the channel
[2022-01-06 21:27:03] -!- Z-Man changed nick to Guest10519
[2022-01-06 21:27:05] --> Z-Man has joined the channel
[2022-01-06 21:31:22] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-06 21:32:32] --> Z-Man has joined the channel
[2022-01-06 21:34:35] <-- Guest10519 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-07 00:00:00 to 2022-01-07 23:59:59.999999.
Query completed in 25.18 seconds
[2022-01-07 09:33:52] --> lukedashjr has joined the channel
[2022-01-07 09:35:37] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-07 09:35:41] -!- lukedashjr changed nick to luke-jr
[2022-01-07 09:39:32] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-07 10:01:57] --> Luke-Jr has joined the channel
[2022-01-07 12:13:18] --> lukedashjr has joined the channel
[2022-01-07 12:14:05] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-07 12:14:21] -!- Z-Man changed nick to Guest10564
[2022-01-07 12:14:24] --> Z-Man has joined the channel
[2022-01-07 12:15:04] -!- lukedashjr changed nick to luke-jr
[2022-01-07 12:16:21] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-07 12:16:37] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 12:17:02] --> Lucifer_arma has joined the channel
[2022-01-07 12:17:43] --> Z-Man has joined the channel
[2022-01-07 12:18:00] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-07 12:20:06] <-- Guest10564 has quit (Ping timeout: 480 seconds)
[2022-01-07 12:41:23] --> Luke-Jr has joined the channel
[2022-01-07 13:00:37] --> lukedashjr has joined the channel
[2022-01-07 13:02:49] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-07 13:03:03] -!- lukedashjr changed nick to luke-jr
[2022-01-07 13:06:27] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-07 13:09:37] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 13:10:00] --> Lucifer_arma has joined the channel
[2022-01-07 13:28:50] --> Luke-Jr has joined the channel
[2022-01-07 14:54:28] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 14:54:52] --> Lucifer_arma has joined the channel
[2022-01-07 15:25:38] -!- Z-Man changed nick to Guest10578
[2022-01-07 15:25:40] --> Z-Man has joined the channel
[2022-01-07 15:27:53] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-07 15:28:54] --> Z-Man has joined the channel
[2022-01-07 15:31:21] <-- Guest10578 has quit (Ping timeout: 480 seconds)
[2022-01-07 16:03:22] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 16:04:20] --> Lucifer_arma has joined the channel
[2022-01-07 18:35:24] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 18:46:23] --> Lucifer_arma has joined the channel
[2022-01-07 19:31:30] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 19:32:53] --> Lucifer_arma has joined the channel
[2022-01-07 19:39:59] <-- Lucifer_arma has quit (Remote host closed the connection)
[2022-01-07 19:41:21] --> Lucifer_arma has joined the channel
[2022-01-07 21:04:39] -!- Z-Man changed nick to Guest10587
[2022-01-07 21:04:41] --> Z-Man has joined the channel
[2022-01-07 21:09:01] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-07 21:10:05] --> Z-Man has joined the channel
[2022-01-07 21:12:37] <-- Guest10587 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-08 00:00:00 to 2022-01-08 23:59:59.999999.
Query completed in 6.88 seconds
[2022-01-08 16:11:56] -!- Z-Man changed nick to Guest10647
[2022-01-08 16:11:58] --> Z-Man has joined the channel
[2022-01-08 16:14:15] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-08 16:15:17] --> Z-Man has joined the channel
[2022-01-08 16:17:40] <-- Guest10647 has quit (Ping timeout: 480 seconds)
[2022-01-08 21:05:26] -!- Z-Man changed nick to Guest10655
[2022-01-08 21:05:28] --> Z-Man has joined the channel
[2022-01-08 21:09:38] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-08 21:10:58] --> Z-Man has joined the channel
[2022-01-08 21:12:56] <-- Guest10655 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-09 00:00:00 to 2022-01-09 23:59:59.999999.
Query completed in 7.12 seconds
[2022-01-09 03:30:40] <Z-Man> Lucifer_arma: Do you mean Blobwars: Metal Blob Solid? The moving platforms certainly feel good. It may be because there generally seems to be very little momentum in the game; you go to full speed and stop almost instantly.
[2022-01-09 03:31:28] <Z-Man> And when you are on a platform that is moving up or down, something very, very strange happens. If it is moving DOWN, you sink one pixel into it, if it is moving UP, you rise one pixel.
[2022-01-09 03:32:04] <Z-Man> I don't know how that happens. The other way round, sure, player position is influenced by the platform position before the current update.
[2022-01-09 03:33:02] <Z-Man> But this? What must happen is they calculate everything correctly in the update, but somehow, the plaform is shown at its previous position.
[2022-01-09 03:33:55] <Z-Man> Or they have sophisticated movement compensation code and that overcompensates. Or compensates for a bug that has since been fixed.
[2022-01-09 03:36:41] <Z-Man> Weird either way.
[2022-01-09 03:40:25] <Z-Man> Making the animation state invisible to the game logic by default is a good call. Just quickly checking what animation is currently playing to decide on gameplay logic is a frequently abused crutch that leads to hard to find bugs.
[2022-01-09 03:42:33] <Z-Man> With the exception of fighting games, of course. There it is not unusual to define the whole gameplay over the animations, which then of course need metadata for which bits of the characters are dealing damage and stuff.
[2022-01-09 06:06:19] <Lucifer_arma> Damn. Fighting games.  You always find the flaws, hehe.
[2022-01-09 06:07:12] <Lucifer_arma> I'm over here thinking "how do we make collision geometry happen on a frame by frame basis?" and you're like "Hey, remember Mortal Kombat?"
[2022-01-09 06:08:28] <Lucifer_arma> Parallel realities has some blog posts about the developent of blobwars.  I think they address platforms.
[2022-01-09 06:08:54] <Lucifer_arma> I don't know that an engine can properly address platforms.  I *do* know that an engine can give effective tools for handling them.
[2022-01-09 06:09:32] <Lucifer_arma> right now, we're still working on collision detection with sprites and layouts with widgets.  Early stages.
[2022-01-09 08:57:59] -!- Z-Man changed nick to Guest20
[2022-01-09 08:58:01] --> Z-Man has joined the channel
[2022-01-09 08:59:40] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-09 09:01:09] --> Z-Man has joined the channel
[2022-01-09 09:03:25] <-- Guest20 has quit (Ping timeout: 480 seconds)
[2022-01-09 21:14:28] -!- Z-Man changed nick to Guest72
[2022-01-09 21:14:30] --> Z-Man has joined the channel
[2022-01-09 21:18:36] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-09 21:19:50] --> Z-Man has joined the channel
[2022-01-09 21:22:00] <-- Guest72 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-10 00:00:00 to 2022-01-10 23:59:59.999999.
Query completed in 8.17 seconds
[2022-01-10 02:21:32] -!- Z-Man changed nick to Guest93
[2022-01-10 02:21:34] --> Z-Man has joined the channel
[2022-01-10 02:24:02] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-10 02:25:01] --> Z-Man has joined the channel
[2022-01-10 02:27:31] <-- Guest93 has quit (Ping timeout: 480 seconds)
[2022-01-10 03:09:17] <-- Netsplit between *.net and *.split. Quit: Z-Man
[2022-01-10 03:20:53] --> Netsplit between *.net and *.split ended. Joined: Z-Man
[2022-01-10 21:04:15] -!- Z-Man changed nick to Guest200
[2022-01-10 21:04:17] --> Z-Man has joined the channel
[2022-01-10 21:05:57] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-10 21:07:42] --> Z-Man has joined the channel
[2022-01-10 21:10:01] <-- Guest200 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-11 00:00:00 to 2022-01-11 23:59:59.999999.
Query completed in 91.85 seconds
[2022-01-11 21:03:16] -!- Z-Man changed nick to Guest265
[2022-01-11 21:03:18] --> Z-Man has joined the channel
[2022-01-11 21:07:25] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-11 21:08:52] --> Z-Man has joined the channel
[2022-01-11 21:10:46] <-- Guest265 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-12 00:00:00 to 2022-01-12 23:59:59.999999.
Query completed in 8.00 seconds
[2022-01-12 03:12:19] <-- Lucifer_arma has quit (Read error: Connection reset by peer)
[2022-01-12 03:12:46] --> Lucifer_arma has joined the channel
[2022-01-12 13:28:00] <-- Armanelgtron has quit (No Ping reply in 180 seconds.)
[2022-01-12 13:29:15] --> Armanelgtron_ has joined the channel
[2022-01-12 13:29:15] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2022-01-12 13:29:15] -!- Topic set by ChanServ!services@services.oftc.net on 2021-07-26 22:57:25 UTC
[2022-01-12 13:29:15] -!- weber.oftc.net set mode #armagetron +nt
[2022-01-12 13:29:15] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
[2022-01-12 13:30:32] <-- Netsplit between synthon.oftc.net and reflection.oftc.net. Quit: Armanelgtron, guru3
[2022-01-12 17:48:05] -!- Z-Man changed nick to Guest416
[2022-01-12 17:48:07] --> Z-Man has joined the channel
[2022-01-12 17:49:49] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-12 17:51:33] --> Z-Man has joined the channel
[2022-01-12 17:53:46] <-- Guest416 has quit (Ping timeout: 480 seconds)
[2022-01-12 21:01:35] -!- Z-Man changed nick to Guest425
[2022-01-12 21:01:37] --> Z-Man has joined the channel
[2022-01-12 21:05:16] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-12 21:06:44] --> Z-Man has joined the channel
[2022-01-12 21:09:06] <-- Guest425 has quit (Ping timeout: 480 seconds)
[2022-01-12 21:59:05] -!- Z-Man changed nick to Guest431
[2022-01-12 21:59:07] --> Z-Man has joined the channel
[2022-01-12 22:02:37] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-12 22:04:25] --> Z-Man has joined the channel
[2022-01-12 22:06:36] <-- Guest431 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-13 00:00:00 to 2022-01-13 23:59:59.999999.
Query completed in 7.03 seconds
[2022-01-13 02:46:42] --> lukedashjr has joined the channel
[2022-01-13 02:49:39] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-13 02:49:41] -!- lukedashjr changed nick to luke-jr
[2022-01-13 02:52:53] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-13 03:16:17] --> Luke-Jr has joined the channel
[2022-01-13 05:07:19] -!- Z-Man changed nick to Guest465
[2022-01-13 05:07:21] --> Z-Man has joined the channel
[2022-01-13 05:08:57] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-13 05:10:39] --> Z-Man has joined the channel
[2022-01-13 05:13:05] <-- Guest465 has quit (Ping timeout: 480 seconds)
[2022-01-13 15:19:38] -!- Z-Man changed nick to Guest504
[2022-01-13 15:19:40] --> Z-Man has joined the channel
[2022-01-13 15:21:44] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-13 15:23:17] --> Z-Man has joined the channel
[2022-01-13 15:25:17] <-- Guest504 has quit (Ping timeout: 480 seconds)
[2022-01-13 15:59:13] -!- Z-Man changed nick to Guest506
[2022-01-13 15:59:15] --> Z-Man has joined the channel
[2022-01-13 16:01:10] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-13 16:02:28] --> Z-Man has joined the channel
[2022-01-13 16:04:40] <-- Guest506 has quit (Ping timeout: 480 seconds)
[2022-01-13 16:07:59] --> lukedashjr has joined the channel
[2022-01-13 16:10:31] <-- luke-jr has quit (Ping timeout: 256 seconds)
[2022-01-13 16:11:07] -!- lukedashjr changed nick to luke-jr
[2022-01-13 16:14:33] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-13 16:37:56] --> Luke-Jr has joined the channel
[2022-01-13 17:47:45] -!- Z-Man changed nick to Guest513
[2022-01-13 17:47:47] --> Z-Man has joined the channel
[2022-01-13 17:49:56] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-13 17:51:09] --> Z-Man has joined the channel
[2022-01-13 17:53:15] <-- Guest513 has quit (Ping timeout: 480 seconds)
[2022-01-13 21:31:45] -!- Z-Man changed nick to Guest524
[2022-01-13 21:31:48] --> Z-Man has joined the channel
[2022-01-13 21:35:37] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-13 21:36:50] --> Z-Man has joined the channel
[2022-01-13 21:39:15] <-- Guest524 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-14 00:00:00 to 2022-01-14 23:59:59.999999.
Query completed in 8.19 seconds
[2022-01-14 08:42:14] -!- Z-Man changed nick to Guest564
[2022-01-14 08:42:17] --> Z-Man has joined the channel
[2022-01-14 08:44:27] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-14 08:45:31] --> Z-Man has joined the channel
[2022-01-14 08:47:45] <-- Guest564 has quit (Ping timeout: 480 seconds)
[2022-01-14 21:13:44] -!- Z-Man changed nick to Guest590
[2022-01-14 21:13:47] --> Z-Man has joined the channel
[2022-01-14 21:17:54] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-14 21:19:12] --> Z-Man has joined the channel
[2022-01-14 21:21:15] <-- Guest590 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-15 00:00:00 to 2022-01-15 23:59:59.999999.
Query completed in 7.53 seconds
[2022-01-15 06:44:18] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-15 06:46:56] --> luke-jr has joined the channel
[2022-01-15 10:04:50] -!- Z-Man changed nick to Guest633
[2022-01-15 10:04:52] --> Z-Man has joined the channel
[2022-01-15 10:07:05] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-15 10:08:22] --> Z-Man has joined the channel
[2022-01-15 10:10:16] <-- Guest633 has quit (Ping timeout: 480 seconds)
[2022-01-15 11:04:58] -!- Z-Man changed nick to Guest636
[2022-01-15 11:05:00] --> Z-Man has joined the channel
[2022-01-15 11:07:02] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-15 11:08:33] --> Z-Man has joined the channel
[2022-01-15 11:10:50] <-- Guest636 has quit (Ping timeout: 480 seconds)
[2022-01-15 13:02:14] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-15 13:03:26] --> luke-jr has joined the channel
[2022-01-15 13:42:23] <-- Luke-Jr has quit (Remote host closed the connection)
[2022-01-15 13:44:44] --> Luke-Jr has joined the channel
[2022-01-15 18:35:56] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-15 18:37:25] --> luke-jr has joined the channel
[2022-01-15 21:45:58] -!- Z-Man changed nick to Guest663
[2022-01-15 21:46:00] --> Z-Man has joined the channel
[2022-01-15 21:49:32] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-15 21:51:14] --> Z-Man has joined the channel
[2022-01-15 21:53:30] <-- Guest663 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-16 00:00:00 to 2022-01-16 23:59:59.999999.
Query completed in 7.43 seconds
[2022-01-16 21:44:59] -!- Z-Man changed nick to Guest729
[2022-01-16 21:45:01] --> Z-Man has joined the channel
[2022-01-16 21:49:02] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-16 21:50:25] --> Z-Man has joined the channel
[2022-01-16 21:52:30] <-- Guest729 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-17 00:00:00 to 2022-01-17 23:59:59.999999.
Query completed in 6.93 seconds
[2022-01-17 06:02:51] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-17 06:04:52] --> luke-jr has joined the channel
[2022-01-17 20:15:38] --> guru3 has joined the channel
[2022-01-17 20:21:30] <-- guru3_ has quit (Ping timeout: 480 seconds)
[2022-01-17 21:09:39] <-- Netsplit between charon.oftc.net and coulomb.oftc.net. Quit: guru3
[2022-01-17 21:19:33] --> Netsplit between charon.oftc.net and coulomb.oftc.net ended. Joined: guru3
[2022-01-17 21:43:58] -!- Z-Man changed nick to Guest903
[2022-01-17 21:44:00] --> Z-Man has joined the channel
[2022-01-17 21:47:42] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-17 21:49:06] --> Z-Man has joined the channel
[2022-01-17 21:51:31] <-- Guest903 has quit (Ping timeout: 480 seconds)
[2022-01-17 23:16:00] <Lucifer_arma> I'm giving in to discord.  Held out as long as possible.  My youngest needs me to be on discord to talk to him on a PC.  We can do phone anytime, but when I need to copy and paste shit for him, it's gotta be discord
[2022-01-17 23:16:08] <Lucifer_arma> so I'm going to finally get on discord

Searching from 2022-01-18 00:00:00 to 2022-01-18 23:59:59.999999.
Query completed in 7.60 seconds
[2022-01-18 21:42:28] -!- Z-Man changed nick to Guest990
[2022-01-18 21:42:30] --> Z-Man has joined the channel
[2022-01-18 21:46:37] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-18 21:47:47] --> Z-Man has joined the channel
[2022-01-18 21:49:58] <-- Guest990 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-19 00:00:00 to 2022-01-19 23:59:59.999999.
Query completed in 7.49 seconds
[2022-01-19 21:41:28] -!- Z-Man changed nick to Guest1098
[2022-01-19 21:41:30] --> Z-Man has joined the channel
[2022-01-19 21:45:47] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-19 21:46:59] --> Z-Man has joined the channel
[2022-01-19 21:49:00] <-- Guest1098 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-20 00:00:00 to 2022-01-20 23:59:59.999999.
Query completed in 6.72 seconds
[2022-01-20 12:13:21] <Z-Man> Lucifer_arma: In case you moderate new posts, the spambots have a new trick(new to me, at least). They quote a previous post and hide their links in there, with small text, so you really only see them when you edit their posts.
[2022-01-20 12:23:05] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-20 12:25:04] --> luke-jr has joined the channel
[2022-01-20 18:17:52] <-- Armanelgtron has quit (No Ping reply in 180 seconds.)
[2022-01-20 18:18:13] <-- Armanelgtron_ has quit (No Ping reply in 210 seconds.)
[2022-01-20 18:19:58] --> Armanelgtron has joined the channel
[2022-01-20 18:19:58] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2022-01-20 18:19:58] -!- Topic set by ChanServ!services@services.oftc.net on 2021-07-26 22:57:25 UTC
[2022-01-20 18:19:59] -!- larich.oftc.net set mode #armagetron +nt
[2022-01-20 18:19:59] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
[2022-01-20 18:20:04] --> Armanelgtron has joined the channel
[2022-01-20 18:20:05] -!- erbium.libera.chat set mode #armagetron +nt
[2022-01-20 18:20:05] -!- Channel #armagetron created on 2021-05-20 17:23:14 UTC
[2022-01-20 18:22:02] <-- Armanelgtron_ has quit (Ping timeout: 480 seconds)
[2022-01-20 20:07:41] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-20 20:09:40] --> luke-jr has joined the channel
[2022-01-20 21:40:28] -!- Z-Man changed nick to Guest1227
[2022-01-20 21:40:31] --> Z-Man has joined the channel
[2022-01-20 21:43:57] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-20 21:45:40] --> Z-Man has joined the channel
[2022-01-20 21:48:01] <-- Guest1227 has quit (Ping timeout: 480 seconds)
[2022-01-20 22:43:52] <-- Luke-Jr has quit (Remote host closed the connection)
[2022-01-20 22:43:57] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-20 23:07:25] --> luke-jr has joined the channel
[2022-01-20 23:16:20] --> Luke-Jr has joined the channel

Searching from 2022-01-21 00:00:00 to 2022-01-21 23:59:59.999999.
Query completed in 8.45 seconds
[2022-01-21 02:07:27] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-21 02:08:12] --> luke-jr has joined the channel
[2022-01-21 03:34:05] --> monr0e has joined the channel
[2022-01-21 04:00:30] --> Lucifer_arma_ has joined the channel
[2022-01-21 04:03:24] <-- Netsplit between synthon.oftc.net and weber.oftc.net. Quit: Lucifer_arma
[2022-01-21 10:14:37] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-21 20:53:54] --> monr0e has joined the channel
[2022-01-21 21:39:28] -!- Z-Man changed nick to Guest88
[2022-01-21 21:39:31] --> Z-Man has joined the channel
[2022-01-21 21:43:14] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-21 21:44:51] --> Z-Man has joined the channel
[2022-01-21 21:47:00] <-- Guest88 has quit (Ping timeout: 480 seconds)
[2022-01-21 23:27:02] <-- monr0e has quit (Quit: Leaving)
[2022-01-21 23:27:21] --> monr0e has joined the channel
[2022-01-21 23:36:29] <-- monr0e has quit (Read error: Connection reset by peer)
[2022-01-21 23:36:46] --> monr0e has joined the channel

Searching from 2022-01-22 00:00:00 to 2022-01-22 23:59:59.999999.
Query completed in 8.05 seconds
[2022-01-22 09:12:37] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-22 16:59:10] <-- Luke-Jr has quit (Server closed connection)
[2022-01-22 17:30:36] --> Luke-Jr has joined the channel
[2022-01-22 18:52:57] --> monr0e has joined the channel
[2022-01-22 19:17:21] <-- Lucifer_arma_ has quit (Server closed connection)
[2022-01-22 19:17:46] --> Lucifer_arma_ has joined the channel
[2022-01-22 21:38:29] -!- Z-Man changed nick to Guest234
[2022-01-22 21:38:31] --> Z-Man has joined the channel
[2022-01-22 21:41:54] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-22 21:43:34] --> Z-Man has joined the channel
[2022-01-22 21:46:01] <-- Guest234 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-23 00:00:00 to 2022-01-23 23:59:59.999999.
Query completed in 7.78 seconds
[2022-01-23 03:32:34] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-23 03:34:50] --> luke-jr has joined the channel
[2022-01-23 04:56:23] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-23 04:58:39] --> luke-jr has joined the channel
[2022-01-23 12:10:37] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-23 18:44:25] --> Armanelgtron has joined the channel
[2022-01-23 18:44:25] -!- Topic for #armagetron is "Armagetron Advanced | http://www.armagetronad.org/ | Welcome to IRC"
[2022-01-23 18:44:25] -!- Topic set by ChanServ!services@services.oftc.net on 2021-07-26 22:57:25 UTC
[2022-01-23 18:44:26] -!- weber.oftc.net set mode #armagetron +nt
[2022-01-23 18:44:26] -!- Channel #armagetron created on 2021-04-20 19:56:37 UTC
[2022-01-23 21:37:29] -!- Z-Man changed nick to Guest346
[2022-01-23 21:37:31] --> Z-Man has joined the channel
[2022-01-23 21:41:37] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-23 21:42:45] --> Z-Man has joined the channel
[2022-01-23 21:45:01] <-- Guest346 has quit (Ping timeout: 480 seconds)
[2022-01-23 22:04:22] --> monr0e has joined the channel

Searching from 2022-01-24 00:00:00 to 2022-01-24 23:59:59.999999.
Query completed in 8.08 seconds
[2022-01-24 03:01:28] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-24 03:02:37] --> luke-jr has joined the channel
[2022-01-24 12:53:22] <-- Netsplit between resistance.oftc.net and synthon.oftc.net. Quit: guru3, Z-Man
[2022-01-24 12:54:08] --> Netsplit between resistance.oftc.net and synthon.oftc.net ended. Joined: Z-Man, guru3
[2022-01-24 13:12:57] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-24 21:35:59] -!- Z-Man changed nick to Guest473
[2022-01-24 21:36:02] --> Z-Man has joined the channel
[2022-01-24 21:39:37] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-24 21:40:55] --> Z-Man has joined the channel
[2022-01-24 21:43:31] <-- Guest473 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-25 00:00:00 to 2022-01-25 23:59:59.999999.
Query completed in 19.27 seconds
[2022-01-25 01:11:43] --> monr0e has joined the channel
[2022-01-25 07:08:39] -!- Z-Man changed nick to Guest532
[2022-01-25 07:08:40] --> Z-Man has joined the channel
[2022-01-25 07:11:03] <-- Guest532 has quit (Ping timeout: 480 seconds)
[2022-01-25 07:22:03] <-- monr0e has quit (Read error: Connection reset by peer)
[2022-01-25 08:09:10] --> monr0e has joined the channel
[2022-01-25 11:33:13] <-- monr0e has quit (Quit: Leaving)
[2022-01-25 11:36:29] --> monr0e has joined the channel
[2022-01-25 14:29:57] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-25 21:35:08] -!- Z-Man changed nick to Guest607
[2022-01-25 21:35:09] --> Z-Man has joined the channel
[2022-01-25 21:38:46] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-25 21:40:05] --> Z-Man has joined the channel
[2022-01-25 21:42:40] <-- Guest607 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-26 00:00:00 to 2022-01-26 23:59:59.999999.
Query completed in 6.86 seconds
[2022-01-26 00:08:19] --> monr0e has joined the channel
[2022-01-26 03:04:57] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-26 04:18:27] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-26 04:21:08] --> luke-jr has joined the channel
[2022-01-26 06:27:24] --> monr0e has joined the channel
[2022-01-26 10:05:57] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-26 13:00:17] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-26 13:04:34] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-26 13:05:20] --> monr0e has joined the channel
[2022-01-26 13:32:43] --> Luke-Jr has joined the channel
[2022-01-26 13:34:09] --> luke-jr has joined the channel
[2022-01-26 17:18:48] <-- monr0e has quit (Read error: Connection reset by peer)
[2022-01-26 17:46:31] --> lukedashjr has joined the channel
[2022-01-26 17:49:04] <-- luke-jr has quit (Ping timeout: 250 seconds)
[2022-01-26 17:49:26] -!- lukedashjr changed nick to luke-jr
[2022-01-26 17:52:50] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-26 18:11:07] --> monr0e has joined the channel
[2022-01-26 18:15:37] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-26 18:16:10] --> Luke-Jr has joined the channel
[2022-01-26 21:33:38] -!- Z-Man changed nick to Guest716
[2022-01-26 21:33:39] --> Z-Man has joined the channel
[2022-01-26 21:37:21] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-26 21:38:46] --> Z-Man has joined the channel
[2022-01-26 21:41:12] <-- Guest716 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-27 00:00:00 to 2022-01-27 23:59:59.999999.
Query completed in 7.85 seconds
[2022-01-27 04:06:26] --> monr0e has joined the channel
[2022-01-27 05:07:06] <-- monr0e has quit (Read error: Connection reset by peer)
[2022-01-27 05:10:20] --> monr0e has joined the channel
[2022-01-27 05:12:51] <-- monr0e has quit (Read error: Connection reset by peer)
[2022-01-27 05:34:04] --> monr0e has joined the channel
[2022-01-27 15:17:29] -!- Lucifer_arma_ changed nick to Lucifer_arma
[2022-01-27 15:56:21] <-- monr0e has quit (Ping timeout: 250 seconds)
[2022-01-27 17:31:24] --> monr0e has joined the channel
[2022-01-27 20:48:57] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-27 21:32:38] -!- Z-Man changed nick to Guest837
[2022-01-27 21:32:39] --> Z-Man has joined the channel
[2022-01-27 21:36:42] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-27 21:37:57] --> Z-Man has joined the channel
[2022-01-27 21:40:11] <-- Guest837 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-28 00:00:00 to 2022-01-28 23:59:59.999999.
Query completed in 8.37 seconds
[2022-01-28 01:07:19] <-- Netsplit between *.net and *.split. Quit: Z-Man
[2022-01-28 01:13:19] --> Netsplit between *.net and *.split ended. Joined: Z-Man
[2022-01-28 04:22:52] --> monr0e has joined the channel
[2022-01-28 15:22:54] --> lukedashjr has joined the channel
[2022-01-28 15:24:37] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-28 15:24:39] -!- lukedashjr changed nick to luke-jr
[2022-01-28 15:28:47] <-- Luke-Jr has quit (Ping timeout: 480 seconds)
[2022-01-28 15:41:56] --> lukedashjr has joined the channel
[2022-01-28 15:42:37] <-- luke-jr has quit (Ping timeout: 240 seconds)
[2022-01-28 15:43:27] -!- lukedashjr changed nick to luke-jr
[2022-01-28 15:52:08] --> Luke-Jr has joined the channel
[2022-01-28 18:48:30] <-- monr0e has quit (Ping timeout: 260 seconds)
[2022-01-28 21:31:08] -!- Z-Man changed nick to Guest948
[2022-01-28 21:31:09] --> Z-Man has joined the channel
[2022-01-28 21:35:28] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-28 21:36:38] --> Z-Man has joined the channel
[2022-01-28 21:38:41] <-- Guest948 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-29 00:00:00 to 2022-01-29 23:59:59.999999.
Query completed in 7.77 seconds
[2022-01-29 04:21:01] --> monr0e has joined the channel
[2022-01-29 19:25:09] <-- monr0e has quit (Ping timeout: 250 seconds)
[2022-01-29 21:30:09] -!- Z-Man changed nick to Guest1072
[2022-01-29 21:30:10] --> Z-Man has joined the channel
[2022-01-29 21:33:37] <-- Z-Man has quit (Ping timeout: 240 seconds)
[2022-01-29 21:35:19] --> Z-Man has joined the channel
[2022-01-29 21:37:42] <-- Guest1072 has quit (Ping timeout: 480 seconds)

Searching from 2022-01-30 00:00:00 to 2022-01-30 23:59:59.999999.
Query completed in 7.48 seconds
[2022-01-30 05:22:46] --> monr0e has joined the channel
[2022-01-30 09:59:47] <Lucifer_arma> well, covid definitely isn't a fun illness
[2022-01-30 10:21:57] <Lucifer_arma> I think I broke the fever again, but still not sure.  We'll see how today goes.  Good thing I got vaccinated, could have been a lot worse ;)
[2022-01-30 14:35:48] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-30 14:36:55] --> luke-jr has joined the channel
[2022-01-30 15:30:56] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-30 15:32:04] --> luke-jr has joined the channel
[2022-01-30 15:46:30] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-30 15:47:37] --> luke-jr has joined the channel
[2022-01-30 19:29:17] <-- monr0e has quit (Ping timeout: 240 seconds)
[2022-01-30 19:41:40] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-30 19:42:48] --> luke-jr has joined the channel
[2022-01-30 21:28:43] -!- Z-Man changed nick to Guest1190
[2022-01-30 21:28:45] --> Z-Man has joined the channel
[2022-01-30 21:32:32] <-- Z-Man has quit (Ping timeout: 250 seconds)
[2022-01-30 21:33:59] --> Z-Man has joined the channel
[2022-01-30 21:36:41] <-- Guest1190 has quit (Ping timeout: 480 seconds)
[2022-01-30 23:48:58] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-30 23:50:07] --> luke-jr has joined the channel

Searching from 2022-01-31 00:00:00 to 2022-01-31 23:59:59.999999.
Query completed in 10.66 seconds
[2022-01-31 06:19:33] --> monr0e has joined the channel
[2022-01-31 13:28:01] <Lucifer_arma> wooo, feeling a lot better.  Still some head congestion, but the coughing has died down to about the same as the smoker's cough I already live with by being an idiot---er, smoker
[2022-01-31 13:29:16] <Lucifer_arma> still some dehydration and skin crawling feeling, but otherwise, a lot better
[2022-01-31 20:54:09] <-- monr0e has quit (Ping timeout: 256 seconds)
[2022-01-31 21:23:58] <Lucifer_arma> ok.  I made a patreon page.  It means I'm up to something...  https://www.patreon.com/davefancella
[2022-01-31 21:27:44] -!- Z-Man changed nick to Guest1342
[2022-01-31 21:27:45] --> Z-Man has joined the channel
[2022-01-31 21:31:46] <-- Z-Man has quit (Ping timeout: 256 seconds)
[2022-01-31 21:33:11] --> Z-Man has joined the channel
[2022-01-31 21:35:17] <-- Guest1342 has quit (Ping timeout: 480 seconds)
[2022-01-31 22:12:12] <-- luke-jr has quit (Quit: ZNC - http://znc.sourceforge.net)
[2022-01-31 22:12:50] --> luke-jr has joined the channel


DISCLAIMER: These logs of public chat may contain some content which may not be appropriate for all audiences. Use at your own risk.
Logs from 2006-2009 pulled from wrtlprnft
Format changes at: 2015-08-25, 2017-02-20, and 2020-03-23. Times (2015 and later) should be Eastern.


 
 
 ArmaNelgTron.tk
 © NelgTron 2014-2024. Made for . [About this site] [Credits]