PixelPilot.Core
1.2.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package PixelPilot.Core --version 1.2.0
NuGet\Install-Package PixelPilot.Core -Version 1.2.0
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="PixelPilot.Core" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PixelPilot.Core" Version="1.2.0" />
<PackageReference Include="PixelPilot.Core" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PixelPilot.Core --version 1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PixelPilot.Core, 1.2.0"
#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.
#:package PixelPilot.Core@1.2.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PixelPilot.Core&version=1.2.0
#tool nuget:?package=PixelPilot.Core&version=1.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Pixel Pilot
A C# library for interacting with the game PixelWalker

📄 Documentation
✨ Features
- Strongly typed packets.
- PixelPilot.Core has minor abstracts
- Lightweight
- Useful helper classes (optional)
🛠 Projects:
- PixelPilot.Core: The core of the project. Bare minimum client to interact with the game.
- PixelPilot.Tests: All test related to the project.
Example
// Load the configuration. Don't store your account token in the code :)
var config = new ConfigurationBuilder()
.AddJsonFile("config.json")
.AddEnvironmentVariables()
.Build().Get<BasicConfig>();
if (config == null)
{
Console.WriteLine("The configuration file could not be loaded.");
return;
}
// Create a client.
var client = new PixelPilotClient(config.AccountToken, false);
// Executed when the client receives a packet!
client.OnPacketReceived += (_, packet) =>
{
switch (packet)
{
// Use strongly typed packets!
case PlayerChatPacket { Message: ".stop" }:
client.Disconnect();
Environment.Exit(0);
return;
}
};
// Executed once the client receives INIT
// Make a platform and do some silly loops.
client.OnClientConnected += (_) =>
{
client.Send(new PlayerChatOutPacket("Hello world using the PixelPilot API."));
};
// Connect to a room.
await client.Connect("r082b210d67df52");
// Don't terminate.
Thread.Sleep(-1);
Enjoy the library? Leave a ⭐
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Websocket.Client (>= 5.1.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on PixelPilot.Core:
| Package | Downloads |
|---|---|
|
PixelPilot.Structures
Save and load structures. Easily paste them into your world. |
|
|
PixelPilot.ChatCommands
Chat commands for PixelPilot |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.13.5 | 227 | 10/13/2025 |
| 1.13.4 | 145 | 10/10/2025 |
| 1.13.3 | 176 | 10/10/2025 |
| 1.13.2 | 144 | 8/22/2025 |
| 1.13.1 | 134 | 8/22/2025 |
| 1.13.0 | 136 | 8/22/2025 |
| 1.12.12 | 201 | 8/19/2025 |
| 1.12.11 | 192 | 8/18/2025 |
| 1.12.9 | 169 | 8/17/2025 |
| 1.12.8 | 386 | 7/25/2025 |
| 1.12.7 | 509 | 7/24/2025 |
| 1.12.6 | 512 | 7/24/2025 |
| 1.12.5 | 134 | 7/18/2025 |
| 1.12.4 | 203 | 7/6/2025 |
| 1.12.3 | 200 | 7/6/2025 |
| 1.12.2 | 250 | 5/25/2025 |
| 1.12.1 | 212 | 5/20/2025 |
| 1.12.0 | 265 | 4/8/2025 |
| 1.11.13 | 235 | 4/8/2025 |
| 1.11.12 | 520 | 3/24/2025 |
| 1.11.11 | 212 | 3/18/2025 |
| 1.11.10 | 176 | 2/28/2025 |
| 1.11.9 | 196 | 2/26/2025 |
| 1.11.8 | 188 | 2/26/2025 |
| 1.11.7 | 190 | 2/19/2025 |
| 1.11.6 | 195 | 2/18/2025 |
| 1.11.5 | 208 | 2/15/2025 |
| 1.11.4 | 207 | 1/25/2025 |
| 1.11.3 | 223 | 1/3/2025 |
| 1.11.2 | 200 | 1/3/2025 |
| 1.11.1 | 216 | 1/3/2025 |
| 1.11.0 | 194 | 12/29/2024 |
| 1.10.5 | 167 | 12/20/2024 |
| 1.10.4 | 175 | 12/17/2024 |
| 1.10.3 | 192 | 12/6/2024 |
| 1.10.2 | 183 | 12/4/2024 |
| 1.10.1 | 184 | 12/1/2024 |
| 1.10.0 | 196 | 12/1/2024 |
| 1.10.0-alpha | 166 | 11/30/2024 |
| 1.9.15 | 182 | 11/26/2024 |
| 1.9.14 | 166 | 11/24/2024 |
| 1.9.13 | 179 | 11/18/2024 |
| 1.9.12 | 187 | 11/18/2024 |
| 1.9.11 | 181 | 11/18/2024 |
| 1.9.10 | 186 | 11/18/2024 |
| 1.9.9 | 165 | 11/18/2024 |
| 1.9.8 | 185 | 10/17/2024 |
| 1.9.7 | 171 | 10/16/2024 |
| 1.9.6 | 162 | 10/15/2024 |
| 1.9.5 | 185 | 10/10/2024 |
| 1.9.4 | 204 | 10/8/2024 |
| 1.9.3 | 207 | 9/21/2024 |
| 1.9.2 | 220 | 9/4/2024 |
| 1.9.1 | 178 | 9/3/2024 |
| 1.9.0 | 203 | 8/26/2024 |
| 1.8.3 | 248 | 8/22/2024 |
| 1.8.2 | 217 | 8/22/2024 |
| 1.8.1 | 222 | 8/17/2024 |
| 1.8.0 | 238 | 8/15/2024 |
| 1.7.9 | 137 | 7/31/2024 |
| 1.7.8 | 148 | 7/29/2024 |
| 1.7.7 | 169 | 7/29/2024 |
| 1.7.6 | 172 | 7/28/2024 |
| 1.7.5 | 186 | 7/26/2024 |
| 1.7.4 | 187 | 7/23/2024 |
| 1.7.3 | 185 | 7/21/2024 |
| 1.7.2 | 185 | 7/21/2024 |
| 1.7.1 | 215 | 7/21/2024 |
| 1.7.0 | 191 | 7/20/2024 |
| 1.6.5 | 224 | 7/5/2024 |
| 1.6.4 | 237 | 6/20/2024 |
| 1.6.3 | 231 | 6/15/2024 |
| 1.6.2 | 227 | 6/15/2024 |
| 1.6.1 | 215 | 6/14/2024 |
| 1.6.0 | 171 | 6/14/2024 |
| 1.5.2 | 181 | 6/11/2024 |
| 1.5.1 | 186 | 6/11/2024 |
| 1.5.0 | 219 | 6/6/2024 |
| 1.4.1 | 207 | 6/5/2024 |
| 1.4.0 | 196 | 6/3/2024 |
| 1.3.0 | 182 | 5/29/2024 |
| 1.2.0 | 148 | 5/20/2024 |
| 1.1.9 | 190 | 5/4/2024 |
| 1.1.8 | 138 | 5/3/2024 |
| 1.1.7 | 139 | 5/3/2024 |
| 1.1.6 | 167 | 4/30/2024 |
| 1.1.5 | 183 | 4/30/2024 |
| 1.1.4 | 176 | 4/29/2024 |
| 1.1.3 | 157 | 4/29/2024 |
| 1.1.2 | 152 | 4/28/2024 |
| 1.1.1 | 150 | 4/28/2024 |
| 1.1.0 | 148 | 4/28/2024 |
| 1.0.2 | 126 | 4/28/2024 |
| 1.0.1 | 156 | 4/27/2024 |
| 1.0.0 | 208 | 4/27/2024 |
Included first iteration player management.