π¦Container Logs
Logs container item openings like Card Albums and Gift Boxes to Discord
The Container Log feature tracks when players open special containers like Card Albums, Gift Boxes, and similar items. This is perfect for celebrating rare finds or monitoring item distribution on your server.
Action
container_log
When It's Used
This log is triggered when a player opens:
Old Card Album - Random card reward
Old Blue Box - Random equipment
Old Purple Box - Random valuable item
Gift Box - Random item
Any custom container you've configured
Why Use It
Celebrate rare drops when someone pulls a great card
Track item distribution to understand your server's economy
Monitor for suspicious activity like mass-opening containers
Create excitement in your community Discord
Server Configuration
In conf/channels.conf:
enabled
Enable/disable container logging
false
channel_id
Discord channel ID for container logs
-
types
Container types to log (all, card_album, gift_box)
all
group_min
Minimum GM group level to log
0
group_max
Maximum GM group level to log
99
Tip: Set group_min: 0 and group_max: 0 to only log regular players (exclude GMs).
Message Format
The default message format shows who opened what and what they got:
Data Fields
player_name
string
Name of the character who opened the container
name
string
Name of the container (e.g., "Old Card Album")
container_id
int
Item ID of the container
item_name
string
Name of the item received
item_id
int
Item ID of what was received
amount
int
Quantity received
account_id
int
Player's account ID
char_id
int
Player's character ID
channel
string
Discord channel ID
Example Use Cases
Celebrate Rare Finds
Send container logs to a public channel so everyone can see lucky pulls:
Track Card Album Results
Monitor what cards are being pulled from albums to ensure rates are working correctly.
Custom Event Boxes
If you create custom event containers, players can see what rewards others are getting, building excitement.
Custom Messages
Want to customize how these messages look? Head to the Message Routes page on your dashboard, set the format to Custom Message, and compose your own template using {{placeholder}} syntax.
Example template:
Available placeholders for this event:
{{player_name}}
Marky
{{container_name}}
Kafra Storage
{{container_id}}
1
{{item_name}}
Apple
{{item_id}}
512
{{amount}}
5
See Message Routing for more about formats, conditions, and multi-channel routing.
Notes
Each container opening is logged individually
Works with any item that uses the random reward system
Perfect for building community engagement around rare drops
Last updated