How to set uMod plugin permission on your Rust server

Installing a plugin on your Rust server is only half the job. Most Oxide and Carbon plugins do nothing until you explicitly grant the right people permission to use them. If you have ever dropped a plugin into oxide/plugins/, reloaded it, and then watched it do absolutely nothing in-game, the missing piece is almost always permissions. This guide walks through the entire permission system from the ground up: the two built-in groups, the exact oxide.grant and oxide.revoke syntax, how groups and inheritance work, the pluginname.permission node format, and why every one of these commands works identically whether you run Oxide/uMod or Carbon.

How the Oxide permission system works

Oxide (also known as uMod) is the long-established Rust modding framework, with the largest plugin library available — over 1,400 plugins on uMod alone. Its permission system is built on two simple concepts: permissions and groups. A permission is a single string that unlocks one capability of a plugin. A group is a named bucket of users that can hold a bundle of permissions. You can assign permissions directly to an individual player, or to a group that the player belongs to — and in practice, granting to a group is almost always the cleaner approach.

When you install Oxide, it automatically creates two default groups: admin and default. Every player who connects is a member of default, and any player with an auth level (an owner or moderator) is automatically placed in admin. This is why so many plugins “just work” for admins out of the box but appear broken for regular players — the plugin author granted its core permissions to the admin group, and the default group has nothing. Your job as a server owner is to decide which capabilities the default group (everyone) gets, and which you reserve for special groups like VIPs, supporters, or moderators.

The pluginname.permission node format

Every permission in Oxide follows the same format: pluginname.permission. The first part is the plugin’s registered name (lowercased), and the second part is the specific capability that the plugin’s author defined. So a plugin called CoolPlugin might register coolplugin.use for general access, while the Vanish plugin registers vanish.allow for the players allowed to go invisible. There is no universal list — each plugin documents its own permission nodes, usually in its description page or config. The pattern, however, never changes:

coolplugin.use      # general access to CoolPlugin
vanish.allow        # allowed to use the Vanish plugin
removertool.normal  # example node: standard remove access
serverrewards.use   # example node: access the rewards store

To find a plugin’s exact nodes, read its documentation first, then verify in-game with the inspection commands covered later in this guide (oxide.show perms and oxide.show perm ). Never assume a node name — a typo in a permission string fails silently, and that is the single most common reason a “broken” plugin is really just a misspelled grant.

Granting and revoking permissions to a user

The most direct way to give a single player access to a plugin is to grant the permission to that user. Oxide accepts either the player’s name or their SteamID64 (the 17-digit number, for example 76561197854018763). The SteamID64 is always the safer choice because names change and can contain spaces or special characters that confuse the parser. You can read a connected player’s SteamID64 from the ID column of the status command.

# Grant a permission to a single user (by name OR SteamID64)
oxide.grant  user 76561197854018763 coolplugin.use
oxide.grant  user "PlayerName" coolplugin.use

# Revoke that permission from the user
oxide.revoke user 76561197854018763 coolplugin.use
oxide.revoke user "PlayerName" coolplugin.use

Direct user grants are perfect for one-off cases — handing a single content creator access to a special command, or testing a permission before you roll it out. But they get unmanageable fast. If you grant ten permissions to twenty VIPs individually, you now have two hundred grants to track, and revoking VIP status from one player means hunting down ten separate commands. That is exactly the problem groups solve.

Working with groups

Groups let you define a permission set once and then move players in and out of it. The workflow is: create a group, grant the group its permissions, then add users to the group. When a player joins the group they inherit every permission the group holds; remove them and the access is gone instantly — no need to revoke each node one by one.

Creating and deleting groups

# Create a new group
oxide.group add supporters

# Remove a group entirely
oxide.group remove supporters

# Set a display title and a rank number for the group
oxide.group set supporters "[Server Supporters]" 1

The oxide.group set command assigns a human-readable title (often used by chat plugins to show a tag next to a player’s name) and a numeric rank that some plugins use to order groups. The admin and default groups already exist and should not be deleted — they are part of the framework’s core behavior.

Granting permissions to a group

Granting and revoking for a group uses the same oxide.grant / oxide.revoke verbs you saw for users — you just swap user for group:

# Grant a permission to a whole group
oxide.grant  group supporters coolplugin.use
oxide.grant  group admin      coolplugin.use

# Revoke a permission from a group
oxide.revoke group admin      coolplugin.use

A very common pattern is granting a capability to the default group so that every player on your server can use it — for example, letting everyone use a teleport-to-home plugin or a player-side remove tool. Reserve more powerful nodes for purpose-built groups, and keep truly destructive admin tools on the admin group only.

Adding and removing users from groups

Once a group holds the permissions you want, you move players in and out with oxide.usergroup. As with grants, you can reference a player by name or SteamID64.

# Add a user to a group
oxide.usergroup add    76561197854018763 supporters
oxide.usergroup add    "PlayerName"      supporters

# Remove a user from a group
oxide.usergroup remove 76561197854018763 supporters
oxide.usergroup remove "PlayerName"      supporters

This is where the group model pays off. Selling a VIP rank? One oxide.usergroup add command grants the buyer everything the VIP group offers. Refund or expiry? One oxide.usergroup remove and they lose it all. Most donation and store plugins automate exactly these two commands behind the scenes.

Group inheritance (parents)

Oxide supports group inheritance through parents. A child group inherits every permission its parent holds, on top of its own. This lets you build tiered ranks without re-granting shared permissions at every level.

# Make tier_2 inherit everything tier_1 has
oxide.group parent tier_2 tier_1

Picture a three-tier donor system. You grant baseline perks to tier_1, then set tier_2‘s parent to tier_1 and add only the extra perks; tier_2 members automatically get the baseline plus their own. Set tier_3‘s parent to tier_2 and it stacks again. When you later add a new perk for everyone, you grant it once at tier_1 and it cascades upward through the chain.

Inspecting permissions and groups

You cannot manage what you cannot see. Oxide’s oxide.show family of commands lets you audit exactly who has what. Use these constantly — they are how you confirm a grant actually landed and how you debug a “permission isn’t working” report.

oxide.show groups               # list every group
oxide.show group admin          # show the members of a group
oxide.show user       # show a user's groups + permissions
oxide.show perms     # show all permissions held by a group
oxide.show perm coolplugin.use   # show who/what has a specific permission

A reliable troubleshooting routine: run oxide.show user "PlayerName" to see the player’s groups and direct permissions, then oxide.show perms on each of their groups to confirm the node is actually present and spelled correctly. Nine times out of ten the issue is a misspelled node, a player who isn’t in the group they should be, or a plugin that didn’t reload after a config change.

Command reference table

