1. Hello,

    Is it possible to change item display name and description for rust?

    and...

    Is it possible to change or move Rust original GUI?
    Reason
    I'm using InfoPanel and I did some GUI work to make the panel looks amazing,
    Screenshot

    But "Bleeding" and pickup "Items" will appear behind the InfoPanel, like this:
    Screenshot

    If you got any hints let me know, haven't been researching it for to long on my own and really just want to know if its even possible.

    Thanks!
     
  2. Wulf

    Wulf Community Admin

    The item names are stored client-side, so the server wouldn't really have a way to change it that I am aware of.

    The GUI is also fixed client-side, the server can't modify it.
     
  3. FeelsBadMan,

    Thanks for your answer.

    Helpful as always! :)
     
  4. Seen plenty servers with custom item names so I'd guess it's possible... Blueprints revived has custom item names...
     
  5. That notification that pops up there uses a command. You can use a hook such as OnPlayerCommand() and block it.

    Code:
    private object OnPlayerCommand(ConsoleSystem.Arg arg)
            {
                if (arg.GetString(0).ToLower().StartsWith("note.inv"))
                    return true;
                return null;
            }
    [DOUBLEPOST=1502764145][/DOUBLEPOST]Not sure how you'd counteract the building blocked, coldness etc though. Also, you need to consider UI scales when using rust cui. Turn your UI scale in client settings to 1.0, or 0.0 etc and the plugin based UI will not adjust...