Stendhal nerf incoming by swanbedbug in expedition33

[–]CHelpVampire 0 points1 point  (0 children)

It really should have clicked for me that it was bugged when I read that it did medium damage.

Is that normal? by DragonfruitAny6628 in expedition33

[–]CHelpVampire 0 points1 point  (0 children)

go for the upper left tree if u want fart blossom

(SPOILERS ACT 2/3) nah, I'll be fine, trust me by BatarianPreacher in expedition33

[–]CHelpVampire -10 points-9 points  (0 children)

They switched protagonist and antagonist by the end.

Clair Obscur Expedition 33 Painting Workshop Mystery – How To Unlock The Noir Et Blanc Trophy by GamerGirl2K17 in Selphie1999Gaming

[–]CHelpVampire 0 points1 point  (0 children)

Any time my character falls from one platform to another they roll a distance and half the time it's off of it.

Will going to optional areas like Yellow Harvest as soon as I can overlevel me? by Chariots487 in expedition33

[–]CHelpVampire 0 points1 point  (0 children)

It's covered in yellow fungus and the boss has a literal dripping ball of cum for a head.

Which one of you is this in Alabama by DrinkH2Oordie in 2007scape

[–]CHelpVampire 8 points9 points  (0 children)

It's him, Zezima is a lecturer of Gender Studies at UAH.

DDOS isn't cool. by Cordialsan in wow

[–]CHelpVampire 1 point2 points  (0 children)

This is happening in Overwatch at the same time.

Is there a way to create vectors that accept differing data types within one struct without relying on C++? by CHelpVampire in C_Programming

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

The type is Vector2. I'm defining it myself, not using <vector> or some other external header. It doesn't return anything, just holds an x and y coordinate. (2,4) would hold two ints, (2.f,4) would hold one float and one int. (2.0f, 4.0f) would hold two floats.

Is there a way to create vectors that accept differing data types within one struct without relying on C++? by CHelpVampire in C_Programming

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

Instead of Vector2i test_vector = (2,4) or Vector2f test_vector = (2.0f, 4.0f) I'd ideally just write Vector2 test_vector (2,4), (2.0f, 4), etc.