Helios Rust Console Bot Documentation
Tip4Serv Selling & Parses
Every Helios parse format for selling kits, items, keys, chests, currency, XP, VIP, cooldown resets, and inventory slots on Tip4Serv.
Overview 🚀
Parses are how Tip4Serv tells Helios what a buyer purchased. Paste the parse into the product's cmd field on Tip4Serv, pointed at your /set reward-channel channel, and Helios delivers the reward.
You can sell:
- 1-time kit claims
- 1-time item claims
- VIP in game
- Helios currency (coins)
- Battle Pass XP
- Keys and treasure chests
- Cooldown resets and extra
/bagslots - You can also do Autokits & specific shop items through Discord roles
Open The Parse Generator ⚡
Open the Helios Parse Generator
The parse generator is the fastest way to build these correctly without guessing.
Parse Rules 📏
{discord_id}is the Discord user receiving the reward — Tip4Serv fills it in automatically.- Square brackets
[]wrap each parse segment (NOT{discord_id}). ALLapplies the reward across all supported servers; a server key targets one server.- Get a server key by running
/server listin Discord. You can also use[{custom:Server}]when your reward flow supplies that value. - Quantity and amount fields should be positive values.
Setup
- Paste the parse from the Parse Generator in the
cmdfield of the product page. - Set the channel to the same channel you set your
/set reward-channelto.

Parse Breakdown 🧩
KIT Parse
Use this when you want Helios to grant a kit.
Format
{discord_id} [COMMAND] [KIT] [{KitName}] [{Quantity}] [{Worth}] [ALL|{ServerKey}]
Breakdown
KITtells Helios the reward is a kit action.{KitName}is the exact kit name.{Quantity}is how many times to grant it.{Worth}is the worth value used in the parse.[ALL|{ServerKey}]sets whether it applies to all servers or one server.
Example
{discord_id} [COMMAND] [KIT] [starter] [1] [0] [ALL]
ITEM Parse
Use this when you want to grant a specific item directly.
Format
{discord_id} [COMMAND] [ITEM] [{ItemName}] [{Quantity}] [{Worth}] [ALL|{ServerKey}]
Breakdown
ITEMtells Helios to grant an item.{ItemName}is usually the Rust item shortname or item name.{Quantity}is the item count.{Worth}is the worth value in the parse.[ALL|{ServerKey}]controls the server target.
Example
{discord_id} [COMMAND] [ITEM] [metal.fragments] [1000] [0] [ALL]
KEY Parse
Use this when the reward should give keys.
Format
{discord_id} [KEY] [{KeyType}] [{Quantity}] [ALL|{ServerKey}]
Optional shorter format:
{discord_id} [KEY] [{Quantity}] [ALL|{ServerKey}]
Breakdown
KEYtells Helios the reward is a key reward.{KeyType}is optional if your setup uses named key types.{Quantity}is how many keys to give.[ALL|{ServerKey}]controls the target scope.
Example
{discord_id} [KEY] [standard] [1] [ALL]
CHEST Parse
Use this when the reward should give chests.
Format
{discord_id} [CHEST] [{ChestType}] [{Quantity}] [ALL|{ServerKey}]
Optional shorter format:
{discord_id} [CHEST] [{Quantity}] [ALL|{ServerKey}]
Breakdown
CHESTtells Helios the reward is a chest reward.{ChestType}is optional if your chest system uses named chest types.{Quantity}is how many chests to give.[ALL|{ServerKey}]controls where it applies.
Example
{discord_id} [CHEST] [standard] [1] [ALL]
CURRENCY Parse
Use this when you want to add coins to a player wallet or bank.
Format
{discord_id} [COINS] [{Amount}] [WALLET|BANK]
Breakdown
COINStells Helios the parse is currency.{Amount}is how much currency to add.[WALLET|BANK]chooses where the coins go.
Example
{discord_id} [COINS] [1000] [WALLET]
XP Parse
Use this when you want to give battle pass or progression XP.
Format
{discord_id} [XP] [{Amount}]
Breakdown
XPtells Helios the reward is experience.{Amount}is the XP amount to add.
Example
{discord_id} [XP] [100]
VIP Parse
Use this when the reward should trigger the VIP command flow.
Format
{discord_id} [COMMAND] [VIP] [ALL|{ServerKey}]
Breakdown
COMMANDmeans Helios is running a command-style reward.VIPtargets the VIP action.[ALL|{ServerKey}]sets whether it applies everywhere or only to one server.
Example
{discord_id} [COMMAND] [VIP] [ALL]
COOLDOWN Parse
Use this when you want to reset cooldowns.
Format
{discord_id} [COOLDOWN] [ALL|{ProductId}]
Bind cooldowns:
{discord_id} [BIND] [COOLDOWN] [ALL|{BindId}]
Breakdown
COOLDOWNtells Helios to clear a cooldown.ALLresets all supported cooldowns.{ProductId}resets one specific product cooldown instead.- The
[BIND]variant resets bind cooldowns for the buyer.
Example
{discord_id} [COOLDOWN] [ALL]
Tip
- Use
/product infoif you need the product ID for a single-product reset. - Use
/bind listto get a specific bind's ID.
INVENTORY Parse
Use this when you want to add or remove inventory slots.
Format
{discord_id} [INVENTORY] [ADD|REMOVE] [{Amount}]
Breakdown
INVENTORYtargets inventory capacity changes.[ADD|REMOVE]decides whether you increase or reduce capacity.{Amount}is the slot change.
Example
{discord_id} [INVENTORY] [ADD] [1]
Selling gift cards or nukes? Those have their own parses — see Automated Gift Cards and Nukes.
Recommended Workflow 📌
- Open the Parse Generator.
- Pick the reward type you need.
- Fill in the fields and copy the generated parse.
- Route reward messages to the correct channel with /set reward-channel.
- Run one controlled test before using the parse in live store flows.
Common Mistakes 🧯
- Using the wrong item or kit name
- Forgetting whether the parse should target
ALLor one server - Sending reward parses to the wrong channel
- Using a product cooldown reset without the correct product ID
- Manually typing parses instead of generating them first