Parachute
The parachute resource is a port of the default parachute resource, allowing for singleplayer-like handling of parachuting.
In order to add it to your server first install the NuGet package. And then add the following to your server builder:
using SlipeServer.Resources.Parachute;
// snip
this.server = MtaServer.Create(
(builder) =>
{
builder.AddParachuteResource();
}
);