FiveLife.AlternateLife.RageMP.Net.Commands 0.1.1.459

.NET Core 2.2
dotnet add package FiveLife.AlternateLife.RageMP.Net.Commands --version 0.1.1.459
NuGet\Install-Package FiveLife.AlternateLife.RageMP.Net.Commands -Version 0.1.1.459
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FiveLife.AlternateLife.RageMP.Net.Commands" Version="0.1.1.459" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FiveLife.AlternateLife.RageMP.Net.Commands --version 0.1.1.459
#r "nuget: FiveLife.AlternateLife.RageMP.Net.Commands, 0.1.1.459"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FiveLife.AlternateLife.RageMP.Net.Commands as a Cake Addin
#addin nuget:?package=FiveLife.AlternateLife.RageMP.Net.Commands&version=0.1.1.459

// Install FiveLife.AlternateLife.RageMP.Net.Commands as a Cake Tool
#tool nuget:?package=FiveLife.AlternateLife.RageMP.Net.Commands&version=0.1.1.459

FiveLife.AlternateLife.RageMP.Net.Commands

An alternative command implementation for the AlternateLife.RageMP.Net library. This library automates type parsing for you and allows you to have various parameters for your commands. With the command system used by AlternateLife.RageMP.Net you have to use following parameters for your commands: (IPlayer player, string[] arguments). You can even add custom TypeParsers, which allows you do add handy shortcuts like @ to select the nearest player or # to select yourself.

Download & Installation

NuGet

PM> Install-Package FiveLife.AlternateLife.RageMP.Net.Commands

Documentation

No documentation available yet. Take a look at the example code.

Example

public class Main : IResource
{
    public CommandExtension Commands { get; }

    public Main()
    {
        Commands = this.UseFiveLifeCommands(); // This scans your assembly for classes inheriting CommandModule
    }

    public Task OnStartAsync()
    {
        return Task.CompletedTask;
    }

    public Task OnStopAsync()
    {
        return Task.CompletedTask;
    }
}

public class Commands : CommandModule
{
    [Command("veh")]
    [Alias("vehicle", "spawnveh", "car", "v")]
    public async Task SpawnVehicleCommand(IPlayer player, VehicleHash hash = VehicleHash.Adder, uint primaryColor = 112, uint secondaryColor = 112)
    {
        var vehicle = await MP.Vehicles.NewAsync(hash, player.Position, player.Rotation.Z);
        vehicle.SetColor(primaryColor, secondaryColor);
        player.PutIntoVehicle(vehicle, -1);
    }
}
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.1.459 518 3/17/2019
0.1.1.420 388 3/17/2019
0.1.1.395 382 3/17/2019
0.1.1.366 392 3/17/2019
0.1.0.352 398 3/17/2019
0.1.0.336 386 3/17/2019