CommandWhat it does
oxide.grant user Grant a permission to one player
oxide.revoke user Revoke a permission from one player
oxide.grant group Grant a permission to a whole group
oxide.revoke group Revoke a permission from a group
oxide.group add Create a new group
oxide.group remove Delete a group
oxide.group set "" <rank></code></td><td>Set a group’s display title and rank</td></tr> <tr><td><code>oxide.group parent <child> <parent></code></td><td>Make a group inherit from another</td></tr> <tr><td><code>oxide.usergroup add <name|ID> <group></code></td><td>Add a player to a group</td></tr> <tr><td><code>oxide.usergroup remove <name|ID> <group></code></td><td>Remove a player from a group</td></tr> <tr><td><code>oxide.show ...</code></td><td>Inspect groups, users and permissions</td></tr> </tbody></table></figure> <h2 class="wp-block-heading">Carbon uses the exact same commands</h2> <p class="wp-block-paragraph">Carbon is the modern alternative modding framework for Rust. The official Rust wiki describes it as “a modern modding framework for the game Rust responsible for handling background operations and running custom plugins and extensions with maximum performance.” Crucially for this guide, Carbon was designed for seamless migration from Oxide: it offers an identical folder structure and automatic data migration tools, uses Harmony, and requires no additional patches to run existing Oxide plugins (community sources report roughly 99% Oxide-plugin compatibility).</p> <p class="wp-block-paragraph">What that means in practice is that <strong>every permission command above works unchanged on Carbon</strong>. Carbon accepts the full <code>oxide.*</code> command surface — the same <code>admin</code> and <code>default</code> groups, the same <code>pluginname.permission</code> node format, the same grant/revoke/group/usergroup verbs. On top of that, Carbon exposes a shorter <code>o.</code> alias (which also works on Oxide):</p> <pre class="wp-block-code"><code># These are equivalent on Carbon (and the o. alias works on Oxide too) oxide.grant group vips coolplugin.use o.grant group vips coolplugin.use # Reloading: o.reload works on both; Carbon also has a native command o.reload CoolPlugin carbon.reload CoolPlugin</code></pre> <p class="wp-block-paragraph">So if you migrate a server from Oxide to Carbon, your permission knowledge transfers one-to-one. The grants, groups and inheritance you already configured carry over via Carbon’s data migration, and you keep typing the same commands. The only practical difference you’ll notice is performance: Carbon uses dynamic hook loading (only the hooks a plugin actually calls are loaded), which the community reports yields higher FPS, lower RAM use and faster boot times. Carbon-specific aliases beyond <code>o.</code> and <code>carbon.reload</code> may exist — check the current Carbon docs before relying on them.</p> <h2 class="wp-block-heading">A note on wildcards</h2> <p class="wp-block-paragraph">You will often see people suggest wildcard permissions — <code>*</code> to grant everything, or <code>pluginname.*</code> to grant all of one plugin’s nodes at once. These patterns are commonly used in the community, but support and exact behavior can vary by plugin, so treat them as something to verify rather than assume. The safe, predictable approach is to grant the specific nodes a plugin documents. If you do experiment with a wildcard, confirm the result immediately with <code>oxide.show perms <group></code> so you know exactly what you handed out — accidentally granting <code>*</code> to the <code>default</code> group would give every player on your server full plugin access.</p> <h2 class="wp-block-heading">Putting it together: a real VIP setup</h2> <p class="wp-block-paragraph">Here is a complete, copy-pasteable example that creates a VIP rank, gives it a couple of plugin capabilities, tags it for chat, and enrolls a player. Run these from your WebRCON console or the in-game F1 console (with an auth level):</p> <pre class="wp-block-code"><code># 1) create the group oxide.group add vips oxide.group set vips "[VIP]" 5 # 2) grant the perks the VIP rank should include oxide.grant group vips coolplugin.use oxide.grant group vips vanish.allow # 3) enroll a player by SteamID64 oxide.usergroup add 76561197854018763 vips # 4) verify it landed oxide.show perms vips oxide.show user 76561197854018763</code></pre> <p class="wp-block-paragraph">That’s the entire lifecycle. To sell a second tier later, create <code>vips_plus</code>, set its parent to <code>vips</code>, grant only the extra perks, and the higher tier automatically includes everything the base VIP rank offers. When you’re ready to scale this kind of configured, plugin-ready setup without managing the underlying machine, our <a href="https://xgamingserver.com/rust-hosting-server">managed Rust server plans</a> ship with Oxide/Carbon support and one-click control so you can spend your time on permissions and gameplay instead of system administration. For framework installation and panel-specific steps, see the <a href="https://xgamingserver.com/docs/rust">Rust documentation</a>.</p> <h2 class="wp-block-heading">Important: reinstall your framework after every update</h2> <p class="wp-block-paragraph">One operational gotcha catches every Rust admin eventually. When Facepunch ships a server update — including the monthly force wipe, such as the June 4, 2026 “Built Different” update — the update <strong>overwrites Oxide and Carbon files</strong>. After any update or wipe you must reinstall the framework before your plugins (and therefore your permissions) will load again. Your permission data itself survives in the data files, but the framework binary needs replacing. On force-wipe day, Carbon is typically patched fastest (often within hours), which matters if you’re racing to be online for the first-player rush. See our <a href="https://xgamingserver.com/blog/rust-built-different-update-server-admins/">Built Different update breakdown</a> for the full wipe-day checklist.</p> <h2 class="wp-block-heading">Frequently asked questions</h2> <h3 class="wp-block-heading">What is the difference between oxide.grant user and oxide.grant group?</h3> <p class="wp-block-paragraph"><code>oxide.grant user <name|SteamID64> <permission></code> attaches a permission directly to one specific player. <code>oxide.grant group <group> <permission></code> attaches it to a group, and every member of that group inherits it. Use user grants for one-off or testing cases; use group grants for anything you’ll repeat (VIPs, moderators, server-wide perks) because you can then manage access by simply moving players in and out of the group with <code>oxide.usergroup</code>.</p> <h3 class="wp-block-heading">What are the default and admin groups in Oxide?</h3> <p class="wp-block-paragraph">Oxide automatically creates two built-in groups when it installs. <code>default</code> contains every player who connects — grant a permission here and the whole server gets it. <code>admin</code> contains players with an auth level (owners and moderators), and they’re placed in it automatically. Many plugins ship their admin-only nodes pre-granted to the <code>admin</code> group, which is why those plugins work for you but appear to do nothing for regular players until you grant the relevant node to <code>default</code> or another group.</p> <h3 class="wp-block-heading">How do I find a plugin’s permission node?</h3> <p class="wp-block-paragraph">Permission nodes always follow the <code>pluginname.permission</code> format, but the exact string is defined by each plugin’s author. Check the plugin’s documentation page first, then confirm in-game with <code>oxide.show perm <node></code> or by inspecting a group with <code>oxide.show perms <group></code>. Never guess — a misspelled node fails silently, with no error, which is the most common reason admins think a plugin is broken when the grant simply never matched a real permission.</p> <h3 class="wp-block-heading">Do Oxide permission commands work on Carbon?</h3> <p class="wp-block-paragraph">Yes. Carbon supports the same command surface as Oxide, including the full <code>oxide.*</code> permission commands, the same <code>admin</code>/<code>default</code> groups, and the same <code>pluginname.permission</code> format. Carbon also adds a shorter <code>o.</code> alias (for example <code>o.grant</code>), which works on Oxide as well. Because Carbon offers identical folder structure and automatic data migration, your existing permission setup transfers when you switch frameworks.</p> <h3 class="wp-block-heading">Can I grant a permission to every player at once?</h3> <p class="wp-block-paragraph">Yes — grant it to the <code>default</code> group with <code>oxide.grant group default <permission></code>. Since every connected player is a member of <code>default</code>, this is the standard way to enable a plugin capability server-wide. Just be deliberate about it: only put low-risk, player-friendly nodes on <code>default</code>, and keep administrative or destructive capabilities on the <code>admin</code> group or a dedicated moderator group.</p> <h3 class="wp-block-heading">Why did my permissions stop working after a Rust update?</h3> <p class="wp-block-paragraph">A Facepunch update overwrites the Oxide and Carbon framework files, so after any update or monthly force wipe you must reinstall the framework before plugins will load. Your permission and group data is stored separately and generally survives, but with no framework running, no plugin checks permissions, so everything appears to be gone. Reinstall Oxide or Carbon, reload your plugins, and your existing grants take effect again. Carbon is usually patched first on wipe day.</p> <h2 class="wp-block-heading">Related Rust admin guides</h2> <ul class="wp-block-list"> <li><a href="https://xgamingserver.com/blog/rust-rcon-server-console-commands/">Rust RCON & server console commands</a> — where to run these permission commands remotely.</li> <li><a href="https://xgamingserver.com/blog/top-10-admin-plugins-for-your-rust-server/">Top 10 admin plugins for your Rust server</a> — plugins whose permissions you’ll be granting.</li> <li><a href="https://xgamingserver.com/blog/how-to-see-who-is-on-your-rust-server/">How to see who is on your Rust server</a> — read SteamID64s for user grants.</li> <li><a href="https://xgamingserver.com/blog/how-to-modify-the-gather-rate-on-your-rust-server/">How to modify the gather rate</a> — a permission-gated plugin in action.</li> </ul> <!-- xg-tools-mesh --> <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);"> <h3 class="wp-block-heading">Free Rust Tools</h3> <p class="wp-block-paragraph">Speed up your server with our free Rust tools:</p> <ul class="wp-block-list"><li><a href="https://xgamingserver.com/tools/rust/raid-calculator">Raid Calculator</a></li><li><a href="https://xgamingserver.com/tools/rust/gunpowder-calculator">Gunpowder Calculator</a></li><li><a href="https://xgamingserver.com/tools/rust/decay-calculator">Decay Calculator</a></li><li><a href="https://xgamingserver.com/tools/rust/sulfur-calculator">Sulfur Calculator</a></li></ul> </div> <section class="xg-cta" aria-label="Host your own Rust server with XGamingServer"> <div class="xg-cta__inner"> <div class="xg-cta__head"> <p class="xg-cta__eyebrow"><i class="fas fa-server"></i> Ready to play?</p> <h2 class="xg-cta__title">Run your own Rust server with XGamingServer</h2> <p class="xg-cta__sub">Spin up an always-on Rust server your friends can join in minutes — no port-forwarding, no tech headaches.</p> </div> <div class="xg-cta__stats"> <div><strong>99.9%</strong><span>Uptime SLA</span></div> <div><strong>< 5 min</strong><span>Instant setup</span></div> <div><strong>24/7</strong><span>Human support</span></div> <div><strong>DDoS</strong><span>Protected</span></div> </div> <div class="xg-cta__features"> <div class="xg-cta-feature"> <i class="fas fa-bolt"></i> <div> <strong>Instant setup</strong> <span>Your server is live in minutes with a one-click control panel.</span> </div> </div> <div class="xg-cta-feature"> <i class="fas fa-puzzle-piece"></i> <div> <strong>Mods & plugins</strong> <span>Install mods, plugins and workshop content in a few clicks.</span> </div> </div> <div class="xg-cta-feature"> <i class="fas fa-shield-alt"></i> <div> <strong>DDoS protected</strong> <span>Enterprise DDoS mitigation keeps your server online 24/7.</span> </div> </div> <div class="xg-cta-feature"> <i class="fas fa-tachometer-alt"></i> <div> <strong>Low-latency hardware</strong> <span>Premium CPUs & NVMe SSDs for lag-free multiplayer.</span> </div> </div> <div class="xg-cta-feature"> <i class="fas fa-history"></i> <div> <strong>Free backups</strong> <span>Automatic backups so your world is never lost.</span> </div> </div> <div class="xg-cta-feature"> <i class="fas fa-headset"></i> <div> <strong>Real human support</strong> <span>Gamers helping gamers — 24/7, no bots, no scripts.</span> </div> </div> </div> <div class="xg-cta__plans-head"> <h3 class="xg-cta__plans-title">Pick your Rust plan & play in minutes</h3> <a class="xg-cta__compare" href="/rust-hosting-server">See all plans <i class="fas fa-arrow-right"></i></a> </div> <div class="xg-cta__plans"> <div class="xg-plan"> <span class="xg-plan__name">Starter</span> <span class="xg-plan__price">$8.40<small>/mo</small></span> <span class="xg-plan__ram"><i class="fas fa-memory"></i> 4 GB RAM</span> <span class="xg-plan__note">Renews $12/mo</span> <a class="xg-plan__buy" href="https://billing.xgamingserver.com/cart.php?a=add&pid=1040&promocode=XGAMEON">Buy now</a> </div> <div class="xg-plan xg-plan--popular"> <span class="xg-plan__badge">Most popular</span> <span class="xg-plan__name">Novice</span> <span class="xg-plan__price">$10.50<small>/mo</small></span> <span class="xg-plan__ram"><i class="fas fa-memory"></i> 6 GB RAM</span> <span class="xg-plan__note">Renews $15/mo</span> <a class="xg-plan__buy" href="https://billing.xgamingserver.com/cart.php?a=add&pid=1&promocode=XGAMEON">Buy now</a> </div> <div class="xg-plan"> <span class="xg-plan__name">Rookie</span> <span class="xg-plan__price">$17.50<small>/mo</small></span> <span class="xg-plan__ram"><i class="fas fa-memory"></i> 8 GB RAM</span> <span class="xg-plan__note">Renews $25/mo</span> <a class="xg-plan__buy" href="https://billing.xgamingserver.com/cart.php?a=add&pid=2&promocode=XGAMEON">Buy now</a> </div> <div class="xg-plan"> <span class="xg-plan__name">Pro</span> <span class="xg-plan__price">$24.50<small>/mo</small></span> <span class="xg-plan__ram"><i class="fas fa-memory"></i> 12 GB RAM</span> <span class="xg-plan__note">Renews $35/mo</span> <a class="xg-plan__buy" href="https://billing.xgamingserver.com/cart.php?a=add&pid=3&promocode=XGAMEON">Buy now</a> </div> </div> </div> </section> </div> <div class="ct-share-box is-width-constrained ct-hidden-sm" data-location="bottom" data-type="type-1" > <div data-icons-type="simple"> <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fxgamingserver.com%2Fblog%2Fhow-to-set-plugin-permission-on-your-rust-server%2F" data-network="facebook" aria-label="Facebook" rel="noopener noreferrer nofollow"> <span class="ct-icon-container"> <svg width="20px" height="20px" viewBox="0 0 20 20" aria-hidden="true"> <path d="M20,10.1c0-5.5-4.5-10-10-10S0,4.5,0,10.1c0,5,3.7,9.1,8.4,9.9v-7H5.9v-2.9h2.5V7.9C8.4,5.4,9.9,4,12.2,4c1.1,0,2.2,0.2,2.2,0.2v2.5h-1.3c-1.2,0-1.6,0.8-1.6,1.6v1.9h2.8L13.9,13h-2.3v7C16.3,19.2,20,15.1,20,10.1z"/> </svg> </span> </a> <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fxgamingserver.com%2Fblog%2Fhow-to-set-plugin-permission-on-your-rust-server%2F&text=How%20to%20set%20uMod%20plugin%20permission%20on%20your%20Rust%20server" data-network="twitter" aria-label="X (Twitter)" rel="noopener noreferrer nofollow"> <span class="ct-icon-container"> <svg width="20px" height="20px" viewBox="0 0 20 20" aria-hidden="true"> <path d="M2.9 0C1.3 0 0 1.3 0 2.9v14.3C0 18.7 1.3 20 2.9 20h14.3c1.6 0 2.9-1.3 2.9-2.9V2.9C20 1.3 18.7 0 17.1 0H2.9zm13.2 3.8L11.5 9l5.5 7.2h-4.3l-3.3-4.4-3.8 4.4H3.4l5-5.7-5.3-6.7h4.4l3 4 3.5-4h2.1zM14.4 15 6.8 5H5.6l7.7 10h1.1z"/> </svg> </span> </a> <a href="#" data-network="pinterest" aria-label="Pinterest" rel="noopener noreferrer nofollow"> <span class="ct-icon-container"> <svg width="20px" height="20px" viewBox="0 0 20 20" aria-hidden="true"> <path d="M10,0C4.5,0,0,4.5,0,10c0,4.1,2.5,7.6,6,9.2c0-0.7,0-1.5,0.2-2.3c0.2-0.8,1.3-5.4,1.3-5.4s-0.3-0.6-0.3-1.6c0-1.5,0.9-2.6,1.9-2.6c0.9,0,1.3,0.7,1.3,1.5c0,0.9-0.6,2.3-0.9,3.5c-0.3,1.1,0.5,1.9,1.6,1.9c1.9,0,3.2-2.4,3.2-5.3c0-2.2-1.5-3.8-4.2-3.8c-3,0-4.9,2.3-4.9,4.8c0,0.9,0.3,1.5,0.7,2C6,12,6.1,12.1,6,12.4c0,0.2-0.2,0.6-0.2,0.8c-0.1,0.3-0.3,0.3-0.5,0.3c-1.4-0.6-2-2.1-2-3.8c0-2.8,2.4-6.2,7.1-6.2c3.8,0,6.3,2.8,6.3,5.7c0,3.9-2.2,6.9-5.4,6.9c-1.1,0-2.1-0.6-2.4-1.2c0,0-0.6,2.3-0.7,2.7c-0.2,0.8-0.6,1.5-1,2.1C8.1,19.9,9,20,10,20c5.5,0,10-4.5,10-10C20,4.5,15.5,0,10,0z"/> </svg> </span> </a> <a href="https://www.linkedin.com/shareArticle?url=https%3A%2F%2Fxgamingserver.com%2Fblog%2Fhow-to-set-plugin-permission-on-your-rust-server%2F&title=How%20to%20set%20uMod%20plugin%20permission%20on%20your%20Rust%20server" data-network="linkedin" aria-label="LinkedIn" rel="noopener noreferrer nofollow"> <span class="ct-icon-container"> <svg width="20px" height="20px" viewBox="0 0 20 20" aria-hidden="true"> <path d="M18.6,0H1.4C0.6,0,0,0.6,0,1.4v17.1C0,19.4,0.6,20,1.4,20h17.1c0.8,0,1.4-0.6,1.4-1.4V1.4C20,0.6,19.4,0,18.6,0z M6,17.1h-3V7.6h3L6,17.1L6,17.1zM4.6,6.3c-1,0-1.7-0.8-1.7-1.7s0.8-1.7,1.7-1.7c0.9,0,1.7,0.8,1.7,1.7C6.3,5.5,5.5,6.3,4.6,6.3z M17.2,17.1h-3v-4.6c0-1.1,0-2.5-1.5-2.5c-1.5,0-1.8,1.2-1.8,2.5v4.7h-3V7.6h2.8v1.3h0c0.4-0.8,1.4-1.5,2.8-1.5c3,0,3.6,2,3.6,4.5V17.1z"/> </svg> </span> </a> </div> </div> <nav class="post-navigation is-width-constrained " > <a href="https://xgamingserver.com/blog/how-to-generate-valheim-world-seed/" class="nav-item-prev"> <figure class="ct-media-container "><img width="300" height="189" src="https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-300x189.jpg" class="attachment-medium size-medium wp-post-image" alt="Valheim world seed" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-300x189.jpg 300w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-600x379.jpg 600w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-1024x647.jpg 1024w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-768x485.jpg 768w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-370x234.jpg 370w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-270x170.jpg 270w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-570x360.jpg 570w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed-740x467.jpg 740w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/new-world-adding-seed.jpg 1164w" sizes="auto, (max-width: 300px) 100vw, 300px" itemprop="image" style="aspect-ratio: 1/1;" /><svg width="20px" height="15px" viewBox="0 0 20 15" fill="#ffffff"><polygon points="0,7.5 5.5,13 6.4,12.1 2.4,8.1 20,8.1 20,6.9 2.4,6.9 6.4,2.9 5.5,2 "/></svg></figure> <div class="item-content"> <span class="item-label"> Previous <span>Post</span> </span> <span class="item-title ct-hidden-sm"> How to generate Valheim world from seed </span> </div> </a> <a href="https://xgamingserver.com/blog/how-to-make-your-rust-server-private/" class="nav-item-next"> <div class="item-content"> <span class="item-label"> Next <span>Post</span> </span> <span class="item-title ct-hidden-sm"> How to make your Rust server private </span> </div> <figure class="ct-media-container "><img width="300" height="169" src="https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-300x169.jpg" class="attachment-medium size-medium wp-post-image" alt="" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-300x169.jpg 300w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-600x338.jpg 600w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-1024x576.jpg 1024w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-768x432.jpg 768w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-1536x864.jpg 1536w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-370x208.jpg 370w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-270x152.jpg 270w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-570x321.jpg 570w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private-740x416.jpg 740w, https://xgamingserver.com/blog/wp-content/uploads/2021/09/private.jpg 1920w" sizes="auto, (max-width: 300px) 100vw, 300px" itemprop="image" style="aspect-ratio: 1/1;" /><svg width="20px" height="15px" viewBox="0 0 20 15" fill="#ffffff"><polygon points="14.5,2 13.6,2.9 17.6,6.9 0,6.9 0,8.1 17.6,8.1 13.6,12.1 14.5,13 20,7.5 "/></svg></figure> </a> </nav> </article> <aside class="ct-hidden-sm ct-hidden-md" data-type="type-1" id="sidebar" itemtype="https://schema.org/WPSideBar" itemscope="itemscope"><div class="ct-sidebar" data-sticky="sidebar"><div class="ct-widget is-layout-flow widget_block" id="block-1"> <div class="wp-block-group has-palette-color-7-background-color has-background is-layout-constrained wp-container-core-group-is-layout-639b5052 wp-block-group-is-layout-constrained" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"> <h6 class="wp-block-heading widget-title" id="popular-posts" style="margin-top:0;margin-bottom:15px">Popular Posts</h6> <div data-id="e2dc7e58" class="wp-block-blocksy-query"><div class="ct-query-template-default is-layout-flow"><article class="wp-block-post is-layout-flow post-22833 post type-post status-publish format-standard hentry category-rust-server-docs"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:75%"><h2 style="font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.078), 15px);margin-bottom:var(--wp--preset--spacing--30)" class="ct-dynamic-data wp-elements-5bed4645f82294adda3ff6a09db0c891"><a href="https://xgamingserver.com/blog/rust-connection-errors-fix/">Rust Connection Errors & EAC Disconnect: How to Fix (2026)</a></h2> <div style="font-size:13px;text-transform:uppercase" class="ct-dynamic-data wp-elements-4e16c2c8769490db301f491ae1fe66f5">June 16, 2026</div></div> </div> </article><article class="wp-block-post is-layout-flow post-22832 post type-post status-publish format-standard hentry category-rust-server-docs"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:75%"><h2 style="font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.078), 15px);margin-bottom:var(--wp--preset--spacing--30)" class="ct-dynamic-data wp-elements-5bed4645f82294adda3ff6a09db0c891"><a href="https://xgamingserver.com/blog/rust-keeps-crashing-wont-launch-fix/">Rust Keeps Crashing or Won’t Launch? How to Fix It (2026)</a></h2> <div style="font-size:13px;text-transform:uppercase" class="ct-dynamic-data wp-elements-4e16c2c8769490db301f491ae1fe66f5">June 16, 2026</div></div> </div> </article><article class="wp-block-post is-layout-flow post-22831 post type-post status-publish format-standard hentry category-dayz"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:75%"><h2 style="font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.078), 15px);margin-bottom:var(--wp--preset--spacing--30)" class="ct-dynamic-data wp-elements-5bed4645f82294adda3ff6a09db0c891"><a href="https://xgamingserver.com/blog/dayz-best-settings-fps-low-fps-fix/">DayZ Best Settings for FPS: Fix Low FPS & Stutter (2026)</a></h2> <div style="font-size:13px;text-transform:uppercase" class="ct-dynamic-data wp-elements-4e16c2c8769490db301f491ae1fe66f5">June 16, 2026</div></div> </div> </article><article class="wp-block-post is-layout-flow post-22830 post type-post status-publish format-standard hentry category-dayz"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:75%"><h2 style="font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.078), 15px);margin-bottom:var(--wp--preset--spacing--30)" class="ct-dynamic-data wp-elements-5bed4645f82294adda3ff6a09db0c891"><a href="https://xgamingserver.com/blog/dayz-keeps-crashing-wont-launch-fix/">DayZ Keeps Crashing or Won’t Launch? How to Fix It (2026)</a></h2> <div style="font-size:13px;text-transform:uppercase" class="ct-dynamic-data wp-elements-4e16c2c8769490db301f491ae1fe66f5">June 16, 2026</div></div> </div> </article><article class="wp-block-post is-layout-flow post-22829 post type-post status-publish format-standard hentry category-dayz"> <div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex"> <div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div> <div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:75%"><h2 style="font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.078), 15px);margin-bottom:var(--wp--preset--spacing--30)" class="ct-dynamic-data wp-elements-5bed4645f82294adda3ff6a09db0c891"><a href="https://xgamingserver.com/blog/dayz-connection-errors-fix/">DayZ Connection Errors: How to Fix Every Common Error (2026)</a></h2> <div style="font-size:13px;text-transform:uppercase" class="ct-dynamic-data wp-elements-4e16c2c8769490db301f491ae1fe66f5">June 16, 2026</div></div> </div> </article></div></div> </div> </div></div></aside> </div> <div class="ct-related-posts-container" > <div class="ct-container"> <div class="ct-related-posts" > <h3 class="ct-module-title"> Related Posts </h3> <div class="ct-related-posts-items" data-layout="grid"> <article itemscope="itemscope" itemtype="https://schema.org/CreativeWork"><div id="post-22833" class="post-22833 post type-post status-publish format-standard hentry category-rust-server-docs"><h4 class="related-entry-title"><a href="https://xgamingserver.com/blog/rust-connection-errors-fix/" rel="bookmark">Rust Connection Errors & EAC Disconnect: How to Fix (2026)</a></h4><ul class="entry-meta" data-type="simple:slash" data-id="1f397d" ><li class="meta-date" itemprop="datePublished"><time class="ct-meta-element-date" datetime="2026-06-16T07:53:39+00:00">June 16, 2026</time></li></ul></div></article> <article itemscope="itemscope" itemtype="https://schema.org/CreativeWork"><div id="post-22832" class="post-22832 post type-post status-publish format-standard hentry category-rust-server-docs"><h4 class="related-entry-title"><a href="https://xgamingserver.com/blog/rust-keeps-crashing-wont-launch-fix/" rel="bookmark">Rust Keeps Crashing or Won’t Launch? How to Fix It (2026)</a></h4><ul class="entry-meta" data-type="simple:slash" data-id="42a632" ><li class="meta-date" itemprop="datePublished"><time class="ct-meta-element-date" datetime="2026-06-16T07:53:38+00:00">June 16, 2026</time></li></ul></div></article> <article itemscope="itemscope" itemtype="https://schema.org/CreativeWork"><div id="post-21983" class="post-21983 post type-post status-publish format-standard has-post-thumbnail hentry category-rust-server-docs"><a class="ct-media-container" href="https://xgamingserver.com/blog/rust-hunting-food-guide/" aria-label="Rust Hunting & Food Guide: Best Food, Cooking and Animals"><img width="768" height="432" src="https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-768x432.jpg" class="attachment-medium_large size-medium_large wp-post-image" alt="Rust gameplay" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-768x432.jpg 768w, https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-300x169.jpg 300w, https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-1024x576.jpg 1024w, https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-1536x864.jpg 1536w, https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080-600x338.jpg 600w, https://xgamingserver.com/blog/wp-content/uploads/2026/06/ss_e825b087b95e51c3534383cfd75ad6e8038147c3.1920x1080.jpg 1920w" sizes="auto, (max-width: 768px) 100vw, 768px" itemprop="image" style="aspect-ratio: 16/9;" /></a><h4 class="related-entry-title"><a href="https://xgamingserver.com/blog/rust-hunting-food-guide/" rel="bookmark">Rust Hunting & Food Guide: Best Food, Cooking and Animals</a></h4><ul class="entry-meta" data-type="simple:slash" data-id="66e645" ><li class="meta-date" itemprop="datePublished"><time class="ct-meta-element-date" datetime="2026-06-11T07:28:08+00:00">June 11, 2026</time></li></ul></div></article> </div> </div> </div> </div> <section class="ct-trending-block ct-hidden-sm"> <div class="ct-container" data-page="1"> <h3 class="ct-module-title"> Trending now<svg width="13" height="13" viewBox="0 0 13 13" fill="currentColor"><path d="M13 5.8V9c0 .4-.2.6-.5.6s-.5-.2-.5-.5V7.2l-4.3 4.2c-.2.2-.6.2-.8 0L4.6 9.1.9 12.8c-.1.1-.2.2-.4.2s-.3-.1-.4-.2c-.2-.2-.2-.6 0-.8l4.1-4.1c.2-.2.6-.2.8 0l2.3 2.3 3.8-3.8H9.2c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h3.4c.2 0 .3.1.4.2v.2z"/></svg> <span class="ct-slider-arrows"> <span class="ct-arrow-prev"> <svg width="8" height="8" fill="currentColor" viewBox="0 0 8 8"> <path d="M5.05555,8L1.05555,4,5.05555,0l.58667,1.12-2.88,2.88,2.88,2.88-.58667,1.12Z"/> </svg> </span> <span class="ct-arrow-next"> <svg width="8" height="8" fill="currentColor" viewBox="0 0 8 8"> <path d="M2.35778,6.88l2.88-2.88L2.35778,1.12,2.94445,0l4,4-4,4-.58667-1.12Z"/> </svg> </span> </span> </h3> <div class="ct-trending-block-item"><a class="ct-media-container" href="https://xgamingserver.com/blog/how-to-install-plugins-on-your-minecraft-server/" aria-label="How to install Plugins on your Minecraft server"><img width="150" height="84" src="https://xgamingserver.com/blog/wp-content/uploads/2023/03/blog-background-34.png" class="attachment-thumbnail size-thumbnail" alt="" loading="lazy" decoding="async" itemprop="image" style="aspect-ratio: 1/1;" /></a><div class="ct-trending-block-item-content"><ul class="entry-meta"><li class="meta-categories" data-type="simple"><a href="https://xgamingserver.com/blog/category/minecraft-server-docs/" class="ct-post-taxonomy">Minecraft</a>, <a href="https://xgamingserver.com/blog/category/minecraft-server-docs/plugins-mods/" class="ct-post-taxonomy">Plugins & Mods</a></li></ul><a href="https://xgamingserver.com/blog/how-to-install-plugins-on-your-minecraft-server/" class="ct-post-title">How to install Plugins on your Minecraft server</a></div></div><div class="ct-trending-block-item"><a class="ct-media-container" href="https://xgamingserver.com/blog/how-to-install-7dtd-mods-on-a-server/" aria-label="How to install 7 days to die(7d2d) mods on a gaming server"><img width="150" height="150" src="https://xgamingserver.com/blog/wp-content/uploads/2020/09/7days-to-die-mods-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="install mods on 7d2d server" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2020/09/7days-to-die-mods-150x150.jpg 150w, https://xgamingserver.com/blog/wp-content/uploads/2020/09/7days-to-die-mods-300x300.jpg 300w, https://xgamingserver.com/blog/wp-content/uploads/2020/09/7days-to-die-mods-100x100.jpg 100w" sizes="auto, (max-width: 150px) 100vw, 150px" itemprop="image" style="aspect-ratio: 1/1;" /></a><div class="ct-trending-block-item-content"><ul class="entry-meta"><li class="meta-categories" data-type="simple"><a href="https://xgamingserver.com/blog/category/7-days-to-die-server-docs/" class="ct-post-taxonomy">7 Days to Die</a></li></ul><a href="https://xgamingserver.com/blog/how-to-install-7dtd-mods-on-a-server/" class="ct-post-title">How to install 7 days to die(7d2d) mods on a gaming server</a></div></div><div class="ct-trending-block-item"><a class="ct-media-container" href="https://xgamingserver.com/blog/how-to-add-install-mods-to-a-dedicated-valheim-server/" aria-label="How to Add/Install Mods to a Valheim Server | BepInEx|uMod| V+"><img width="150" height="150" src="https://xgamingserver.com/blog/wp-content/uploads/2021/03/Mods-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="Valheim Mods Installation to server" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2021/03/Mods-150x150.jpg 150w, https://xgamingserver.com/blog/wp-content/uploads/2021/03/Mods-300x300.jpg 300w, https://xgamingserver.com/blog/wp-content/uploads/2021/03/Mods-100x100.jpg 100w" sizes="auto, (max-width: 150px) 100vw, 150px" itemprop="image" style="aspect-ratio: 1/1;" /></a><div class="ct-trending-block-item-content"><ul class="entry-meta"><li class="meta-categories" data-type="simple"><a href="https://xgamingserver.com/blog/category/valheim-server-docs/" class="ct-post-taxonomy">Valheim</a></li></ul><a href="https://xgamingserver.com/blog/how-to-add-install-mods-to-a-dedicated-valheim-server/" class="ct-post-title">How to Add/Install Mods to a Valheim Server | BepInEx|uMod| V+</a></div></div><div class="ct-trending-block-item"><a class="ct-media-container" href="https://xgamingserver.com/blog/how-to-upload-a-valheim-game-save-map-on-a-dedicated-server/" aria-label="How to upload a Valheim game world on a dedicated Server"><img width="150" height="150" src="https://xgamingserver.com/blog/wp-content/uploads/2021/03/Valheim_guide___how_to_upload_maps_dedicated_server_use_map_-150x150.png" class="attachment-thumbnail size-thumbnail" alt="Valheim_guide___how_to_upload_maps_dedicated_server_use_map_" loading="lazy" decoding="async" srcset="https://xgamingserver.com/blog/wp-content/uploads/2021/03/Valheim_guide___how_to_upload_maps_dedicated_server_use_map_-150x150.png 150w, https://xgamingserver.com/blog/wp-content/uploads/2021/03/Valheim_guide___how_to_upload_maps_dedicated_server_use_map_-300x300.png 300w, https://xgamingserver.com/blog/wp-content/uploads/2021/03/Valheim_guide___how_to_upload_maps_dedicated_server_use_map_-100x100.png 100w" sizes="auto, (max-width: 150px) 100vw, 150px" itemprop="image" style="aspect-ratio: 1/1;" /></a><div class="ct-trending-block-item-content"><ul class="entry-meta"><li class="meta-categories" data-type="simple"><a href="https://xgamingserver.com/blog/category/valheim-server-docs/" class="ct-post-taxonomy">Valheim</a></li></ul><a href="https://xgamingserver.com/blog/how-to-upload-a-valheim-game-save-map-on-a-dedicated-server/" class="ct-post-title">How to upload a Valheim game world on a dedicated Server</a></div></div> </div> </section> </main> <footer id="footer" class="ct-footer" data-id="type-1" itemscope="" itemtype="https://schema.org/WPFooter"><div data-row="middle"><div class="ct-container"><div data-column="ghost"></div><div data-column="ghost"></div><div data-column="ghost"></div><div data-column="logo"> <div class="site-branding" data-id="logo" itemscope="itemscope" itemtype="https://schema.org/Organization"> <a href="https://xgamingserver.com/blog/" class="site-logo-container" rel="home" itemprop="url" ><img width="319" height="151" src="https://xgamingserver.com/blog/wp-content/uploads/2020/09/logo.svg" class="default-logo wp-post-image" alt="best gaming server hosting" decoding="async" loading="lazy" /></a> </div> </div></div></div><div data-row="bottom"><div class="ct-container"><div data-column="copyright"> <div class="ct-footer-copyright" data-id="copyright"> <p>©2020-2025 XGamingServer - All rights reserved</p></div> </div></div></div></footer></div> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/blog/*"},{"not":{"href_matches":["/blog/wp-*.php","/blog/wp-admin/*","/blog/wp-content/uploads/*","/blog/wp-content/*","/blog/wp-content/plugins/*","/blog/wp-content/themes/blocksy-child/*","/blog/wp-content/themes/blocksy/*","/blog/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script id="wp-importmap" type="importmap"> {"imports":{"@wordpress/route":"https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/modules/route/index.min.js?ver=1765975725978"}} </script> <!-- Meta Pixel Event Code --> <script type='text/javascript'> document.addEventListener( 'wpcf7mailsent', function( event ) { if( "fb_pxl_code" in event.detail.apiResponse){ eval(event.detail.apiResponse.fb_pxl_code); } }, false ); </script> <!-- End Meta Pixel Event Code --> <div id="fb-pxl-ajax-code"></div><script type="application/ld+json">{"@context":"https://schema.org/","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"name":"Home","@id":"https://xgamingserver.com/blog/"}},{"@type":"ListItem","position":2,"item":{"name":"Rust","@id":"https://xgamingserver.com/blog/category/rust-server-docs/"}},{"@type":"ListItem","position":3,"item":{"name":"How to set uMod plugin permission on your Rust server","@id":"https://xgamingserver.com/blog/how-to-set-plugin-permission-on-your-rust-server/"}}]}</script><script type="text/javascript">/* <![CDATA[ */ jQuery(document).ready( function() { jQuery.post( "https://xgamingserver.com/blog/wp-admin/admin-ajax.php", { action : "entry_views", _ajax_nonce : "fa4018c3ae", post_id : 1038 } ); } ); /* ]]> */</script> <script> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <script id="embedpress-plyr-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/plyr.js?ver=1761550121"></script> <script id="embedpress-plyr-polyfilled-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/plyr.polyfilled.js?ver=1761550121"></script> <script id="embedpress-carousel-vendor-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/carousel.min.js?ver=1761550121"></script> <script id="embedpress-glider-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/glider.min.js?ver=1761550121"></script> <script id="embedpress-pdfobject-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/pdfobject.js?ver=1761550121"></script> <script id="embedpress-vimeo-player-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/vimeo-player.js?ver=1761550121"></script> <script id="embedpress-ytiframeapi-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/vendor/ytiframeapi.js?ver=1761550121"></script> <script id="wp-autop-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/autop/index.min.js?ver=1765975716196"></script> <script id="wp-blob-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/blob/index.min.js?ver=1765975716208"></script> <script id="wp-block-serialization-default-parser-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/block-serialization-default-parser/index.min.js?ver=1765975716208"></script> <script id="wp-hooks-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/hooks/index.min.js?ver=1765975716208"></script> <script id="wp-deprecated-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/deprecated/index.min.js?ver=1765975718647"></script> <script id="wp-dom-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/dom/index.min.js?ver=1765975718278"></script> <script id="wp-escape-html-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/escape-html/index.min.js?ver=1765975716208"></script> <script id="wp-element-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/element/index.min.js?ver=1765975718605"></script> <script id="wp-is-shallow-equal-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/is-shallow-equal/index.min.js?ver=1765975716208"></script> <script id="wp-i18n-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/i18n/index.min.js?ver=1765975718652"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="wp-keycodes-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/keycodes/index.min.js?ver=1765975719152"></script> <script id="wp-priority-queue-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/priority-queue/index.min.js?ver=1765975718013"></script> <script id="wp-undo-manager-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/undo-manager/index.min.js?ver=1765975718426"></script> <script id="wp-compose-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/compose/index.min.js?ver=1765975719245"></script> <script id="wp-private-apis-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/private-apis/index.min.js?ver=1765975726017"></script> <script id="wp-redux-routine-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/redux-routine/index.min.js?ver=1765975716219"></script> <script id="wp-data-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/data/index.min.js?ver=1765975719235"></script> <script id="wp-data-js-after"> ( function() { var userId = 0; var storageKey = "WP_DATA_USER_" + userId; wp.data .use( wp.data.plugins.persistence, { storageKey: storageKey } ); } )(); //# sourceURL=wp-data-js-after </script> <script id="wp-html-entities-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/html-entities/index.min.js?ver=1765975718014"></script> <script id="wp-dom-ready-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/dom-ready/index.min.js?ver=1765975716208"></script> <script id="wp-a11y-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/a11y/index.min.js?ver=1765975718656"></script> <script id="wp-rich-text-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/rich-text/index.min.js?ver=1765975720317"></script> <script id="wp-shortcode-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/shortcode/index.min.js?ver=1765975716196"></script> <script id="wp-warning-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/warning/index.min.js?ver=1765975716225"></script> <script id="wp-blocks-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/blocks/index.min.js?ver=1765975719759"></script> <script id="wp-url-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/url/index.min.js?ver=1765975718208"></script> <script id="wp-api-fetch-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/api-fetch/index.min.js?ver=1765975718660"></script> <script id="wp-api-fetch-js-after"> wp.apiFetch.use( wp.apiFetch.createRootURLMiddleware( "https://xgamingserver.com/blog/wp-json/" ) ); wp.apiFetch.nonceMiddleware = wp.apiFetch.createNonceMiddleware( "4a90d48374" ); wp.apiFetch.use( wp.apiFetch.nonceMiddleware ); wp.apiFetch.use( wp.apiFetch.mediaUploadMiddleware ); wp.apiFetch.nonceEndpoint = "https://xgamingserver.com/blog/wp-admin/admin-ajax.php?action=rest-nonce"; //# sourceURL=wp-api-fetch-js-after </script> <script id="moment-js" src="https://c0.wp.com/c/7.0/wp-includes/js/dist/vendor/moment.min.js"></script> <script id="moment-js-after"> moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":1},"longDateFormat":{"LT":"g:i a","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} ); //# sourceURL=moment-js-after </script> <script id="wp-date-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/date/index.min.js?ver=1765975719316"></script> <script id="wp-date-js-after"> wp.date.setSettings( {"l10n":{"locale":"en_US","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"meridiem":{"am":"am","pm":"pm","AM":"AM","PM":"PM"},"relative":{"future":"%s from now","past":"%s ago","s":"a second","ss":"%d seconds","m":"a minute","mm":"%d minutes","h":"an hour","hh":"%d hours","d":"a day","dd":"%d days","M":"a month","MM":"%d months","y":"a year","yy":"%d years"},"startOfWeek":1},"formats":{"time":"g:i a","date":"F j, Y","datetime":"F j, Y g:i a","datetimeAbbreviated":"M j, Y g:i a"},"timezone":{"offset":0,"offsetFormatted":"0","string":"","abbr":""}} ); //# sourceURL=wp-date-js-after </script> <script id="wp-primitives-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/primitives/index.min.js?ver=1765975719222"></script> <script id="wp-components-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/components/index.min.js?ver=1765975721766"></script> <script id="wp-keyboard-shortcuts-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/keyboard-shortcuts/index.min.js?ver=1765975719236"></script> <script id="wp-commands-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/commands/index.min.js?ver=1765975721756"></script> <script id="wp-notices-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/notices/index.min.js?ver=1765975719152"></script> <script id="wp-preferences-persistence-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/preferences-persistence/index.min.js?ver=1765975718652"></script> <script id="wp-preferences-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/preferences/index.min.js?ver=1765975720550"></script> <script id="wp-preferences-js-after"> ( function() { var serverData = false; var userId = "0"; var persistenceLayer = wp.preferencesPersistence.__unstableCreatePersistenceLayer( serverData, userId ); var preferencesStore = wp.preferences.store; wp.data.dispatch( preferencesStore ).setPersistenceLayer( persistenceLayer ); } ) (); //# sourceURL=wp-preferences-js-after </script> <script id="wp-style-engine-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/style-engine/index.min.js?ver=1765975716207"></script> <script id="wp-token-list-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/token-list/index.min.js?ver=1765975716230"></script> <script id="wp-block-editor-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/block-editor/index.min.js?ver=1765975723586"></script> <script id="wp-core-data-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/core-data/index.min.js?ver=1765975720361"></script> <script id="wp-media-utils-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/media-utils/index.min.js?ver=1765975722870"></script> <script id="wp-patterns-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/patterns/index.min.js?ver=1765975721422"></script> <script id="wp-plugins-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/plugins/index.min.js?ver=1765975719692"></script> <script id="wp-server-side-render-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/server-side-render/index.min.js?ver=1765975719476"></script> <script id="wp-viewport-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/viewport/index.min.js?ver=1765975719236"></script> <script id="wp-wordcount-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/wordcount/index.min.js?ver=1765975716231"></script> <script id="wp-editor-js" src="https://xgamingserver.com/blog/wp-content/plugins/gutenberg/build/scripts/editor/index.min.js?ver=1765975723246"></script> <script id="wp-editor-js-after"> Object.assign( window.wp.editor, window.wp.oldEditor ); //# sourceURL=wp-editor-js-after </script> <script id="embedpress-blocks-editor-js-extra"> var embedpressGutenbergData = {"wistiaLabels":"{\"watch_from_beginning\":\"Watch from the beginning\",\"skip_to_where_you_left_off\":\"Skip to where you left off\",\"you_have_watched_it_before\":\"It looks like you've watched\u003Cbr \\/\u003Epart of this video before!\"}","wistiaOptions":null,"poweredBy":"1","isProVersion":"","twitchHost":"xgamingserver.com","siteUrl":"https://xgamingserver.com/blog","activeBlocks":{"google-docs-block":"google-docs-block","document":"document","embedpress":"embedpress","embedpress-pdf":"embedpress-pdf","google-sheets-block":"google-sheets-block","google-slides-block":"google-slides-block","youtube-block":"youtube-block","google-forms-block":"google-forms-block","google-drawings-block":"google-drawings-block","google-maps-block":"google-maps-block","twitch-block":"twitch-block","wistia-block":"wistia-block","vimeo-block":"vimeo-block","embedpress-calendar":"embedpress-calendar"},"documentCta":[false],"pdfRenderer":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php?action=get_viewer","isProPluginActive":"","ajaxUrl":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","sourceNonce":"998247d394","canUploadMedia":"","assetsUrl":"https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/","staticUrl":"https://xgamingserver.com/blog/wp-content/plugins/embedpress/static/","iframeWidth":"","iframeHeight":"","pdfCustomColor":"","brandingLogos":{"youtube":"","vimeo":"","wistia":"","twitch":"","dailymotion":""},"userRoles":[{"value":"administrator","label":"Administrator"},{"value":"editor","label":"Editor"},{"value":"author","label":"Author"},{"value":"contributor","label":"Contributor"},{"value":"subscriber","label":"Subscriber"},{"value":"aioseo_manager","label":"SEO Manager"},{"value":"aioseo_editor","label":"SEO Editor"},{"value":"customer","label":"Customer"},{"value":"shop_manager","label":"Shop manager"},{"value":"wpseo_manager","label":"SEO Manager"},{"value":"wpseo_editor","label":"SEO Editor"}],"currentUser":{},"feedbackSubmitted":"","ratingHelpDisabled":"1","wistia_labels":"{\"watch_from_beginning\":\"Watch from the beginning\",\"skip_to_where_you_left_off\":\"Skip to where you left off\",\"you_have_watched_it_before\":\"It looks like you've watched\u003Cbr \\/\u003Epart of this video before!\"}","wisita_options":null,"embedpress_powered_by":"1","embedpress_pro":"","twitch_host":"xgamingserver.com","site_url":"https://xgamingserver.com/blog","rest_url":"https://xgamingserver.com/blog/wp-json/","embedpress_rest_url":"https://xgamingserver.com/blog/wp-json/embedpress/v1/oembed/embedpress","active_blocks":{"google-docs-block":"google-docs-block","document":"document","embedpress":"embedpress","embedpress-pdf":"embedpress-pdf","google-sheets-block":"google-sheets-block","google-slides-block":"google-slides-block","youtube-block":"youtube-block","google-forms-block":"google-forms-block","google-drawings-block":"google-drawings-block","google-maps-block":"google-maps-block","twitch-block":"twitch-block","wistia-block":"wistia-block","vimeo-block":"vimeo-block","embedpress-calendar":"embedpress-calendar"},"document_cta":[false],"pdf_renderer":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php?action=get_viewer","is_pro_plugin_active":"","ajaxurl":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","source_nonce":"998247d394","can_upload_media":"","permalink_structure":"/%postname%/","EMBEDPRESS_URL_ASSETS":"https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/","iframe_width":"","iframe_height":"","pdf_custom_color":"","youtube_brand_logo_url":"","vimeo_brand_logo_url":"","wistia_brand_logo_url":"","twitch_brand_logo_url":"","dailymotion_brand_logo_url":"","user_roles":[{"value":"administrator","label":"Administrator"},{"value":"editor","label":"Editor"},{"value":"author","label":"Author"},{"value":"contributor","label":"Contributor"},{"value":"subscriber","label":"Subscriber"},{"value":"aioseo_manager","label":"SEO Manager"},{"value":"aioseo_editor","label":"SEO Editor"},{"value":"customer","label":"Customer"},{"value":"shop_manager","label":"Shop manager"},{"value":"wpseo_manager","label":"SEO Manager"},{"value":"wpseo_editor","label":"SEO Editor"}],"current_user":{},"is_embedpress_feedback_submited":"","turn_off_rating_help":"1"}; //# sourceURL=embedpress-blocks-editor-js-extra </script> <script type="module" id="embedpress-blocks-editor-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/blocks.build.js?ver=1761550121"></script> <script id="embedpress-analytics-tracker-js-extra"> var embedpress_analytics = {"ajax_url":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","rest_url":"https://xgamingserver.com/blog/wp-json/embedpress/v1/analytics/","nonce":"4a90d48374","session_id":"ep-sess-1782345149-XeOEKxw4","page_url":"https://xgamingserver.com/blog/how-to-set-plugin-permission-on-your-rust-server/","post_id":"1038","tracking_enabled":"1","original_referrer":"","has_embedded_content":""}; //# sourceURL=embedpress-analytics-tracker-js-extra </script> <script id="embedpress-analytics-tracker-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/analytics-tracker.js?ver=1761550121"></script> <script id="embedpress-carousel-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/carousel.js?ver=1761550121"></script> <script id="embedpress-documents-viewer-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/documents-viewer-script.js?ver=1761550121"></script> <script id="embedpress-front-js-extra"> var embedpressFrontendData = {"ajaxurl":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","isProPluginActive":"","nonce":"d79abeca38"}; //# sourceURL=embedpress-front-js-extra </script> <script id="embedpress-front-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/front.js?ver=1761550121"></script> <script id="embedpress-gallery-justify-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/gallery-justify.js?ver=1761550121"></script> <script id="embedpress-init-plyr-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/initplyr.js?ver=1761550121"></script> <script id="embedpress-instafeed-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/instafeed.js?ver=1761550121"></script> <script id="embedpress-ads-js-extra"> var embedpressFrontendData = {"ajaxurl":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","isProPluginActive":"","nonce":"d79abeca38"}; //# sourceURL=embedpress-ads-js-extra </script> <script id="embedpress-ads-js" src="https://xgamingserver.com/blog/wp-content/plugins/embedpress/assets/js/sponsored.js?ver=1761550121"></script> <script id="ht_toc-script-js-js" src="https://xgamingserver.com/blog/wp-content/plugins/heroic-table-of-contents/dist/script.min.js?ver=1761550141"></script> <script id="mks_shortcodes_js-js" src="https://xgamingserver.com/blog/wp-content/plugins/meks-flexible-shortcodes/js/main.js?ver=1"></script> <script id="woocommerce-js-extra"> var woocommerce_params = {"ajax_url":"/blog/wp-admin/admin-ajax.php","wc_ajax_url":"/blog/?wc-ajax=%%endpoint%%","i18n_password_show":"Show password","i18n_password_hide":"Hide password"}; //# sourceURL=woocommerce-js-extra </script> <script data-wp-strategy="defer" id="woocommerce-js" src="https://c0.wp.com/p/woocommerce/10.6.1/assets/js/frontend/woocommerce.min.js"></script> <script id="ct-scripts-js-extra"> var ct_localizations = {"ajax_url":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","public_url":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/","rest_url":"https://xgamingserver.com/blog/wp-json/","search_url":"https://xgamingserver.com/blog/search/QUERY_STRING/","show_more_text":"Show more","more_text":"More","search_live_results":"Search results","search_live_no_results":"No results","search_live_results_closed":"Search results closed.","search_live_no_result":"No results","search_live_one_result":"You got %s result. Please press Tab to select it.","search_live_many_results":"You got %s results. Please press Tab to select one.","search_live_stock_status_texts":{"instock":"In stock","outofstock":"Out of stock"},"clipboard_copied":"Copied!","clipboard_failed":"Failed to Copy","expand_submenu":"Expand dropdown menu","collapse_submenu":"Collapse dropdown menu","dynamic_js_chunks":[{"id":"blocksy_pro_micro_popups","selector":".ct-popup","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/static/bundle/micro-popups.js?ver=2.1.38","version":"2.1.38"},{"id":"blocksy_dark_mode","selector":".ct-color-switch","trigger":"click","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/extensions/color-mode-switch/static/bundle/main.js?ver=2.1.38","version":"2.1.38"},{"id":"blocksy_dark_mode","selector":".ct-color-switch","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/extensions/color-mode-switch/static/bundle/main.js?ver=2.1.38","version":"2.1.38"},{"id":"blocksy_mega_menu","selector":".menu .ct-ajax-pending","trigger":"slight-mousemove","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/extensions/mega-menu/static/bundle/main.js?ver=2.1.38","global_data":[{"var":"blocksyMegaMenu","data":{"persistence_key":"blocksy:mega-menu:a563dd"}}],"version":"2.1.38"},{"id":"blocksy_ext_trending","selector":".ct-trending-block [class*=\"ct-arrow\"]","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/extensions/trending/static/bundle/main.js?ver=2.1.38","trigger":"click","version":"2.1.38"},{"id":"blocksy_ext_woo_extra_countdown","selector":".product .ct-product-sale-countdown","trigger":[{"trigger":"slight-mousemove","selector":".product .ct-product-sale-countdown [data-date]"},{"selector":".ct-product-sale-countdown","trigger":"jquery-event","events":["found_variation","reset_data"]}],"url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/extensions/woocommerce-extra/static/bundle/product-sale-countdown.js?ver=2.1.38","global_data":[{"var":"blc_woo_extra_product_sale_countdown","data":{"days_label":"Days","hours_label":"Hours","min_label":"Min","sec_label":"Sec"}}],"version":"2.1.38"},{"id":"blocksy_sticky_header","selector":"header [data-sticky]","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/static/bundle/sticky.js?ver=2.1.38","version":"2.1.38"}],"dynamic_styles":{"lazy_load":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/non-critical-styles.min.css?ver=2.1.44","search_lazy":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/non-critical-search-styles.min.css?ver=2.1.44","back_to_top":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/back-to-top.min.css?ver=2.1.44"},"dynamic_styles_selectors":[{"selector":".ct-header-cart, #woo-cart-panel","url":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/cart-header-element-lazy.min.css?ver=2.1.44"},{"selector":".flexy","url":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/flexy.min.css?ver=2.1.44"},{"selector":".ct-pagination","url":"https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/pagination.min.css?ver=2.1.44"},{"selector":".ct-media-container[data-media-id], .ct-dynamic-media[data-media-id]","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/framework/premium/static/bundle/video-lazy.min.css?ver=2.1.44"},{"selector":"#account-modal","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/static/bundle/header-account-modal-lazy.min.css?ver=2.1.38"},{"selector":".ct-header-account","url":"https://xgamingserver.com/blog/wp-content/plugins/blocksy-companion/static/bundle/header-account-dropdown-lazy.min.css?ver=2.1.38"}],"login_generic_error_msg":"An unexpected error occurred. Please try again later."}; //# sourceURL=ct-scripts-js-extra </script> <script id="ct-scripts-js" src="https://xgamingserver.com/blog/wp-content/themes/blocksy/static/bundle/main.js?ver=2.1.44"></script> <script data-wp-strategy="defer" defer id="woocommerce-analytics-client-js" src="https://xgamingserver.com/blog/wp-content/plugins/jetpack/jetpack_vendor/automattic/woocommerce-analytics/build/woocommerce-analytics-client.js?minify=false&ver=75adc3c1e2933e2c8c6a"></script> <script id="googlesitekit-consent-mode-js" src="https://xgamingserver.com/blog/wp-content/plugins/google-site-kit/dist/assets/js/googlesitekit-consent-mode-bc2e26cfa69fcd4a8261.js"></script> <script id="wd-asl-ajaxsearchlite-js-before"> window.ASL = typeof window.ASL !== 'undefined' ? window.ASL : {}; window.ASL.wp_rocket_exception = "DOMContentLoaded"; window.ASL.ajaxurl = "https:\/\/xgamingserver.com\/blog\/wp-content\/plugins\/ajax-search-lite\/ajax_search.php"; window.ASL.backend_ajaxurl = "https:\/\/xgamingserver.com\/blog\/wp-admin\/admin-ajax.php"; window.ASL.asl_url = "https:\/\/xgamingserver.com\/blog\/wp-content\/plugins\/ajax-search-lite\/"; window.ASL.detect_ajax = 1; window.ASL.media_query = 4780; window.ASL.version = 4780; window.ASL.pageHTML = ""; window.ASL.additional_scripts = []; window.ASL.script_async_load = false; window.ASL.init_only_in_viewport = true; window.ASL.font_url = "https:\/\/xgamingserver.com\/blog\/wp-content\/plugins\/ajax-search-lite\/css\/fonts\/icons2.woff2"; window.ASL.highlight = {"enabled":false,"data":[]}; window.ASL.analytics = {"method":0,"tracking_id":"","string":"?ajax_search={asl_term}","event":{"focus":{"active":true,"action":"focus","category":"ASL","label":"Input focus","value":"1"},"search_start":{"active":false,"action":"search_start","category":"ASL","label":"Phrase: {phrase}","value":"1"},"search_end":{"active":true,"action":"search_end","category":"ASL","label":"{phrase} | {results_count}","value":"1"},"magnifier":{"active":true,"action":"magnifier","category":"ASL","label":"Magnifier clicked","value":"1"},"return":{"active":true,"action":"return","category":"ASL","label":"Return button pressed","value":"1"},"facet_change":{"active":false,"action":"facet_change","category":"ASL","label":"{option_label} | {option_value}","value":"1"},"result_click":{"active":true,"action":"result_click","category":"ASL","label":"{result_title} | {result_url}","value":"1"}}}; //# sourceURL=wd-asl-ajaxsearchlite-js-before </script> <script id="wd-asl-ajaxsearchlite-js" src="https://xgamingserver.com/blog/wp-content/plugins/ajax-search-lite/js/min/plugin/merged/asl.min.js?ver=4780"></script> <script id="sourcebuster-js-js" src="https://c0.wp.com/p/woocommerce/10.6.1/assets/js/sourcebuster/sourcebuster.min.js"></script> <script id="wc-order-attribution-js-extra"> var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https://xgamingserver.com/blog/wp-admin/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}}; //# sourceURL=wc-order-attribution-js-extra </script> <script id="wc-order-attribution-js" src="https://c0.wp.com/p/woocommerce/10.6.1/assets/js/frontend/order-attribution.min.js"></script> <script id="wp-consent-api-js-extra"> var consent_api = {"consent_type":"","waitfor_consent_hook":"","cookie_expiration":"30","cookie_prefix":"wp_consent"}; //# sourceURL=wp-consent-api-js-extra </script> <script id="wp-consent-api-js" src="https://xgamingserver.com/blog/wp-content/plugins/wp-consent-api/assets/js/wp-consent-api.min.js?ver=1.0.8"></script> <script id="wp-consent-api-integration-js-before"> window.wc_order_attribution.params.consentCategory = "marketing"; //# sourceURL=wp-consent-api-integration-js-before </script> <script id="wp-consent-api-integration-js" src="https://c0.wp.com/p/woocommerce/10.6.1/assets/js/frontend/wp-consent-api-integration.min.js"></script> <script id="googlesitekit-events-provider-woocommerce-js-before"> window._googlesitekit.wcdata = window._googlesitekit.wcdata || {}; window._googlesitekit.wcdata.products = []; window._googlesitekit.wcdata.add_to_cart = null; window._googlesitekit.wcdata.currency = "USD"; window._googlesitekit.wcdata.eventsToTrack = ["add_to_cart","purchase"]; //# sourceURL=googlesitekit-events-provider-woocommerce-js-before </script> <script id="googlesitekit-events-provider-woocommerce-js" src="https://xgamingserver.com/blog/wp-content/plugins/google-site-kit/dist/assets/js/googlesitekit-events-provider-woocommerce-56777fd664fb7392edc2.js" defer></script> <script id="jetpack-stats-js-before"> _stq = window._stq || []; _stq.push([ "view", {"v":"ext","blog":"182360381","post":"1038","tz":"0","srv":"xgamingserver.com","j":"1:15.4"} ]); _stq.push([ "clickTrackerInit", "182360381", "1038" ]); //# sourceURL=jetpack-stats-js-before </script> <script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202626.js"></script> <script> (function(){ try{ var fig = document.querySelector('.single-post .ct-featured-image'); var hero = document.querySelector('.single-post .hero-section'); if(!fig || !hero) return; // Only merge when the image directly precedes the title hero. var wrap = document.createElement('div'); wrap.className = 'xg-post-hero'; fig.parentNode.insertBefore(wrap, fig); wrap.appendChild(fig); wrap.appendChild(hero); }catch(e){} })(); </script><script> (function(){ try{ var move=function(){ var card=document.querySelector('.single-post .xg-host-card'); var sb=document.querySelector('.single-post .ct-sidebar'); if(!card||!sb) return; var wide=window.matchMedia('(min-width:1000px)').matches; if(wide && card.parentNode!==sb){ sb.insertBefore(card, sb.firstChild); } }; move(); }catch(e){} })(); </script> <script type="text/javascript"> (function() { window.wcAnalytics = window.wcAnalytics || {}; const wcAnalytics = window.wcAnalytics; // Set the assets URL for webpack to find the split assets. wcAnalytics.assets_url = 'https://xgamingserver.com/blog/wp-content/plugins/jetpack/jetpack_vendor/automattic/woocommerce-analytics/src/../build/'; // Set the REST API tracking endpoint URL. wcAnalytics.trackEndpoint = 'https://xgamingserver.com/blog/wp-json/woocommerce-analytics/v1/track'; // Set common properties for all events. wcAnalytics.commonProps = {"blog_id":182360381,"store_id":"f854a20e-69a2-4850-bcf8-1977b760a138","ui":null,"url":"https://xgamingserver.com/blog","woo_version":"10.6.1","wp_version":"7.0","store_admin":0,"device":"desktop","store_currency":"USD","timezone":"+00:00","is_guest":1}; // Set the event queue. wcAnalytics.eventQueue = []; // Features. wcAnalytics.features = { ch: false, sessionTracking: false, proxy: false, }; wcAnalytics.breadcrumbs = ["Rust","How to set uMod plugin permission on your Rust server"]; // Page context flags. wcAnalytics.pages = { isAccountPage: false, isCart: false, }; })(); </script> </body> </html> <!-- Page supported by LiteSpeed Cache 7.6.2 on 2026-06-24 23:52:29 -->