Multi_VIP_Packs

by MeeBob
for 7 Days to Die
VIP Multi-Tier Kit System The VIP Multi-Tier Kit System is a powerful and flexible Takaro module that revolutionizes how you reward your VIP supporters. This comprehensive system automatically delivers customized item packages based on each player's VIP tier level, creating a seamless and scalable donation reward experience.
🌟 Key Features
Intelligent Tier Detection
  • Automatically identifies each player's VIP tier level based on their permissions
  • Players receive the highest tier rewards they qualify for
  • No complex commands - just type /vipkit and get your rewards
Unlimited Scalability
  • Support for unlimited VIP tiers (Bronze, Silver, Gold, Platinum, Diamond, etc.)
  • Easy to add new tiers without code modifications
  • Count-based permission system grows with your community
Anti-Abuse Protection
  • One-time redemption per tier per server
  • Prevents multiple claims and exploits
  • Secure variable tracking system
Rich Customization
  • Configure unique item packages for each VIP tier
  • Set item quantities, qualities, and types per tier
  • Personalized welcome messages with dynamic tier names
  • Professional admin interface for easy management
🚀 How It Works
For Administrators:
  1. Configure VIP Tiers - Set up your tier structure (Level 1 = Bronze, Level 2 = Silver, etc.)
  2. Assign Permissions - Give players VIP_ACCESS permission with count values matching their tier
  3. Customize Items - Configure unique item packages for each tier level
communityTakaro main

Components Overview

1
config
1
commands
1
hooks
0
Cron Jobs
0
functions
1
permissions

Command Update: vipkit

December 21, 2025
New permission: VIP_ACCESS. Updated 1 command implementation.

New Module: Multi_VIP_Packs

NEW
July 28, 2025
Updated to version latest. Added 1 command: vipkit. Added 1 hook: welcomeHook (log). New configuration options: welcomeMessage, vipTiers.

Configuration

Configure this module using the schemas below. The JSON schema defines the data structure, while the UI schema customizes how the configuration form is displayed.

Configuration Schema

Configuration Properties (2)

welcomeMessagestring
Welcome Message

Message sent when VIP players connect (use {player} for player name, {tier} for VIP tier name)

Default: Welcome {player}! Your {tier} status is active.
vipTiersarray
VIP Tiers

Configure VIP tiers by tier level (must match permission count values)

Default: [{"tierLevel":1,"tierName":"Bronze VIP","items":[]},{"tierLevel":2,"tierName":"Silver VIP","items":[]},{"tierLevel":3,"tierName":"Gold VIP","items":[]}]
Constraints: minItems: 1

UI Schema

No configuration properties defined. This module uses default settings.

About Configuration Schemas

The Configuration Schema defines the structure and validation rules for module settings. The UI Schema customizes how the configuration form is displayed in the Takaro interface, including field ordering, labels, and input types.

Commands (1)

These commands can be executed by players in-game. Each command has a trigger word, optional arguments, and executes JavaScript code on the server.

vipkit

/vipkitTrigger Command

Description

Claim your VIP kit items based on your tier

Function Implementation

vipkit Function

JAVASCRIPT

Usage Example

Player types: /vipkit

About Module Commands

Commands allow players to interact with your module through chat. Each command has a trigger word that players type (prefixed with /), optional arguments for parameters, and a JavaScript function that executes when the command is used. Arguments are automatically validated and passed to the function.

Hooks (1)

These hooks respond to various game events automatically. Each hook executes JavaScript code when its specific event type occurs, allowing modules to react to player actions, system changes, and more.

Real-time Events

1 hook

welcomeHook

player-connectedEvent Type
Description
hook when player connects
Function Implementation

welcomeHook Hook Function

JAVASCRIPT
Event Details
Event Type:player-connected
Trigger:Automatic
Category:Real-time Events

About Module Hooks

Hooks allow your module to respond automatically to game events like player actions, server status changes, and chat messages. Each hook has an event type that determines when it triggers, optional regex patterns for filtering specific events, and a JavaScript function that executes when the conditions are met. Hooks are grouped by category for better organization.

Permissions (1)

These permissions control who can access different features of this module. Administrators can assign these permissions to roles, allowing fine-grained access control.

General Permissions

1 permission

VIP Access

VIP_ACCESSPermission KeyCountable
Description

Grants VIP access. The count value determines the VIP tier level (1=Bronze, 2=Silver, 3=Gold, etc.)

Permission Details
Full Key:VIP_ACCESS
Can Have Count:Yes
Category:General
Countable Permission

This permission supports numeric values/levels. For example, you could grant someone "10" of this permission to limit their usage or set permission levels.

About Module Permissions

Permissions control access to module features and functionality. Each permission has a unique key for identification, a friendly name for display, and a description explaining what it allows. Some permissions are countable, meaning they can have numeric values or limits assigned. Administrators assign these permissions to user roles to control who can use different module features.