1. Hello, I would like to ask why it does not plugin RemoveAAA. It is a fact that came out new updates with updating games? Because I have a plugin in the game but I can not get permissions
     
    Last edited by a moderator: Feb 12, 2017
  2. I do have it working with a small addition and one change to allow non admin players the ability to spawn with F1 , item list.
    @Wulf you will have to double check to make sure that way I did it :) lol.
    I could post it up?

    @ Tuntenfisch not sure if you plan a update or anything?
     
  3. Wulf

    Wulf Community Admin

    That's up to @Tuntenfisch. I'll likely post a plugin purely for removing the AAA though, without the item permissions as that's all some seem to want. I gave an example of this before, but I believe Tuntenfisch would like to keep the item command handling in it.
     
  4. Cool. yeah, no problem. I really only use the F1 item list spawn for players feature.
    But a lot of admins do only want the removal of AAA. would be great to have basic alternative just for that.
     
  5. Wulf

    Wulf Community Admin

    This plugin should probable be renamed to Item Spawn or Admin Spawn honestly. :p
     
  6. How can I give items to sleepers?
     
  7. Trying: grant group default removeaaa.giveid
    but non-admins and moderators still can't use the in game console item list to give themselves items.
    (creative server)
     
  8. NOP

    NOP

    Hmm...I think as of recently, the rust players client stopped sending the "giveid" server command -- unless they are truly an admin.

    For example, I used to use FauxAdmin which gives their player the IsAdmin flag-- and RemoveAAA in combination with the FauxAdmin plugin, players could give themselvs things from the admin item panel.

    This no longer works.....I setup some logging in OnServerCommand...and discovered "giveid" is never sent to the server from the client....

    Anyone know how this can be adressed?!
     
    Last edited by a moderator: Feb 25, 2017
  9. I have actually Fixed this plugin, if it would be ok for me to upload the fixed code here @Wulf ?
     
  10. Wulf

    Wulf Community Admin

    What exactly is broken with it? If it's broken, it's up to the author to fix. There are working alternatives if you'd like to hide notices only.
     
  11. It just needs new args, from the latest rust updates. The last time this Plugin was updated was "Last Update: Feb 3, 2017"
     
  12. The plugin still works perfectly fine for me.
     
  13. Works fine for me aswell.
     
  14. From what i can tell, The admin portion of removing AAA works perfect and all aspects of a Admin using the give commands or using F1 to spawn items.

    But the added feature of non-admins to spawn stuff with permissions stopped working. They do not have access to any give commands including F1 item spawn (giveid command) anymore. even with permissions set correctly.
     
    Last edited by a moderator: Mar 2, 2017
  15. Obviously it is broken or I am just dumb. I had to change arg.cmd.isAdmin to arg.cmd.Admin and arg.cmd.name to arg.cmd.Name.
    Soo Am I wrong in doing so ?
    http://i.imgur.com/HTEG94N.png
     
  16. Pretty sure the latest version has those changed you made already applied.
     
  17. True that. I tested it briefly and turns out the OnServerCommand(...) hook isn't even being called for commands that are intended for admin use only in vanilla Rust if you aren't an admin (give commands). Not entirely sure if there's a different hook I could use.
     
  18. Wulf

    Wulf Community Admin

    It seems to be triggering just fine in my tests for the inventory commands send by the F1 item menu. Both my DevTest and Logger plugins pick up the usage of those commands via OnServerCommand. Returning true in the hook also blocked them.

    Edit: Ah, I see... non-admin. Not sure why it wouldn't get to that point, but should be something that would need to be fixed in the hook most likely. The other option is you can simply replace the commands with your own by using the same names.
     
    Last edited: Mar 2, 2017
  19. NOP

    NOP

    "The other option is you can simply replace the commands with your own by using the same names."

    What cha mean?

    I would like to address the issue on my server where FauxAdmin players cannot give themselvs items anymore. FauxAdmin is a plugin that assigns the IsAdmin flag to players, so they can noclip, and godmode, and (used) to beable to give themselvs items. However, now their clients dont send "giveid" to the server anymore, atleast Im unable to log it with Oxide OnServerCommand hook

    However, I do see "giveid" logged for true server-configured admin players (not from FauxAdmin).

    I wonder if this is an Oxide thing, or a Rust thing that changed?
     
    Last edited by a moderator: Mar 3, 2017
  20. Wulf

    Wulf Community Admin

    The change is from Rust's update a few weeks back with command handling. The inventory commands have a Client and Admin set only them, so they are never processed on the server if the player is not admin. By command replacement, I mean replacing the original commands with new ones in the plugin with the same name.