Visual Cupboard Radius

Allows Authorized Players to Visually See Building Privildge Radius of Owned Tool Cupboards

Total Downloads: 5,642 - First Release: Jul 20, 2016 - Last Update: Nov 10, 2017

5/5, 25 likes
  1. When you fix plugin, I suggest adding on place tc hook so that it automatically calls addsphere. would be nice to automatically have sphere show when you have the appropriate permissions
     
  2. another suggestion would be to use the TC auth list instead of ownerID. this would allow clans to use the plugin
     
  3. He removed this feature on his last update. Would be cool too see it return with a permission node though! =]
     
  4. Colon Blow updated Visual Cupboard Radius with a new update entry:

    1.0.10

     
  5. Works. Nice.
    I suggest making sphere visible to clan or going by auth list.
    I'm trying to think of other plugins that do this off the top of my head.. the SearchLights mod does it by clan. it gets the owner clan and player clan and if they are the same then voila. trying to think of an auth list plugin
     
  6. for some odd reason this mod has never shown me all of my cabinets on either the /showsphere or /showsphereall commands.
     
  7. yeah rust changed something a few updates back and it broke the plugin
     
  8. Code:
        Line 3945: 14:04 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 590ms [GARBAGE COLLECT]
        Line 3947: 14:04 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 577ms [GARBAGE COLLECT]
        Line 3957: 14:04 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 589ms [GARBAGE COLLECT]
        Line 3961: 14:04 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 643ms [GARBAGE COLLECT]
        Line 3963: 14:05 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 557ms [GARBAGE COLLECT]
        Line 3964: 14:05 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 577ms [GARBAGE COLLECT]
        Line 3966: 14:05 [Warning] Calling 'CanNetworkTo' on 'VisualCupboard v1.0.8' took 569ms [GARBAGE COLLECT]
    Code:
    (19:08:03) | Protocol: 2022.152.1
    Build Date: 10/05/2017 15:24:20
    Unity Version: 2017.1.1f1
    Changeset: 23156
    Branch: main
    Oxide Version: 2.0.3520
     
  9. Same for me
     
  10. Yeah, sadly I had to find out the hard way. Q_Q

    Need this. :O
     
  11. Calling 'CanNetworkTo' on 'VisualCupboard v1.0.10' took 967ms [GARBAGE COLLECT]

    Help !
     
  12. This isn't an error, it's just information. But still, the plugin does not seem up2date, unless somebody experienced something different.
     
  13. Not sure but a lot of lag are when the plug is enabled, but same with problem Radar, Vanish, etc...
     
  14. Well... and when rust:IO initializes the map on a 6k server, it takes about 10-12 minutes for the whole server to start. Nothing new. :p
     
  15. 12mn not on my servers but 1-2mn yes ^^
     
  16. /showsphere wont work! /showsphereadmin works fine !
    Any idea how to fix it? Default config , didnt change anything !
     
  17. at me the same
     
  18. if you want the command just to be /showsphere jump to the cs file find line 173 and change the chat command from

    Code:
    [ChatCommand("showsphereadmin")]    <--------------------change
                void cmdChatShowSphereAdmin(BasePlayer player, string command)
            {
                if (isAllowed(player, "visualcupboard.admin"))
                {
                    AddSphere(player, true, true);
                    return;
                }
                else if (!isAllowed(player, "visualcupboard.admin"))
                {
                    SendReply(player, lang.GetMessage("notallowed", this));
                     return;
                }
            }
    to

    Code:
    [ChatCommand("showsphere")]   <------------------change
                void cmdChatShowSphereAdmin(BasePlayer player, string command)
            {
                if (isAllowed(player, "visualcupboard.admin"))
                {
                    AddSphere(player, true, true);
                    return;
                }
                else if (!isAllowed(player, "visualcupboard.admin"))
                {
                    SendReply(player, lang.GetMessage("notallowed", this));
                     return;
                }
            }
    and line 161 change
    Code:
    [ChatCommand("showsphere")]   <------------change
                void cmdChatShowSphere(BasePlayer player, string command)
            {  
                AddSphere(player, false, false);
            }
    to

    Code:
    [ChatCommand("show")]    <-------- change
                void cmdChatShowSphere(BasePlayer player, string command)
            {  
                AddSphere(player, false, false);
            }



    this is a quick temp fix but will work dont forget to backup the cs file and reload the plugin after. it works the same way just diffrent commands unless you want to give your players the perm to use it for there selfs which i dont really see a point to as it will just make it so they can raid easyer lol as they will see the tc radius
     
  19. Ill try to have the official fix for this out later today :)
     
  20. Colon Blow updated Visual Cupboard Radius with a new update entry:

    1.0.11