1. Where you guys dev/edit plugins? What programs?
     
  2. For C# plugins the most popular choice is probably Visual Studio.
    Other than that, a couple of people also use Sublime Text, vim or Notepad++ for working on C# or non-C# plugins.
     
  3. But for example, how coders searchs the correct coords for example in this? I mean where do they take the coords? Is it there any generator for this?

    Code:
     #region UI Handling
            void DrawKDRWindow(BasePlayer player)
            {
                UIObject ui = new UIObject();
                string panel = ui.AddPanel("panel1", 0.0132382892057026, 0.0285714285714286, 0.958248472505092, 0.874285714285714, new UIColor(0.85, 0.85, 0.85, 0.6), true, "Overlay");
                ui.AddText("list", 0.0626992561105207, 0.250544662309368, 0.83740701381509, 0.697167755991285, new UIColor(0, 0, 1, 1), GetTopList(), 20, panel, 7);
                ui.AddText("label4", 0.390148777895855, 0.163398692810458, 0.18384697130712, 0.0610021786492375, new UIColor(0, 0, 0, 1), "K/D Ratio", 24, panel, 7);
                ui.AddText("label3", 0.223358129649309, 0.163398692810458, 0.188097768331562, 0.0610021786492375, new UIColor(0, 0, 0, 1), "Deaths", 24, panel, 7);
                ui.AddText("label2", 0.0541976620616366, 0.163398692810458, 0.16365568544102, 0.0610021786492375, new UIColor(0, 0, 0, 1), "Kills", 24, panel, 7);
                ui.AddText("label1", 0.552444208289054, 0.163398692810458, 0.197662061636557, 0.0610021786492375, new UIColor(0, 0, 0, 1), "Player Name", 24, panel, 7);
                string close = ui.AddButton("button1", 0.872476089266737, 0.0479302832244009, 0.0924548352816153, 0.0915032679738562, new UIColor(1, 0, 0, 1), "", panel, panel);
                ui.AddText("button1_Text", 0, 0, 1, 1, new UIColor(0.93, 23, 23, 0.9), "Close", 18, close, 3);
     
  4. Wulf

    Wulf Community Admin

    The CUI (community user interface) in Rust uses a min x, max x, min y, max y anchor setup. It takes a good bit of tweaking and testing to get what you want to look right, and even then it won't look the same at all resolutions.
     
  5. Is it there any API updated for Oxide?
     
  6. Wulf

    Wulf Community Admin

    The Rust CUI is not from Oxide, it's from Rust.
     
  7. I mean any API from OXIDE, cuz the actual is outdated
     
  8. Wulf

    Wulf Community Admin

    What is outdated about it?
     
  9. OnExplosiveDropped - for example
     
  10. Wulf

    Wulf Community Admin

    That was recently added and hasn't been updated on the old Docs yet.
     
  11. Where can i search the new recently added?
     
  12. Wulf

    Wulf Community Admin