1. Code:
    11:34 AM [Debug] Adding plugin to compilation: ROMGUI
    11:34 AM [Debug] Probably done preparing compilation: ROMGUI
    11:34 AM [Debug] Done preparing compilation: ROMGUI
    11:34 AM [Error] ROMGUI plugin failed to compile!
    11:34 AM [Error] ROMGUI.cs(237,129): error CS1503: Argument `#4' cannot convert `string' expression to type `Facepunch.ObjectList?'
    Something change that I need to change ? :D
     
  2. Wulf

    Wulf Community Admin

  3. Or more simply said replace all:
    Code:
    CommunityEntity.ServerInstance.ClientRPCEx(new Network.SendInfo() { connection = player.net.connection }, null, "AddUI", "Element");
    with
    CommunityEntity.ServerInstance.ClientRPCEx(new Network.SendInfo { connection = player.net.connection }, null, "AddUI", new Facepunch.ObjectList("Element"));andCommunityEntity.ServerInstance.ClientRPCEx(new Network.SendInfo() { connection = player.net.connection }, null, "DestroyUI", "Element");
    with
    CommunityEntity.ServerInstance.ClientRPCEx(new Network.SendInfo {connection = player.net.connection}, null, "DestroyUI", new Facepunch.ObjectList("Element"));
    Got a bit confused when I needed to update my old stuffs since I cant keep up with Rust developments :/