EntityOwner

Moved

Total Downloads: 7,293 - First Release: Jul 23, 2015 - Last Update: Dec 8, 2017

5/5, 25 likes
  1. Calytic

    Calytic Community Admin Community Mod

    Calytic updated EntityOwner with a new update entry:

    1.0.51

     
  2. Calytic

    Calytic Community Admin Community Mod

    Calytic updated EntityOwner with a new update entry:

    1.0.52


    [DOUBLEPOST=1449587909][/DOUBLEPOST]Minor problem where fixed version would wipe ownership. Do not install 1.0.5, 1.0.51.

    1.0.52 is safe
     
  3. Calytic

    Calytic Community Admin Community Mod

    Calytic updated EntityOwner with a new update entry:

    1.0.53

     
  4. What do these do? :)
    [DOUBLEPOST=1450202244][/DOUBLEPOST]I take it clearprofile deletes the entry from db/db filename ..so just plugin.call("ClearPofile(steamid)") ?
     
  5. Calytic

    Calytic Community Admin Community Mod

    Clearing an ownership profile is like /unown, it will remove all ownership on a per-player basis (instead of just per-building)

    GetProfileConstructions and GetProfileDeployables will give a list of ID strings for all of the constructions/deployables that player owns. The following method is used to generate the IDs

    Code:
    public static string GetEntityID(BaseEntity entity)
    {
        Vector3 position = entity.transform.position;
        return "x" + position.x + "y" + position.y + "z" + position.z;
    }
    
     
  6. Im using folder=true so if i understand right, ClearProfile will delete the file where the data is stored for that user right?
     
  7. Calytic

    Calytic Community Admin Community Mod

    No, it will only delete the contents of the file after the next EntityOwner save
     
  8. Ok but the file size will then be zero so i can easily manually delete?
     
  9. Calytic

    Calytic Community Admin Community Mod

    Yea, there is no way AFAIK to delete files from oxide.
     
  10. Code:
     [Oxide] 2:41 PM [Error] Failed to call hook 'cmdProd2' on plugin 'EntityOwner v1.0.53' (NullReferenceException: Object reference not set to an instance of an object)
    on /prod2 block and /prod2 cupboard etc...
     
  11. Calytic

    Calytic Community Admin Community Mod

    Calytic updated EntityOwner with a new update entry:

    1.0.6

     
  12. Does the plugin keep track of twig buildings?
     
  13. Calytic

    Calytic Community Admin Community Mod

    Yes it does
     
  14. I deleted my config and reloaded, problem went away. Sorry
     
    Last edited by a moderator: Dec 22, 2015
  15. Not sure if this plugin is the cause, so I posted in the teleport plugin forum too. Once ownership has been transferred to someone else, doing /sethome does not work. I waited for several mins after it gave the message and had the player try again and it still didn't work. This has been happening for awhile.
     
  16. Calytic

    Calytic Community Admin Community Mod

    Are you using a modified version of m-Teleportation?
     
  17. Hi! I want to allow players to remove any entity that they, or their friends have placed. Currently the Remover tool only allows you to remove structures you have placed (when the Rust IO and Building Owners are set to true) but not things such as furnaces, doors or storage boxes.

    I saw a post in the Remover Tool discussion that EntityOwner can be used with Remover tool but am not having any luck finding the instructions on HOW to actually do this, can someone PLEASE fill me in?

    EDIT: Figured it out
     
    Last edited by a moderator: Dec 28, 2015
  18. Remover tool work with this plugin?

    And if a guy with high population server read this, i would know his opinion of this plugin, if this plugin cause lags.
     
  19. Yep it does and I haven't noticed much of a lag increase from adding the plugin. Around 100 players average
     
  20. Calytic

    Calytic Community Admin Community Mod

    Look back in this thread to find some modified code for RemoverTool. I can't give you a tutorial on how to implement it right now but I know a number of server owners have modified RemoverTool with success.