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 /bag slots
  • 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}).
  • ALL applies the reward across all supported servers; a server key targets one server.
  • Get a server key by running /server list in 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 cmd field of the product page.
  • Set the channel to the same channel you set your /set reward-channel to.

tip4serv cmd setting

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

  • KIT tells 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

  • ITEM tells 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

  • KEY tells 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

  • CHEST tells 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

  • COINS tells 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

  • XP tells 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

  • COMMAND means Helios is running a command-style reward.
  • VIP targets 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

  • COOLDOWN tells Helios to clear a cooldown.
  • ALL resets 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 info if you need the product ID for a single-product reset.
  • Use /bind list to 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

  • INVENTORY targets 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 📌

  1. Open the Parse Generator.
  2. Pick the reward type you need.
  3. Fill in the fields and copy the generated parse.
  4. Route reward messages to the correct channel with /set reward-channel.
  5. 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 ALL or 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