1. Sorry about that. I see kits and economy errors in the log but I didn't see any errors regarding players list. Attached are the logs from this morning. I tried /who a couple of times, only to get the unknown command error again.
     

    Attached Files:

  2. Code:
    (05:05:24) | [Oxide] 5:05 AM [Warning] Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(26,31): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(27,36): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(28,42): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(29,40): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(30,32): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\serverdata\oxide\plugins\PlayerList.cs(31,36): error CS1061: Type `Oxide.Core.Configuration.DynamicConfigFile' does not contain a definition for `Get' and no extension method `Get' of type `Oxide.Core.Configuration.DynamicConfigFile' could be found. Are you missing an assembly reference?Z:\home\teamdtcutk\Steam\steamapps\common\rustlegacytest\rust_server_Data\Managed\Oxide.Core.dll (Location of the symbol related to previous error)
     
    Last edited by a moderator: Apr 22, 2015
  3. Wulf

    Wulf Community Admin

    Update Oxide.
     
  4. oh yes sorry
    [DOUBLEPOST=1429674920][/DOUBLEPOST]with update no error ! i am Sorry i work in my serveur since 21h {france) i tired oxide 2 integration in my debian
    was a making head because x bug if two rust legacy turn in same time! the solution :
    That start in only 1! Can iI ask you for advice if i have a problem during my instalation of rust experimental ! fuc... xvfb ! if you you have script for run serveur in linux debian I'm interested even if we have to make a start stop startnoscreen ! [good day /bonne journée]
     
  5. Can you make it possible to only list number of players in the config file and not the players itself? :)

    Also can you add the text so people can see when they type help that there's a /players command ? for this plugin http://oxidemod.org/threads/helptext.7805/#post-80135
     
    Last edited by a moderator: Apr 22, 2015
  6. It's called admin mode... It's already done. I won't be supporting help text plugins as a solution needs added to the core of oxide.
     
  7. Add FLAG/Permission possibility

    change if (adminOnly && netUser.CanAdmin())

    to


    if (adminOnly && (netUser.CanAdmin() || permission.UserHasPermission(netUser.playerClient.userID.ToString(), "canplayerlist")))

    and before chatName = Config.Get<string>("Settings", "ChatName");

    add

    if (!permission.PermissionExists("canplayerlist")) permission.RegisterPermission("canplayerlist", this);
     
  8. If you want to add it to your helptext until it is a core part of Oxide, you can edit the manual helptext entries, or in the PlayerList.cs:

    After:
    Code:
                    rust.SendChatMessage(netUser, chatName, sb.ToString().TrimEnd(' ', ','));
                }
            }
    Add:
    Code:
            void SendHelpText(NetUser netuser)
            {
                SendReply(netuser, "Players Online: /players to see who is online");
            }
     
  9. Wulf

    Wulf Community Admin

    Or just add it is a custom help text entry in HelpText's config, which is what it's meant for. ;)
     
  10. Ya which was the first part I mentioned, just giving him options ;)
     
  11. Couple things we've noticed. Once in awhile it will list a person two times (one at the end of the line, then the same name first in the next line down) and I'm not sure or not, but only admins can use this command? A few people have said they can't use the command.
     
  12. Wulf

    Wulf Community Admin

    Set "AdminMode" to false in the config.
     
  13. Thanks
     
  14. Any way I can make it say for example "40 people online" "6 donors online"
     
  15. Sweet ill look into it
     
  16. So I do not know if it is possible to place the
    /Players to see the amount of player, admin and mod
    EX : {0}/50 Players Online , 1 admin Online, 3 mod Online
    it's possible ?
     
  17. @Gute the idea is cool but you have to remember cheaters will feed off this. If they do /players and see 0 admins and 0 mods they will be safe to cheat. Just something to keep in your head.