If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

Notes:Rust (Legacy)

From The Cutting Room Floor
Jump to navigation Jump to search

This page contains notes for the game Rust (Legacy).

Top Last Servers

1. Legion Rust (legionrust.com)

2. Rusted.cz (rusted.cz)

3. RustLegacy.eu (http://www.rustlegacy.eu/)

4. Rustuj.cz (https://rustuj.cz/)

Try to rework Rust Legacy

https://www.youtube.com/watch?v=Oy4hSTvSgXk

Modding / Programming

There are many Modders / Programmers who incredible editing game.

There is a program that can decompile AssemblyCSharp.dll and edit codes.

Decompile.png


Spawning Object to Game

You can easy spawn object ingame with one Script.


Script: Object.Instantiate(Bundling.Load<GameObject>(PrefabPath), new Vector3(X, Y, Z), Quaternion.Euler(X, Y, Z));


You can find Prefab Path in editorbundle.txt


RPC

What is RPC? https://cs.wikipedia.org/wiki/Remote_procedure_call

RPC is communication between Server and Client


Example

Server SEND "SendClientCommand"

Client GET "CL_ConsoleCommand"


Server SEND:

RPCServer.png


Client GET:

RPCClient.png