Download I'll just...

Volt Cruelerz

Legions Developer
I'm confused as well... If it were for the server, I might suspect it was something that was similar to an earlier version of the warp core, but given that it's in mods...

<runs Legions>

Well, I'm still confused... For those who don't want to open it...

Code:
package WarpTwo
{
    function Cores::warpCoreExit( %player )
    {
        %oldVelocity = %player.getVelocity();
        parent::warpCoreExit(%player);
        %player.setVelocity(%oldVelocity);
    }
};
activatepackage(WarpTwo);

It looks like it's just setting your velocity to the speed you were going before entering. Because velocity in Legions is a vector, it's not going to be what I suggested above... Probably what it does (not tested this yet) is that it sets you to your velocity if you go through someone else's warp rather than theirs. Of course, since Cores::warpCoreExit is a server function, you probably have to be the server host for it to happen.
 

RockeyRex

Legions Developer
Yes, it's a server mod. And yes it indeed sets your velocity to whatever it was before you warped.
 
Top