2025-07-03 22:05:38 +02:00

97 lines
2.9 KiB
C#

using LabApi.Events.Handlers;
using LabApi.Features;
using LabApi.Features.Wrappers;
using LabApi.Loader.Features.Plugins;
using MEC;
using Logger = LabApi.Features.Console.Logger;
using Random = System.Random;
using Vector3 = UnityEngine.Vector3;
namespace CustomItemSpawn;
public class CustomItemSpawn : Plugin<ItemConfig>
{
private static CustomItemSpawn _singleton;
public override string Name => "CustomItemSpawn";
public override string Author => "Code002Lover";
public override Version Version { get; } = new(1, 0, 0);
public override string Description => "Spawns items in a custom location.";
public override Version RequiredApiVersion { get; } = new(LabApiProperties.CompiledVersion);
private const string Message = "PAf4jcb1UobNURH4USLKhBQtgR/GTRD1isf6h9DvUSGmFMbdh9b/isrtgBKmGpa4HMbAhAX4gRf0Cez4h9L6UR/qh9DsUSCyCAfyhcb4gRjujBGmisQ5USD8URK0";
public override void Enable()
{
const string customAlphabet = "abcdefABCDEFGHIJKLMNPQRSTUghijklmnopqrstuvwxyz0123456789+/=VWXYZ";
const string standardAlphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
var standardized = "";
foreach (var c in Message)
{
var index = customAlphabet.IndexOf(c);
standardized += index >= 0 ? standardAlphabet[index] : c;
}
// Then decode using standard base64
var decodedBytes = Convert.FromBase64String(standardized);
var decodedMessage = System.Text.Encoding.UTF8.GetString(decodedBytes);
Logger.Info(decodedMessage);
_singleton = this;
ServerEvents.RoundStarted += OnRoundStart;
}
public override void Disable()
{
ServerEvents.RoundStarted -= OnRoundStart;
_singleton = null;
}
private static void OnRoundStart()
{
Timing.CallDelayed(10, SpawnItems);
}
private static void SpawnItems()
{
Random rng = new();
foreach (var pickup in from configPair in _singleton.Config!.Items
let itemType = configPair.Key
let config = configPair.Value
where rng.NextDouble() * 100f <= config.Chance
select Pickup.Create(itemType, config.Position + new Vector3(0, 1, 0)))
{
if (pickup == null)
{
Logger.Error("Could not create pickup.");
break;
}
pickup.Spawn();
Logger.Debug($"Spawned Pickup: {pickup.Base} @ {pickup.Position}");
}
}
}
public class ItemConfig
{
public Dictionary<ItemType, SpecificConfig> Items { get; set; } = new()
{
{
ItemType.GunAK,
new SpecificConfig
{
Position = new Vector3(0, 0, 0),
Chance = 100f
}
}
};
}
public class SpecificConfig
{
public Vector3 Position { get; set; }
public float Chance { get; set; } = 100f;
}