└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Cracking the server 2 | 1. Download Rust dedicated server files 3 | 2. Navigate to RustDedicated_Data\Managed 4 | 3. Drag n' Drop your Assembly-CSharp.dll into a .NET decompiler (dnSpy, etc) 5 | 4. Open namespace 'Rust' 6 | 5. Open class 'Defines' 7 | 6. Edit 'Defines' class and change the appID to '480u' 8 | 9 | It should look like this, after it's done: 10 | 11 | public static uint appID = 480u; 12 | 13 | 14 | 15 | 16 | 17 | # Cracking the client 18 | 19 | 1. Download Rust (client files) 20 | 2. Navigate to RustClient_Data\Managed 21 | 3. Drag n' Drop your Assembly-CSharp.dll into a .NET decompiler (dnSpy, etc) 22 | 4. Open namespace 'Rust' 23 | 5. Open class 'Defines' 24 | 6. Edit 'Defines' class and change the appID to '480u' 25 | 26 | It should look like this, after it's done: 27 | 28 | public static uint appID = 480u; 29 | --------------------------------------------------------------------------------