07-10-2020, 05:17 PM
(This post was last modified: 07-11-2020, 05:47 PM by SickProdigy.)
Players are given several default controls for basic movements like jumping, sprinting, and crouching, along with number keys for certain hotbar items. However, those new to the game may find it hard to quickly respond to sudden events. Thankfully, Rust allows players to set keybinds that allow the automation of various tasks from holding down a key to even crafting items.
Steps to add keybinds
One can then edit the file using a program like Notepad++, instead of directly entering it through the console. This can also be used to delete keybinds from the game, instead of going into console and entering:
Flashlight when ADS
Some keybinds will include “;” – which is used to combine two actions together using one key. Others may use a “+” sign, making it so that the keybind is not permanently activated and only when the key is pressed.
In addition, the “Auto-Craft Bandage” keybind can also be changed to craft something else entirely using the same format of:
Players can find the item id of their respective items by going here.
Steps to add keybinds
- Press “F1”
- Type the following commands in the console
- Save the keybinds afterwards by entering: writecfg
One can then edit the file using a program like Notepad++, instead of directly entering it through the console. This can also be used to delete keybinds from the game, instead of going into console and entering:
Code:
bind <key> ""
Flashlight when ADS
- bind Mouse1 +lighttoggle;+attack2
- Aiming down sight will also turn on flashlight/laser
- bind c duck
- Press C to crouch permanently
- Press CTRL to cancel
- bind q forward;sprint
- Press Q to auto-run
- Use Shift + W to cancel
- bind 0 forward;sprint;jump
- Press 0 to auto-swim
- Press Space + Shift + W to cancel
- bind z attack;duck
- Press Z to crouch permanently and auto-attack / auto-mine
- Press CTRL + Left Click to cancel
- bind z +attack;+duck
- Press Z to attack/mine and crouch
- bind n fov 90bind m fov 60
- Pressing N or M will change the player’s FOV
- bind comma "audio.game 1"
- (Normal audio level)
bind period "audio.game 2.5" - (Increased audio level, useful for listening to player movement)
bind minus "audio.game 0" - (Turns off game audio, only voice chat is on)
- bind u chat.say "Nice Try"\
- Pressing U will put everything within the quotes into chat
- bind 7 "craft.add -2072273936 1"
- Press 7 to auto-craft 1 bandage
Some keybinds will include “;” – which is used to combine two actions together using one key. Others may use a “+” sign, making it so that the keybind is not permanently activated and only when the key is pressed.
In addition, the “Auto-Craft Bandage” keybind can also be changed to craft something else entirely using the same format of:
Code:
bind <key> "craft.add <item id> <number>"