1. Is there any tool that allow easy management of Oxide Group System? like creating groups, adding or removing person from group?
    If not, how oxide group system is stored?It can be changed by 3rd party software?
     
  2. From what I understand here is some basic information however @Wulf may have to confirm this ;)

    Groups should be stored in server/my_server_identity/oxide/data/oxide.groups.data, now with your question I am not sure if this file can be edited via a 3rd party software but I can imagine if you tried hard enough it could. Or just make a plugin that uses the current oxide group commands.

    Now for where the player group is stored that should be in server/my_server_identity/oxide/data/oxide.users.data, now this goes the same as before I am not sure about 3rd party software. However these files will look something like:


    Screenshot

    Screenshot
     
  3. Wulf

    Wulf Community Admin

    Oxide provides commands for pretty much everything needed for managing the groups and permissions. Trying to edit them directly is not supported.
     
  4. Well maybe i can get some success by creating a software that connect to webrcon and parse the output from the oxide built in group management commands.
     
  5. Why not just use the commands?
     
  6. Where can I see a list of commands for managing groups in the oxide?
     
  7. Because to use the commands i will need to open the game or connect over TS on the server machine.
    And with one app i can install on my smartphone and manage Oxide groups almost anywhere(except where theres not mobile internet).
     
  8. You could just use an RCON app.
     
  9. For mobile devices have?
     
  10. And why type commands if i can build my own app that will parse the command output and send commands with the actions that i need to manage oxide?
     
  11. I'm just saying that it's likely that there's some RCON apps floating around already, while creating your own RCON client as app (for a proper UI you'd need to implement a player list and controls for managing groups and permissions) might be a lot of effort.
    Groups and permissions normally only need to be managed when you're installing new plugins as well, and for something like VIP, an automation plugin makes more sense.
     
  12. you can see everyone who's in a group with show group "groupname" it also lists the permissions that group has.
     
  13. Using Bootstrap and Javascript its really easy(at least for me) create a WebApp that can run on PC,Android,iOS(MobileSafari supports WebSockets since iOS 9.3.3), so almost anywhere i can open the WebApp, btw Facepunch already did 90% of the job with their WebRcon Client that is hosted on GitHub

    Basically i just need to fork and add support for Oxide commands on a page.