Helios Rust Console Bot Documentation
Tip4Serv Parses
Use Tip4Serv reward parses with Helios, generate the correct format, and understand what each parse type does.
What Tip4Serv Parses Are
Tip4Serv parses are how Helios talks to Tip4Serv. You can do
- 1 time Kit claims
- 1 time Item claims
- VIP in Game
- Your In-Discord Helios Currency
- Battle Pass XP
- 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.- Square brackets
[]wrap each parse segment. (NOT{discord_id}) - Some parses use
[{custom:Server}]orALL. [{custom:Server}]means one specific server.ALLmeans the parse applies across all supported servers for that reward type.- Quantity and amount fields should be positive values.
Open the Helios Parse Generator
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|{custom:Server}]
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|{custom:Server}]sets whether it applies to all servers or one server.
Example
{discord_id} [COMMAND] [KIT] [starter] [1] [0] [{custom:Server}]
ITEM Parse
Use this when you want to grant a specific item directly.
Format
{discord_id} [COMMAND] [ITEM] [{ItemName}] [{Quantity}] [{Worth}] [ALL|{custom:Server}]
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|{custom:Server}]controls the server target.
Example
{discord_id} [COMMAND] [ITEM] [metal.fragments] [1000] [0] [{custom:Server}]
KEY Parse
Use this when the reward should give keys.
Format
{discord_id} [KEY] [{KeyType}] [{Quantity}] [ALL|{custom:Server}]
Optional shorter format:
{discord_id} [KEY] [{Quantity}] [ALL|{custom:Server}]
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|{custom:Server}]controls the target scope.
Example
{discord_id} [KEY] [standard] [1] [{custom:Server}]
CHEST Parse
Use this when the reward should give chests.
Format
{discord_id} [CHEST] [{ChestType}] [{Quantity}] [ALL|{custom:Server}]
Optional shorter format:
{discord_id} [CHEST] [{Quantity}] [ALL|{custom:Server}]
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|{custom:Server}]controls where it applies.
Example
{discord_id} [CHEST] [standard] [1] [{custom:Server}]
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|{custom:Server}]
Breakdown
COMMANDmeans Helios is running a command-style reward.VIPtargets the VIP action.[ALL|{custom:Server}]sets whether it applies everywhere or only to one server.
Example
{discord_id} [COMMAND] [VIP] [{custom:Server}]
COOLDOWN Parse
Use this when you want to reset cooldowns.
Format
{discord_id} [COOLDOWN] [ALL|{ProductId}]
Breakdown
COOLDOWNtells Helios to clear a cooldown.ALLresets all supported cooldowns.{ProductId}resets one specific product cooldown instead.
Example
{discord_id} [COOLDOWN] [ALL]
Tip
- Use
/product infoif you need the product ID for a single-product reset.
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]
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