Additional attributes
Additional attributes
[Command]
[Description("Gives 5000 coins to the player")]
public static void Motherlode()
{
coins += 5000;
}[Prefix("score")]
public static class ScoreManager
{
[Command]
public static int Current { get; set; }
[Command]
public static void Reset()
{
Current = 0;
}
}Last updated
