mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-14 22:55:41 +00:00
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
using VpSharp;
|
|||
|
using VpSharp.Entities;
|
|||
|
|
|||
|
string? username = Environment.GetEnvironmentVariable("username");
|
|||
|
string? password = Environment.GetEnvironmentVariable("password");
|
|||
|
|
|||
|
if (string.IsNullOrWhiteSpace(username))
|
|||
|
{
|
|||
|
Console.Error.WriteLine("username env variable cannot be empty");
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
if (string.IsNullOrWhiteSpace(password))
|
|||
|
{
|
|||
|
Console.Error.WriteLine("password env variable cannot be empty");
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
var configuration = new VirtualParadiseConfiguration()
|
|||
|
{
|
|||
|
Username = username,
|
|||
|
Password = password,
|
|||
|
Application = new Application("VpSharp.IntegrationTests", "1.0.0"),
|
|||
|
AutoQuery = false,
|
|||
|
BotName = "TestBot"
|
|||
|
};
|
|||
|
|
|||
|
using var client = new VirtualParadiseClient(configuration);
|
|||
|
|
|||
|
Console.WriteLine(@"Connecting to universe");
|
|||
|
await client.ConnectAsync().ConfigureAwait(false);
|
|||
|
|
|||
|
Console.WriteLine(@"Logging in");
|
|||
|
await client.LoginAsync();
|
|||
|
|
|||
|
Console.WriteLine(@"Entering world");
|
|||
|
VirtualParadiseWorld world = await client.EnterAsync("Mutation");
|
|||
|
Console.WriteLine(@"Entered world!");
|
|||
|
|
|||
|
VirtualParadiseAvatar avatar = client.CurrentAvatar!;
|
|||
|
|
|||
|
Console.WriteLine($@"My name is {avatar.Name} and I am at {avatar.Location}");
|
|||
|
Console.WriteLine($@"Entered {world.Name} with size {world.Size}");
|
|||
|
|
|||
|
await Task.Delay(-1);
|