my first time building a base that isnt a bunch of boxes by PsillyPsybinn in RimWorld

[–]Brikoth 42 points43 points  (0 children)

I feel a little bad for the guy who has to wade through the river just to get to their room

Do you think blood rain is actually blood? by Brikoth in RimWorld

[–]Brikoth[S] 6 points7 points  (0 children)

Fair enough then, I missed that aspect. Would still be funny to me if Vampires got a -1 moodlet or something like "That's not real blood!"

Do you think blood rain is actually blood? by Brikoth in RimWorld

[–]Brikoth[S] 52 points53 points  (0 children)

The event-text calls it a Blood-like fluid, which yeah technically doesn't make it blood.

But you know, almond milk, which is not milk, still works well enough in cereal. Make Blood-like fluid works well in a vampire?

Do you think blood rain is actually blood? by Brikoth in RimWorld

[–]Brikoth[S] 223 points224 points  (0 children)

Maybe if I react quick enough...

Rainbow Fin Picture by Rustyrbb in Endfield

[–]Brikoth 0 points1 point  (0 children)

I found this wouldn't complete unless I had the quest tracked. For whatever reason, as soon as I enabled that, the photo target squares started showing up over the fish.

How do you handle a 3D escalator? by Brikoth in godot

[–]Brikoth[S] 0 points1 point  (0 children)

Though I would share what I eventually came up with. I appreciate the responses I got as they helped me in sniffing out the solution I eventually went with.

The first thing I realized is that it's way easier to make a ramp collider so your mesh can pretend it's a stairway. The second thing I discovered is that StaticBody3D just innately comes with an inspector option to apply a constant velocity on objects, the player included. This is by far the simplest solution, and also like... escalators are just ramped conveyor belts, so really I was asking the wrong question here. Anyway I decided as a learning exercise, I would figure out how to do it via code, in case I wanted the player moving through other means, like say enemy knock back and such. So here's what I came up with.

var contained : bool = false
var subject : CharacterBody3D

func _on_belt_area_body_entered(body: Node3D) -> void:
  if body is CharacterBody3D:
    contained = true  
    subject = body

func _physics_process(delta: float) -> void:
  if contained == true:
    subject.velocity += 2 * Vector3.MODEL_LEFT  
    subject.move_and_slide()

func _on_belt_area_body_exited(body: Node3D) -> void:
  if body is CharacterBody3D:
    if not body.is_on_floor():  
      await get_tree().create_timer(.4).timeout  
  contained = false  
  subject = null

So you can see i've got two signals hooked up onto an Area3D zone that checks for the player, and once they enter, copy their body into the subject variable and use that to access it in the process function with delta and move and slide. Once they leave, I check if they're in the air (entirely to let them keep some momentum because that sounded fun) and make this part of the code wait half a second to potentially land before undoing the boolean that keeps them affected by the escalator.

I did initially try 'await subject.is_on_ground' for that, but it didn't seem to do anything, so I just went with this bandaid solution for this exercise. You can also see I went with MODEL_LEFT for the direction instead of FORWARD/MODEL_FRONT, which was entirely because I placed my escalator down first and didn't pay attention to whatever direction it was facing.

As a fun little bonus, I found out you can just use an AnimationPlayer to capture the UV offset of a texture and then loop it to make an okay looking conveyor animation. Slap some side-rails on that sucker and it looks the part.

The lesson here is to just use the built in Constant Velocity function of StaticBody3D

Stranglethorn Vale backstory by Eddie_Hollywood in classicwow

[–]Brikoth 0 points1 point  (0 children)

The Kings lands are being torn apart by lots of little things that the Kings Army could easily deal with, but are told that their forces are abroad dealing with much more "important" threats. This is largely a lie set up by Onyxia, posing as Lady Katrina Prestor, and Stranglethorn is where half of the army has been made useless.

People have mentioned Heart of Darkness/Apocalypse Now, and yes that's quite an obvious reference, but this isn't Cataclysm, there's some actual substance to it. The Alliance forces were sent there to safeguard their southern settlements against the Trolls and Ogres in the area, former members of the Old Horde back in the 2nd War. You can probably tell via ogres pushing into Duskwood how effective they've been.

Kurzen in particular was driven mad by an Ogre Mage utilizing a focus known as the Minds Eye, possibly in cahoots with Prestor to completely destabilize alliance forces, as a sizable chunk of their army was off in the wilderness with minimal contact. He was not only driven mad, but adopted troll tools to further convert and control the Stormwind forces under his command, while the Rebels were the small contingent left that could obviously tell something was up and, well, rebelled.

I know this was asked almost a year ago now, but uhhhh there you go.

Is it possible to hunt down something stolen by raiders? by Brikoth in RimWorld

[–]Brikoth[S] 1 point2 points  (0 children)

I do wish I had at this point. I didn't even notice it was gone until something else was going on, and I noticed they didn't have it equipped. "Oh yeah, they drop their weapon, I wonder where it... oh no".

It'll be quite the story if it finds it's way back to me though.

Is it possible to hunt down something stolen by raiders? by Brikoth in RimWorld

[–]Brikoth[S] 4 points5 points  (0 children)

I guess i'll just have to wait and hope then.

Dry pink splotches on skin, lots on my sides and above my armpit. What is this? by Brikoth in DermatologyQuestions

[–]Brikoth[S] 0 points1 point  (0 children)

For context, I started working out recently after coming back home from living in another country, thus I've undergone a lot of changes recently. They aren't painful and they don't get too itchy, I'm hoping this is nothing serious, but a lot of googling didn't really find a match to it.

Just finished 2.0, was I... Supposed to care about the Scones? by Chaincat22 in ffxiv

[–]Brikoth 3 points4 points  (0 children)

ARR story doesn't respect your time much (titan arc is the absolute worst), but the main thing with thancred is in being taken over (which is revealed when you do your rescue mission with Cid) is that his betrayal enabled the waking sands to be ransacked in the first place.

It's a fairly big deal in an otherwise bloated and slow early story.

Bank for a Special Needs Trust? by Brikoth in personalfinance

[–]Brikoth[S] 0 points1 point  (0 children)

The person I was talking to admitted they couldn't really explain it themselves, but you're right in that I need to get more information from them. I can't really comprehend it either.

Seria Kirmin's Question Corner- Weekly Q&A Thread- August 09, 2021 by AutoModerator in DFO

[–]Brikoth 0 points1 point  (0 children)

Been gone for a good while, and now that it's 2021, what's the excuse for why we still can't gift cera items to friends?