LogoLogo
  • Introducing Tebex
    • Why Tebex?
  • Pricing
    • Starter & Plus Plans
    • Fees Overview
      • Why We Charge a Platform Fee
  • Initial Setup
    • General checklist for setting up a Tebex store
    • Identity Verification for Tebex Store Onboarding
    • Your Store Review
    • Tips for getting your store application approved
    • What is Intellectual Property?
    • Adult Content Guidelines
  • Tebex Control Panel
    • Dashboard
    • Payments
      • Manual Payments
      • Recurring Payments
      • Payment Methods
      • Checkout Settings
      • Fraud Analysis
      • Wallet
      • Payment Exports
    • Packages
      • How To Create A Package
      • How To Create A Category
      • How To Test A Package
    • Statistics
    • Customers
      • Customer Lookup
      • Banning
    • Webstore
      • Tebex Footer
      • Appearance
        • Custom CSS & HTML
        • Visibility
      • Sidebar Modules
      • Pages
      • Variables
        • Template Variables
      • Currency
        • Regional Pricing
      • Translations
        • Language
        • Custom Translations
      • Emails
      • Domains
        • Subdomain & Custom Domain
      • Notifications
        • Slack & Discord Notifications
    • Engagement
      • Coupon Codes
      • Sales
      • Creator Codes
      • Gift Cards
      • Community Goals
      • Abandoned Basket Recovery
      • Purchase Follow Ups
      • Upselling
      • Offers
    • Game Servers
      • FiveM
        • FiveM (Server Wrapper)
      • Minecraft: Java Edition
        • BuycraftX
      • ARK: Survival Evolved
      • Minecraft: Bedrock Edition
      • Space Engineers
        • Space Engineers Item IDs
        • How the Legacy Space Engineers Vanilla Integration Works
        • Mod Guidelines and FAQs
      • Unturned
      • Rust
      • Garry's Mod
      • Hurtworld
      • Counter Strike: GO
      • 7 Days To Die
      • Team Fortress 2
      • Conan Exiles
      • RCON (Legacy)
      • RCON Adapter
      • MySQL Depreciation
    • Discord Servers
    • Store Transfers
    • Team Accounts
    • Billing
      • Store Cancellation
  • Tebex Checkout
    • How Payments Work
    • Seller Protection and Chargebacks
    • Where and Why We Charge Sales Tax/VAT
      • Information for Accountants
    • Checkout Process
    • Paysafecard
    • Wallet
    • Wallet Restrictions - Deposits & Locks
    • Fund Withdrawals and Transfers
      • PayPal Withdrawal Fees
      • Bank Account Withdrawal Fees
      • Wire Transfer List of Countries & Fees
    • Checkout FAQ
    • Seller Support Guidance
    • Checkout Seller Actions
      • Changing Usernames
      • Changing Discord ID's
      • Resending Commands
      • Customer Lookup
      • Checkout Bans
    • Tebex Checkout for WHMCS
  • Subscribe @ Tebex Academy
  • Developer Documentation
  • FAQs
  • Growth and Success
    • 🛒Tebex Store Best Practices
    • 📆Sales Calendar - 2025
    • 🎁Gift Cards
    • 💬Community Engagement
    • ❓Frequently asked questions
    • 🚗FiveM Best Practices for Packages
    • 🥼FiveM Beta Assets Best practices
    • 📖Creator Success: Case Studies
      • 🚛Reducing Support Backlog through Restructuring the Team
      • 🔁Improving User Retention via “Loss Leader”
      • 📅Subscription Stability and Growth
  • Command Management
    • An Introduction To Commands
    • Command Troubleshooting
    • Resending Commands
    • Support for Epic Game IDs
Powered by GitBook
On this page
  • Setting Up Store Commands
  • Store Command Example
  • Conan Console Commands
  • Notable Behaviors

Was this helpful?

  1. Tebex Control Panel
  2. Game Servers

Conan Exiles

PreviousTeam Fortress 2NextRCON (Legacy)

Last updated 1 year ago

Was this helpful?

Tebex officially supports integration with your Conan: Exiles server via our . Please follow its setup guide before creating your store packages.

Setting Up Store Commands

For Conan: Exiles, most useful in-game commands are available via the con RCON command. This runs a console command on a certain user, as opposed to an RCON command on the server.

Console commands may also be referred to as Admin commands.

For Conan: Exiles, any package which runs a Console command must be prefixed with con {id} to route that command to the correct player.

This is because Conan uses the index of the player in the online players list as the ID for the con command. The RCON Adapter will automatically translate the username to the appropriate ID when the command is due.

Store Command Example

For giving an item to the player, the format is as follows:

con {id} spawnitem {itemid} {quantity}

So to give a player 5 Stone (item ID 10001) at purchase, your webstore package’s command should be:

con {id} spawnitem 10001 5

Conan Console Commands

A these commands may be useful when building your store. This is not a comprehensive list - all console commands for Conan Exiles may be found at the Official Wiki .

Action
Command

Learn Emote

LearnEmote [emote]

Toggle God

God

Player Can Build Everywhere

PlayerCanBuildEverywhere [PlayerName]

Level Follower

LevelFollowerUpTo [Value]

Follower Attributes

SetFollowerStat [stat] [value]

Player Attributes

SetStat [stat] [value]

Teleport Player

TeleportPlayer X[float] Y[float] Z[float]

Toggle Sprint Cost

NoSprintCost

Cloak

Cloak

Toggle Invisibility

Invisibility

Fill Player Purge Meter

FillPlayerPurgeMeter

Fill Player Clan Purge Meter

FillPlayerClanPurgeMeter

Empty Player Clan Purge Meter

EmptyPlayerClanPurgeMeter

Fill All Clan Purge Meters

FillAllClanPurgeMeters

Empty All Clan Purge Meters

EmptyAllClanPurgeMeters

Start Purge

StartPlayerPurge

End Purge

EndPurge

Start Next Purge

StartNextPurgePhase

Start Next Wave

StartNextWave

Toggle Player List

ShowPlayers

Damage Target

DamageTarget [Value]

Destroy Target

DestroyTarget

Spawn Item

SpawnItem [ItemID] [Quantity]

Broadcast Message

BroadcastMessage [Message]

Set Server Setting

SetServerSetting serverSetting[FString] Value[FString]

Set Energy Player

SetEnergy [type] [Value]

Notable Behaviors

When using the RCON adapter for Conan, it’s important to note the following behaviors that are normal and should be expected:

  • Commands run by the adapter will be shown in the server console as “Received Rcon:”

  • Conan’s Server commands can be detected as succeeded or failed appropriately.

  • Conan’s Console/Admin commands may report success even if the command failed, this is a limitation of the game per-command.

    • Ex. running con {id} spawnitem 1001 5 will report a success from the game server even though the item ID is invalid.

  • To avoid issuing duplicate commands, all console commands will assume successful execution as long as the player is online.

RCON Adapter
here