Rust Wiki

Revision Difference

hitman/wiki#568040

<title>SIGMA clan - 10x server binds</title>⤶ # SIGMA Clan — 10x Server Binds & Commands⤶ <cat>Play.General</cat>⤶ <title>SIGMA clan useful server binds</title>⤶ ⤶ # SIGMA clan - useful server binds⤶ > A comprehensive wiki of Rust console commands and key binds. > Paste any command into the **Rust F1 Console**. Binds are permanent until you remove them or restart with a fresh config. --- ⤶ ## Tested Servers⤶ ⤶ These binds and commands were tested and confirmed working on:⤶ ⤶ - **Official Vanilla Servers**⤶ - **[Modded] Templar 10x Servers**⤶ ⤶ ---⤶ ## Table of Contents - [Quick Start: Per-Session Settings](#quick-start-per-session-settings) - [Tested Servers](#tested-servers) - [Quick Start: Per-Session Settings](#quick-start-per-session-settings)⤶ - [Movement Binds](#movement-binds) - [Combat & Aiming Binds](#combat--aiming-binds) - [Inventory & Slot Binds](#inventory--slot-binds) - [Function Key Binds (F2–F8)](#function-key-binds-f2f8) - [Graphics & Viewmodel](#graphics--viewmodel) - [Performance & Quality of Life](#performance--quality-of-life) - [Crafting Macros](#crafting-macros) --- ## Quick Start: Per-Session Settings Run these **every time you enter the game** for the best performance. Copy the single line below to paste them all at once. ``` client.headlerp_inertia false; gc.buffer 4096; client.headlerp 5; gc.incremental_milliseconds 1; physics.steps 60; ``` | Command | What it does | | --- | --- | | `client.headlerp_inertia false` | Removes head-turn inertia | | `gc.buffer 4096` | Increases garbage-collection buffer | | `client.headlerp 5` | Reduces neck-turn delay | | `gc.incremental_milliseconds 1` | Fixes shooting lag | | `physics.steps 60` | Higher jump height | --- ## Movement Binds **Auto-run** — press `Q` ``` bind q forward;sprint ``` **Jump out of small holes / tight stair corners** (auto-crouch) ``` input.autocrouch true ``` --- ## Combat & Aiming Binds **Auto-attack / Auto-mine** (hold to hit automatically) — press `P` ``` bind p attack;duck ``` **Right-click aim with auto gun-zoom** — hold `Mouse1` ``` bind mouse1 "+attack2;+fov 90;fov 60" ``` **Crouch-aim sensitivity toggle** — hold `Left Ctrl + Mouse1` ``` bind [leftcontrol+mouse1] "+input.sensitivity 1.6 ;input.sensitivity 0.8" ``` **Base sensitivity** ``` input.sensitivity 0.65 ``` --- ## Inventory & Slot Binds **Toggle between inventory slot 1 and slot 2** — press `Mouse3` ``` bind mouse3 ~+slot1;+slot2 ``` **Quick-equip slot 6** — press `Mouse3` ``` bind mouse3 +slot6 ``` --- ## Function Key Binds (F2–F8) Combat log and teleport/utility shortcuts. **Combat damage log** — press `F2` ``` bind f2 consoletoggle;clear;combatlog_outgoing; chat.add 0 0 "Opening combat damage log" ``` **Spawn minicopter** — press `F3` ``` bind f3 chat.say "/mm"; chat.add 0 0 "Spawning minicopter" ``` **Cancel all teleport requests** — press `F4` ``` bind f4 chat.say "/tpc"; chat.add 0 0 "Cancelling all teleport request" ``` **Teleport home (main stash base)** — press `F5` ``` bind f5 chat.say "/home 1"; chat.add 0 0 "Teleporting to main stash base" ``` **Teleport home (PVP base 1)** — press `F6` ``` bind f6 chat.say "/home 2"; chat.add 0 0 "Teleporting to PVP base 1" ``` **Teleport home (PVP base 2)** — press `F7` ``` bind f7 chat.say "/home 3"; chat.add 0 0 "Teleporting to PVP base 2" ``` **Teleport home (PVP base 3)** — press `F8` ``` bind f8 chat.say "/home 4"; chat.add 0 0 "Teleporting to PVP base 3" ``` --- ## Graphics & Viewmodel **Gun viewmodel arm length** (disable FOV-based scaling) ``` graphics.vm_fov_scale false ``` **Switch viewmodel to left hand** ``` graphics.vm_horizontal_flip "true" ``` **Camera zoom** — press `C` ``` bind c "+graphics.fov 90;graphics.fov 70" ``` --- ## Performance & Quality of Life **Remove grass** (better visibility + FPS) ``` grass.distance 0 ``` **Increase item pickup radius** ``` client.lookatradius 20 ``` --- ## Crafting Macros **Craft full kit** — press `J` ``` bind j craft.add -194953424 1;craft.add 1110385766 1;craft.add 1850456855 1;craft.add 1545779598 1;craft.add 1712070256 10;craft.add 1712070256 10;craft.add 1712070256 10;craft.add 1712070256 30;craft.add 442289265 1;craft.add -132516482 1;craft.add 2005491391 1;craft.add 1079279582 10;craft.add 1079279582 24;craft.add 1373240771 8;craft.add -699558439 1; craft.add 254522515 12;craft.add 143803535 5;craft.add -1549739227 1;craft.add -593892112 5;chat.add 0 0 "Crafting full kit" ``` --- ## Removing a Bind To clear any bind, type `unbind` followed by the key. Example: ``` unbind q ```