Osiris: Edge Jump + Prediction System

Created on 22 Jan 2020  路  4Comments  路  Source: danielkrupinski/Osiris

Love what's been done with this project so far.

Although there's a problem with the Edge Jump feature; It uses a ray tracing method instead of an Engine Prediction System, which would work much much better, with 100% accuracy all of the time.

The Ray Tracing System is too inconsistent, especially in this situation.

I consider this an issue because it is near impossible to make skill jumps like from Window to Cat on Mirage with such inconsistency.

All that needs to be done is to expand the SDK a bit, implement those newly added expansions to be updated during the PredictionSystem::Start function and whatnot, and then change the EdgeJump function to use the PredictionSystem::Start and PredictionSystem::Stop methods instead of Ray Tracing. Pseudocode:

int originalFlags = localplayer->getflags();

if (originalFlags & FL_ONGROUND && !(localplayer->GetFlags() & FL_ONGROUND))
{
cmd->buttons |= IN_JUMP;
}

Most helpful comment

https://github.com/danielkrupinski/Osiris/issues/954 i literally said it sucks and someone c+ped it and made a pr and it got accepted LOL

All 4 comments

so i added the engine prediction and edgejump and works almost the same

https://github.com/danielkrupinski/Osiris/issues/954 i literally said it sucks and someone c+ped it and made a pr and it got accepted LOL

Updated now.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

KastenTop picture KastenTop  路  28Comments

HowToMakeFaceitAB picture HowToMakeFaceitAB  路  23Comments

dapaster picture dapaster  路  23Comments

NexSqaud picture NexSqaud  路  40Comments

TauCSGO picture TauCSGO  路  52Comments