WkKitWkKit
Home
Guide
Features
Config
Commands
FAQ
  • 简体中文
  • English
GitHub
Home
Guide
Features
Config
Commands
FAQ
  • 简体中文
  • English
GitHub
  • Core Features

    • /en/features/
    • 🎁 Kit System
    • /en/features/menu-system.html
    • 🔑 CDK System

🎁 Kit System

The kit system is the core feature of WkKit, allowing you to create and manage various in-game rewards.

Kit Types

TypeFeatureUse Case
NormalNo restrictionsStarter kits, event rewards
CooldownCooldown timeDaily login rewards
DropDrop from entitiesMob drops, boss rewards
LimitedLimited usesLimited events, VIP kits
ScheduledCron-basedHoliday events, periodic

Creating Kits

Command (Recommended)

/wk create <kitID> [displayName] [menuID]

Config File

Create YAML files in plugins/WkKit/kits/.

Basic Configuration

StarterKit:
  Name: '&e&lStarter Kit'
  Icon: 'CHEST'
  Permission: 'wkkit.starter'
  Lore:
    - '&b=================='
    - '&aWelcome!'
    - '&7Basic equipment included'
  Item:
    - '{id:"minecraft:iron_helmet",Count:1b}'
    - '{id:"minecraft:iron_chestplate",Count:1b}'
  Commands:
    - 'msg {player} &aWelcome!'
  Vault: 100.0

Advanced Options

Cooldown

DailyKit:
  Name: '&aDaily Login'
  Delay: 86400  # 24 hours in seconds

Limited Uses

LimitedKit:
  Name: '&cLimited Kit'
  Times: 3  # Max 3 claims

Cron Schedule

MonthlyKit:
  Name: '&eMonthly Kit'
  DoCron: '0 0 0 1 * ? *'  # 1st of each month

See Configuration for more details.

在 GitHub 上编辑此页
上次更新: 3/4/26, 8:16 AM
贡献者: WekyJay
Prev
/en/features/
Next
/en/features/menu-system.html