1. So... I see that Oxide got new hooks and maybe now we can block SHIFT+P and SHIFT+L (also immediantly demoslish) from authlevel1? :D
     
  2. Wulf

    Wulf Community Admin

    Block the commands behind them with Command Block. "spectator" is the command I believe for SHIFT+P.
     
  3. Code:
    function PLUGIN:OnBuildingBlockDoImmediateDemolish( block, msg )
      if( msg.player.net.connection.authLevel == 1 ) then
       return false
      end
    end
    
    for SLIFT+L not sure we can yet
    [DOUBLEPOST=1426951013][/DOUBLEPOST]spectator is something else it's not SHIFT + L
     
  4. Is there something we can use to block mods from spawning items yet?
     
  5. Any plugin of this?
    Oxide 2.0
    NOT IS COMMAND BLOCK!
     
  6. Don't have any plugin for this, what you can do is, create a group at oxide and put the permissions that you want for yours admins and mods after put they there
     
  7. How I give permission for the player you can type status in f1?
     
  8. oxide.grant user/group "username" "permission"
     
  9. oxide.grant user "name" can'command'
     
  10. Wulf

    Wulf Community Admin

    That is not valid. What are you referring to that uses this?

    What is wrong with the Commandblock plugin? It blocks the commands per your thread request.
     
  11. @DraB
    I think drab meant oxide.grant user "user" "can.faillikedrab"

    Never know tho :D
     
  12. Commandblock plugin doesn't block command with "." exemple: rcon.login , inv.give
     
  13. Wulf

    Wulf Community Admin

    It should, else they are handling it wrong. I'd recommend reporting it to the plugin author.
     
  14. i tried, but i could not block commands with arguments included, but I wrote this in the description of the plugin!
     
  15. Wulf

    Wulf Community Admin

    Right now you are only checking for "global" commands. You'd need to prefix the command with the class if it isn't global.

    This is how I handled it with Oxide 1.18:
    Code:
        if (arg.Class and arg.Class ~= "global") then
            command = arg.Class .. "." .. arg.Function
        else
            command = arg.Function
        end
     
  16. Ah thanks i will try!
    [DOUBLEPOST=1458752003][/DOUBLEPOST]Plugin already updated!
     
  17. Hi,

    Is there a plugin available which stops OWNERID's from kicking and banning?
    Can someone make one?

    Thanks
     
  18. Wulf

    Wulf Community Admin

    You can use the CommandBlock plugin if you want to prevent usage of those commands by admin.
     
  19. @Wulf Perfect!

    Does this continue to allow RustAdmin/Rusty RCON commands to be sent?