The Still New What Did You Last Do Thread
- DoomRater
- Posts: 8270
- Joined: Wed Jul 28, 2004 8:21 am
- Preferred Pronouns: He/Him
- Location: WATR HQ
- Contact:
Re: The New What Did You Last Do Thread
I'm tempted to find a picture of Dick Tracy to back that up. But Penny is more awesome.
- leileilol
- Posts: 4449
- Joined: Sun May 30, 2004 10:16 am
- Preferred Pronouns: She/Her
- Location: GNU/Hell
Re: The New What Did You Last Do Thread
I've got your Dick pic right here
- Captain J
-
- Posts: 16891
- Joined: Tue Oct 02, 2012 2:20 am
- Location: An ancient Escape Shuttle(No longer active here anymore)
- Contact:
Re: The New What Did You Last Do Thread
Because we want to enjoy the video call while getting some serious information like, all the time?Gez wrote:Dancso wrote:1. Why is a watch filling the role of a phone
Re: The New What Did You Last Do Thread
Another BD devlog.
- Kinsie
- Posts: 7402
- Joined: Fri Oct 22, 2004 9:22 am
- Graphics Processor: nVidia with Vulkan support
- Location: MAP33
- Contact:
Re: The New What Did You Last Do Thread
This is the "What Did You Last Do" thread. Not the "What Did Some Jagoff On The Internet Last Do" thread.Jeimuzu73 wrote:Another BD devlog.
Re: The New What Did You Last Do Thread
Most of the features showcased in that video look embarassingly bad... Only some of the props look decent, but they look completely out of place on iwad maps. Who on their right mind thought this was a good idea?
- DoomKrakken
- Posts: 3489
- Joined: Sun Oct 19, 2014 6:45 pm
- Location: Plahnit Urff
- Contact:
Re: The New What Did You Last Do Thread
I did... 
I especially love the added jungle effects in Plutonia... definitely makes it look more realistic. And the rain... oh my goodness, the rain... it makes it into the one type of map that I would play.
I haven't played Plutonia yet... I'm thinking I might try it once the next version of Brutal Doom comes out. I hope there is a generic version for it, so I could play it with my mods...

I especially love the added jungle effects in Plutonia... definitely makes it look more realistic. And the rain... oh my goodness, the rain... it makes it into the one type of map that I would play.

I haven't played Plutonia yet... I'm thinking I might try it once the next version of Brutal Doom comes out. I hope there is a generic version for it, so I could play it with my mods...
Re: The New What Did You Last Do Thread
Yes, a mappack known for its relentless chaingunner placement (not that that's a bad thing), now filled with trees right in front of the chaingunners who you can now no longer see while they're shooting at you. That definitely makes the map into something I would play compared to before...
Oh well, to each their own I guess. Let's also not act like rain is something never seen before in doom maps, though...

Last edited by Dynamo on Tue Aug 08, 2017 8:53 am, edited 1 time in total.
- Kinsie
- Posts: 7402
- Joined: Fri Oct 22, 2004 9:22 am
- Graphics Processor: nVidia with Vulkan support
- Location: MAP33
- Contact:
Re: The New What Did You Last Do Thread
DoomKrakken wrote:I especially love the added jungle effects in Plutonia...
DoomKrakken wrote:I haven't played Plutonia yet...
The whole way this effect is implemented makes it very specific to the IWAD levels. I've done some experiments on procedural visual geegaw generation, if you're curious.DoomKrakken wrote:I hope there is a generic version for it, so I could play it with my mods...
- Major Cooke
- Posts: 8215
- Joined: Sun Jan 28, 2007 3:55 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 10
- Graphics Processor: nVidia with Vulkan support
- Location: GZBoomer Town
- Contact:
Re: The New What Did You Last Do Thread
I spent hours banging my head on my keyboard, trying to find out why something in Gamemaker 2 wasn't working despite it clearly should... and then I found out that multiple assignments like the following doesn't work.
It all has to be done like this:
So I reported it in the hopes that it'll be fixed.
But that right there just screams a land mine of many...
Code: Select all
var1 = var2 = var3 = 4;
Code: Select all
var1 = 4;
var2 = 4;
var3 = 4;
But that right there just screams a land mine of many...
Re: The New What Did You Last Do Thread
Got SADX since I had some wallet pennies leftover from preordering Mania, applied some bugfix/Dreamcast visual mods, etc.
- DoomRater
- Posts: 8270
- Joined: Wed Jul 28, 2004 8:21 am
- Preferred Pronouns: He/Him
- Location: WATR HQ
- Contact:
Re: The New What Did You Last Do Thread
I wasn't aware there were languages where this was valid let alone recommended even if it can be done.Major Cooke wrote:I spent hours banging my head on my keyboard, trying to find out why something in Gamemaker 2 wasn't working despite it clearly should... and then I found out that multiple assignments like the following doesn't work.It all has to be done like this:Code: Select all
var1 = var2 = var3 = 4;
Code: Select all
var1 = 4; var2 = 4; var3 = 4;
Re: The New What Did You Last Do Thread
It's done alot in (G)ZDoom... C++ allows this. I think C does too (?). ZScript and ACS allows it too, as I remember the latter being something I used to do a lot even back in the day.DoomRater wrote: I wasn't aware there were languages where this was valid let alone recommended even if it can be done.
Re: The New What Did You Last Do Thread
There's the C paradigm that (nearly) every expression returns a value. x = y sets x to y, and then returns y, so you can chain assignments because if you do x = y = z, it starts by processing y = z, returns z, and so it then processes x = z.
There are some excessive stuff you can do because of that, at least in C++. (x=y)=z is legit, but also really wrong. See this.
There are some excessive stuff you can do because of that, at least in C++. (x=y)=z is legit, but also really wrong. See this.
- Hellsmith1
- Posts: 913
- Joined: Sat Jan 17, 2015 12:17 am
- Location: Jasper county Indiana
- Contact:
Re: The New What Did You Last Do Thread
I heard that a lot of people are going to see the total eclipse of the sun on Monday the 21st of August. I'll be going down south to see it for myself because its right below where my grandmother lives at in Illinois and this happens every 38 years, so this well be my 1st time seeing it.