Halen84

Results 8 comments of Halen84

It load up just fine for me. I don't think I've changed anything related to horde mercenaries, so the person might have accidentally changed something. Check if the person is...

I just did the same, still no error on my end. Not sure what's wrong then

I'll look into this later tomorrow. The newest patch(es) have definitely changed some things.

Oh sorry. I got busy and didn't get around to fixing this

I actually did a "hacky" way to do this in RDR2. So basically, `SHAPETEST::START_SHAPE_TEST_MOUSE_CURSOR_LOS_PROBE` uses 2 global variables that store the mouse x and y positions that are used for...

`vProbeEndPosOut` in my example might not be the correct coords to set, it might be `vPos` actually, but I can't remember. That code is untested as I just took it...

Ok yea no wonder why that wasn't working lmfao, accidentally left out `START_EXPENSIVE_SYNCHRONOUS_SHAPE_TEST_LOS_PROBE` call. And yea, the correct variable to set was `vPos`. Here, this should actually work: ```cpp bool...

For future reference, these are the actual names of `dword_7FF68E613B44` and `dword_7FF68E613B48` from my code: ``` rage::ioMouse::m_X = dword_7FF68E613B44 rage::ioMouse::m_Y = dword_7FF68E613B48 ``` Also if you haven't seen, the code...