{"id":20985,"date":"2026-04-02T14:38:40","date_gmt":"2026-04-02T14:38:40","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/"},"modified":"2026-06-15T19:22:36","modified_gmt":"2026-06-15T19:22:36","slug":"the-isle-evrima-server-admin-guide-commands-bans-and-moderation","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/","title":{"rendered":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Moderating a busy The Isle Evrima server is a different job from setting it up. Once players are pouring in, you need to grant admin powers, broadcast announcements, kick the griefers, ban the cheaters, and adjust the game live without restarting. The trouble is that The Isle&#8217;s admin system is poorly documented and full of Legacy-branch myths \u2014 half the &#8220;command lists&#8221; floating around the web are for the old build and will not work on Evrima. This guide cuts through that. Every key, port, and command below is verified against the current Evrima build (App ID 412680).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We will cover, in order: how to grant in-game admin powers via <code>Game.ini<\/code>, how to enable and connect to RCON, the full list of RCON commands that actually exist, how kick\/ban\/unban work, the in-game admin abilities, and \u2014 just as importantly \u2014 what does <em>not<\/em> exist so you do not waste hours chasing commands that were never real.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setting Admins in The Isle Evrima<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There is no admin console password and no separate admin file in Evrima. Admins are defined directly in <code>Game.ini<\/code> by their Steam64 ID. On Windows your config lives at <code>TheIsle\\Saved\\Config\\WindowsServer\\Game.ini<\/code>; on Linux it is <code>TheIsle\/Saved\/Config\/LinuxServer\/Game.ini<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The admin list belongs to the <code>[\/Script\/TheIsle.TIGameStateBase]<\/code> section \u2014 this is the access\/roster section, separate from the gameplay section. Add one Steam64 ID per line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[\/Script\/TheIsle.TIGameStateBase]\nAdminsSteamIDs=76561198000000001\nAdminsSteamIDs=76561198000000002\n\nWhitelistIDs=76561198000000003\nVIPs=76561198000000004<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Each player you add gets in-game admin abilities the next time the server starts. The same section holds <code>WhitelistIDs<\/code> (players allowed in when <code>bServerWhitelist=true<\/code>) and <code>VIPs<\/code> (players who get priority\/queue-bypass). All three use the same one-Steam64-per-line format.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A Steam64 ID is the long 17-digit number beginning with <code>7656119...<\/code>. Players can find theirs through any Steam ID lookup site or from their profile URL. After editing, <strong>you must restart the server<\/strong> \u2014 Evrima reads admin and roster keys only at boot. If a single header or key is misspelled, the server silently reverts that value to default and your admins will not be granted, so copy the section header exactly as shown.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enabling RCON on The Isle Evrima<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RCON (Remote Console) is how you run admin commands without being in-game \u2014 broadcasting messages, kicking, banning, saving, and adjusting AI on the fly. RCON in Evrima is configured in the <code>[\/Script\/TheIsle.TIGameSession]<\/code> section of <code>Game.ini<\/code> (the gameplay\/identity section). This is the authoritative location for the current build. Some older third-party templates placed these keys under <code>[\/Script\/Engine.Game]<\/code> \u2014 ignore those for Evrima.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>[\/Script\/TheIsle.TIGameSession]\nbRconEnabled=true\nRconPassword=\"use-a-long-random-string-here\"\nRconPort=8888<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">RCON listens on <strong>TCP port 8888<\/strong> by default. You must open\/forward that port in your firewall and router, and you should restrict access to trusted IP addresses \u2014 anyone who reaches the RCON port with the password has full control of your server.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There is one critical gotcha that trips up almost every new host: <strong>standard Source-style RCON clients and <code>mcrcon<\/code> do not work with Evrima.<\/strong> The Isle uses its own RCON protocol. You must use an Evrima-compatible RCON client \u2014 a community tool or Discord bot that speaks The Isle&#8217;s protocol. If you connect with a generic RCON tool and get silence or garbage, that is the reason, not a config error.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">RCON, Queue and game ports at a glance<\/h3>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Purpose<\/th><th>Default Port<\/th><th>Protocol<\/th><\/tr><\/thead><tbody><tr><td>Game \/ query port<\/td><td>7777<\/td><td>UDP<\/td><\/tr><tr><td>RCON<\/td><td>8888<\/td><td>TCP<\/td><\/tr><tr><td>Queue<\/td><td>10000<\/td><td>TCP<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Evrima reuses the game port for queries on 7777\/UDP; forward the 7777\u20137779 UDP range to be safe. Legacy-era Steam ports (27015\u201327017) do not apply to Evrima.<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">If you run multiple servers on one machine, increment each port in a clean block: Port 7777 \u2192 7787, RconPort 8888 \u2192 8889, QueuePort 10000 \u2192 10001, and forward each. For the full install and first-launch process, see our companion walkthrough on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-set-up-a-the-isle-evrima-dedicated-server\/\">how to set up a The Isle Evrima dedicated server<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Real RCON Command List<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">These are the RCON commands confirmed to exist in Evrima across multiple host references. The arguments are comma-delimited, but the exact order and spacing can vary slightly depending on which RCON client or bot you use \u2014 so treat the syntax below as a guide and always check your specific tool&#8217;s documentation for the precise format.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Command<\/th><th>What it does<\/th><\/tr><\/thead><tbody><tr><td><code>announce <message><\/code><\/td><td>Server-wide broadcast to all players<\/td><\/tr><tr><td><code>playerlist<\/code><\/td><td>List all connected players<\/td><\/tr><tr><td><code>getplayerdata <SteamID64><\/code><\/td><td>Retrieve info on a specific player<\/td><\/tr><tr><td><code>kick <SteamID64, Reason><\/code><\/td><td>Kick a player by Steam64 ID<\/td><\/tr><tr><td><code>ban <Name, SteamID64, Reason, Time><\/code><\/td><td>Ban a player by Steam64 ID<\/td><\/tr><tr><td><code>directmessage <SteamID64, Message><\/code><\/td><td>Send a private message to one player<\/td><\/tr><tr><td><code>save<\/code><\/td><td>Force a save of all game data<\/td><\/tr><tr><td><code>togglewhitelist<\/code><\/td><td>Turn whitelist mode on or off<\/td><\/tr><tr><td><code>addwhitelist <SteamID64><\/code><\/td><td>Add a player to the whitelist<\/td><\/tr><tr><td><code>removewhitelist <SteamID64><\/code><\/td><td>Remove a player from the whitelist<\/td><\/tr><tr><td><code>getplayables<\/code><\/td><td>Show the current playable dino roster<\/td><\/tr><tr><td><code>updateplayables <DinoList><\/code><\/td><td>Update the playable species list live<\/td><\/tr><tr><td><code>toggleai<\/code><\/td><td>Toggle AI creature spawning<\/td><\/tr><tr><td><code>disableaiclasses <ClassList><\/code><\/td><td>Disable specific AI classes<\/td><\/tr><tr><td><code>aidensity <value><\/code><\/td><td>Set AI spawn density live<\/td><\/tr><tr><td><code>setgrowthmultiplier <value><\/code><\/td><td>Change the growth multiplier live<\/td><\/tr><tr><td><code>wipecorpses<\/code><\/td><td>Remove all corpses on the map<\/td><\/tr><tr><td><code>getqueuestatus<\/code><\/td><td>Report the current server queue status<\/td><\/tr><tr><td><code>pause<\/code><\/td><td>Toggle server pause<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Verified Evrima RCON commands. Argument order may differ per client.<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The standout commands for live moderation are <code>announce<\/code> (warn the whole server before you wipe corpses or restart), <code>playerlist<\/code> (grab Steam64 IDs of who is online before you kick), and <code>save<\/code> (run it before any risky change so a crash never costs progress). The live tuning trio \u2014 <code>aidensity<\/code>, <code>setgrowthmultiplier<\/code>, and <code>toggleai<\/code> \u2014 let you respond to performance problems or community votes without a restart. If you want to make a growth change permanent, set it in <code>Game.ini<\/code> instead; our guide on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-adjust-growth-speed-on-the-isle-evrima-server\/\">adjusting growth speed on a The Isle Evrima server<\/a> walks through the <code>GrowthMultiplier<\/code> key in detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Kick, Ban, and Unban Workflow<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Moderation in Evrima is identity-based: everything keys off the Steam64 ID, not the in-game name (which players can change). The reliable workflow is:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Run <code>playerlist<\/code> to see who is connected and capture the offender&#8217;s Steam64 ID.<\/li><li>For a temporary removal, use <code>kick <SteamID64, Reason><\/code> \u2014 the player can rejoin immediately, so this is for warnings and disconnecting AFK or disruptive players.<\/li><li>For a permanent or timed removal, use <code>ban <Name, SteamID64, Reason, Time><\/code>. The <code>Time<\/code> argument controls the ban length; consult your RCON client&#8217;s docs for the exact unit and format, as this varies by tool.<\/li><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">There is no dedicated, universally documented <code>unban<\/code> RCON command across all clients in the verified command set. In practice, unbanning is handled either through your RCON tool&#8217;s own ban-management interface or by editing the server&#8217;s ban list and restarting. If you are running a community panel or bot, look for its ban list view \u2014 that is almost always the safest way to remove a ban. Because exact unban behavior is client-dependent, do not assume a one-line console command exists for it; check the documentation for whatever RCON tool you have chosen.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Whitelist as a moderation tool<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For private or heavily-moderated communities, the whitelist is your strongest lever. Set <code>bServerWhitelist=true<\/code> in the <code>[\/Script\/TheIsle.TIGameStateBase]<\/code> section and populate <code>WhitelistIDs<\/code>, or manage it live with <code>togglewhitelist<\/code>, <code>addwhitelist <SteamID64><\/code>, and <code>removewhitelist <SteamID64><\/code>. With the whitelist on, anyone not on the list is refused entry \u2014 effectively a pre-emptive ban for the entire internet except your approved players.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">In-Game Admin Abilities<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Players added to <code>AdminsSteamIDs<\/code> gain in-game admin abilities when they connect \u2014 this is separate from RCON. RCON is your out-of-game remote control surface; the in-game admin role is what lets a trusted moderator handle situations while actually playing or spectating on the server. The two together form the complete moderation toolkit: <code>AdminsSteamIDs<\/code> for in-game powers, RCON for everything from a console, bot, or panel.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to lean on a managed control panel rather than wiring up RCON tooling yourself, our <a href=\"https:\/\/xgamingserver.com\/docs\/the-isle\">The Isle documentation<\/a> covers panel-based admin management, and you can skip the bot setup entirely by running on a <a href=\"https:\/\/xgamingserver.com\/the-isle-server-hosting\">managed Evrima hosting plan<\/a> where RCON and admin config are exposed through a clean interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Does NOT Exist (Avoid These Myths)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The most valuable part of any Evrima admin guide is knowing what to ignore. These are the dead ends that waste the most time:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Source RCON \/ <code>mcrcon<\/code> compatibility.<\/strong> This is not a &#8220;wrong command&#8221; problem \u2014 it is a protocol incompatibility. Generic RCON tools will never work with Evrima. Use a purpose-built Evrima RCON client.<\/li><li><strong>Spawn \/ teleport \/ heal &#8220;cheat&#8221; commands.<\/strong> There is no confirmed, documented Evrima RCON command set for spawning dinosaurs, teleporting players, or healing. If a guide hands you a list of <code>spawn<\/code> or <code>teleport<\/code> commands, it is almost certainly imported from another game or the old Legacy build. The verified control surface is the RCON command table above plus in-game admin abilities \u2014 nothing more.<\/li><li><strong>The <code>?listen<\/code> launch flag.<\/strong> This belonged to the old Legacy branch. The modern Evrima launch flow does not use it.<\/li><li><strong>A server-side EAC anti-cheat toggle.<\/strong> The Isle uses anti-cheat for clients, but there is no documented, player-facing <code>Game.ini<\/code> key to configure it server-side. Do not chase one.<\/li><li><strong>Rigid one-true-syntax for arguments.<\/strong> Comma-vs-space formatting and argument counts vary by RCON client. Trust your tool&#8217;s docs over any single asserted syntax.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Quick Reference: Admin Config Keys<\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Key<\/th><th>Section<\/th><th>Purpose<\/th><\/tr><\/thead><tbody><tr><td><code>AdminsSteamIDs<\/code><\/td><td><code>TIGameStateBase<\/code><\/td><td>Grant in-game admin powers (one Steam64 per line)<\/td><\/tr><tr><td><code>WhitelistIDs<\/code><\/td><td><code>TIGameStateBase<\/code><\/td><td>Allowed players when whitelist is on<\/td><\/tr><tr><td><code>VIPs<\/code><\/td><td><code>TIGameStateBase<\/code><\/td><td>Priority \/ queue-bypass players<\/td><\/tr><tr><td><code>bServerWhitelist<\/code><\/td><td><code>TIGameSession<\/code><\/td><td>Whitelist-only mode toggle<\/td><\/tr><tr><td><code>bRconEnabled<\/code><\/td><td><code>TIGameSession<\/code><\/td><td>Enable RCON<\/td><\/tr><tr><td><code>RconPassword<\/code><\/td><td><code>TIGameSession<\/code><\/td><td>RCON password<\/td><\/tr><tr><td><code>RconPort<\/code><\/td><td><code>TIGameSession<\/code><\/td><td>RCON listen port (default 8888)<\/td><\/tr><tr><td><code>bEnableGlobalChat<\/code><\/td><td><code>TIGameSession<\/code><\/td><td>Global chat on\/off (moderation lever)<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Section names are shortened \u2014 full headers are [\/Script\/TheIsle.TIGameStateBase] and [\/Script\/TheIsle.TIGameSession].<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What are the admin commands for The Isle Evrima?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The verified Evrima admin commands are run through RCON and include <code>announce<\/code>, <code>kick<\/code>, <code>ban<\/code>, <code>playerlist<\/code>, <code>getplayerdata<\/code>, <code>save<\/code>, <code>togglewhitelist<\/code>, <code>addwhitelist<\/code>, <code>removewhitelist<\/code>, <code>updateplayables<\/code>, <code>getplayables<\/code>, <code>toggleai<\/code>, <code>disableaiclasses<\/code>, <code>aidensity<\/code>, <code>setgrowthmultiplier<\/code>, <code>wipecorpses<\/code>, <code>directmessage<\/code>, <code>getqueuestatus<\/code>, and <code>pause<\/code>. There are no verified spawn, teleport, or heal commands \u2014 those are myths carried over from other games or the Legacy branch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I become an admin on my own Evrima server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Open <code>Game.ini<\/code>, find the <code>[\/Script\/TheIsle.TIGameStateBase]<\/code> section, and add your Steam64 ID on its own line as <code>AdminsSteamIDs=7656119...<\/code>. Save the file and restart the server. You will have in-game admin abilities on your next connect. There is no admin password to type \u2014 the privilege is tied to your Steam ID.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why won&#8217;t my RCON tool connect to The Isle Evrima?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The most common reason is that you are using a standard Source RCON client or <code>mcrcon<\/code>, which are not compatible with Evrima&#8217;s custom RCON protocol \u2014 you need an Evrima-specific client. After that, check that <code>bRconEnabled=true<\/code>, that <code>RconPassword<\/code> matches what your client is sending, that the server has been restarted since the edit, and that TCP port 8888 is open in both your firewall and router.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I ban and unban a player?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Ban with <code>ban <Name, SteamID64, Reason, Time><\/code> over RCON, using the Steam64 ID you grabbed from <code>playerlist<\/code>. Unbanning is not a single universal console command in the verified set \u2014 it is handled through your RCON client or bot&#8217;s ban-management interface, or by editing the server&#8217;s ban list and restarting. Check the documentation for the specific RCON tool you are using.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What port does The Isle Evrima RCON use?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">RCON defaults to <strong>TCP port 8888<\/strong>, set with <code>RconPort=8888<\/code> in the <code>[\/Script\/TheIsle.TIGameSession]<\/code> section. This is distinct from the game port (UDP 7777) and the queue port (TCP 10000). If you run multiple servers, increment RconPort per instance (8889, 8890, and so on) and forward each. If your server is also having visibility or join issues, see our guides on the <a href=\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-not-showing-in-server-list-how-to-fix-it\/\">server not showing in the list<\/a> and <a href=\"https:\/\/xgamingserver.com\/blog\/players-cant-connect-to-the-isle-evrima-server-fix-guide-2026\/\">players who can&#8217;t connect<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can admins spawn dinos or teleport on Evrima?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">No \u2014 there is no confirmed, documented Evrima RCON command for spawning dinosaurs, teleporting, or healing. Any list claiming otherwise is recycled from another game or the old Legacy build. Admin power in Evrima comes from the in-game admin role granted by <code>AdminsSteamIDs<\/code> plus the RCON command set, which is focused on moderation (kick\/ban\/whitelist), broadcasts, saves, and live world tuning rather than cheats.<\/p>\n\n\n<!-- xg-tools-mesh -->\n\n<div class=\"wp-block-group xg-tools-box is-layout-flow wp-block-group-is-layout-flow\" style=\"border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:18px 22px;margin-top:8px;background:rgba(76,175,80,.04);\">\n<h3 class=\"wp-block-heading\">Free The Isle Tools<\/h3>\n<p class=\"wp-block-paragraph\">Speed up your server with our free The Isle tools:<\/p>\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/xgamingserver.com\/tools\/the-isle\/growth-calculator\">Growth Calculator<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/the-isle\/dinosaurs\">Dinosaur Database<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/the-isle\/elder-planner\">Elder Planner<\/a><\/li><li><a href=\"https:\/\/xgamingserver.com\/tools\/the-isle\/server-config\">Server Config Generator<\/a><\/li><\/ul>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>Moderating a busy The Isle Evrima server is a different job from setting it up. Once players are pouring in, you need to grant admin powers, broadcast announcements, kick the griefers, ban the cheaters, and adjust the game live without restarting. The trouble is that The Isle&#8217;s admin system is poorly documented and full of [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":21343,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[117],"tags":[],"class_list":["post-20985","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-the-isle-evrima"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation - XGamingServer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation\" \/>\n<meta property=\"og:description\" content=\"Moderating a busy The Isle Evrima server is a different job from setting it up. Once players are pouring in, you need to grant admin powers, broadcast announcements, kick the griefers, ban the cheaters, and adjust the game live without restarting. The trouble is that The Isle&#8217;s admin system is poorly documented and full of [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-02T14:38:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T19:22:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation\",\"datePublished\":\"2026-04-02T14:38:40+00:00\",\"dateModified\":\"2026-06-15T19:22:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\"},\"wordCount\":1865,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg\",\"articleSection\":[\"The Isle Evrima\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\",\"name\":\"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg\",\"datePublished\":\"2026-04-02T14:38:40+00:00\",\"dateModified\":\"2026-06-15T19:22:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Isle Evrima\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/the-isle-evrima\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation - XGamingServer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/","og_locale":"en_US","og_type":"article","og_title":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation","og_description":"Moderating a busy The Isle Evrima server is a different job from setting it up. Once players are pouring in, you need to grant admin powers, broadcast announcements, kick the griefers, ban the cheaters, and adjust the game live without restarting. The trouble is that The Isle&#8217;s admin system is poorly documented and full of [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-04-02T14:38:40+00:00","article_modified_time":"2026-06-15T19:22:36+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/"},"author":{"name":"","@id":""},"headline":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation","datePublished":"2026-04-02T14:38:40+00:00","dateModified":"2026-06-15T19:22:36+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/"},"wordCount":1865,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","articleSection":["The Isle Evrima"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/","url":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/","name":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","datePublished":"2026-04-02T14:38:40+00:00","dateModified":"2026-06-15T19:22:36+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/the-isle-evrima-server-admin-guide-commands-bans-and-moderation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"The Isle Evrima","item":"https:\/\/xgamingserver.com\/blog\/category\/the-isle-evrima\/"},{"@type":"ListItem","position":3,"name":"The Isle Evrima Server Admin Guide: Commands, Bans, and Moderation"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/the-isle-evrima-nesting-mutations.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=20985"}],"version-history":[{"count":3,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20985\/revisions"}],"predecessor-version":[{"id":22585,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/20985\/revisions\/22585"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/21343"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=20985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=20985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=20985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}