DynamicPVP

Create temporary PVP zones around SupplyDrops, LockedCrates, APC and/or Heli

Total Downloads: 1,398 - First Release: Dec 18, 2017 - Last Update: Jul 16, 2018

5/5, 13 likes
  1. Very good plugin, the only one that I manage to operate with TruePVE, i even managed to block the .json to have the zonepvp always in the same place everytime i want. So this what i create a PVPIsland on my server with you'r plugin.
    Thank you again,
     
  2. I took heli around launch site and pvp zone was formed there.
    Entering massage, leaving massage, everything was working well.
    And then I put timed explosive on tank while pvp zone was active. But it didnt hurt tank at all.
    So I guess that players can hurt players but players can't hurt NPCs in pvp zone.
    I want that players can hurt NPCs even in pvp zone.
    Even now, someone may be wasting their explosives somewhere.
    Would you check this out for me please?
    [DOUBLEPOST=1519229797][/DOUBLEPOST]One more thing.
    Sometimes two pvp zones overlap.
    When player leave one pvp zone, leaving msg is sent even if they are still in pvp zone(another pvp zone).
    That make players confused about if they are in pvp zone or not.
    I'm not a developer. I can't adjust this by myself.
    Please help me.
     
    Last edited by a moderator: Feb 21, 2018
  3. I will look into item 1...
    As for item 2... that is all handled within ZoneManager and is NORMAL for any zones that would overlap. I do not see any way around that..
    -CatMeat


     
  4. @Dea7hFerado : Known issue. You can not damage the tank (or heli... i think) while it is in an active pvp zone. This is a side-effect of using `undestr true` for the pvp zone creation, so that it cannot be used as a raid tool. I am working with other devs to determine if this can be resolved. In the meantime... wait for the pvp zone to terminate.
    [DOUBLEPOST=1521211333][/DOUBLEPOST]ATTENTION!
    Expect DynamicPVP version 2.0.0 sometime this weekend! It may require that you delete your current configuration. Please read the update notes before installing. Major configuration changes have occurred.
     
  5. I apologize for the delay.. looking for a few testers. Please send me a DM.
     
  6. how do you accomplished it.??
     
  7. This should be accomplished directly with ZoneManager. There is no reason to use DynamicPVP for a permanent PVP Zone.
     
  8. Hi !

    I'm admin on a PVE server and we use DynamicPVP. Thanks a lot for the plugin, very usefull since you made it ^^
    I want protect looting corpses when player kill another player, so I take a plugin for that. I don't want to protect the backpack when it appears, for dead player can come back and find his stuff. My problem is players can hurt corpses for accelerate backpack spawn. I want to add "nogather" flag on the DynamicPVP area, can I do that ? And so how ?
    Thanks a lot for reading my poor english...
     
  9. Hmm, I'll tell ya what... I will add a config file setting for "extra zone flags" on the next update. I do not recommend making unique changes to the plugin, I cant support them. But... If you cant stop yourself... You could modify the DynamicPVP.cs file, if you are comfortable with c#. In the method called "CreateDynZone" there is a list called "DynArgs". Simply add the command/value you want. For example, here is the list with your request added:

    Code:
                    List<string> DynArgs = new List<string>
                    {
                        "name",
                        "DynamicPVP",
                        "radius",
                        _radius.ToString(),
                        "enter_message",
                        "Entering a PVP area!",
                        "leave_message",
                        "Leaving a PVP area.",
                        "undestr",
                        "true",
                        "notp",
                        blockTeleport.ToString(),
                        "nogather",
                        "true"
                    };
    
     
  10. Thanks man, I will waiting for your next update !
    Great job with the plugin, I love it and players too !
     
  11. Please update for new heli crate....
     
  12. CatMeat updated DynamicPVP with a new update entry:

    1.2.4


    [DOUBLEPOST=1522967715][/DOUBLEPOST]
    Update what??? Wrong plugin by chance?
     
  13. no. this new locked 15 min crates need to have a pvp zone around them
     
  14. AH... yes... will work on it and test... could be a little bit before the proper hooks are created in Oxide.
     
  15. WIP: Crates should be easy. the hooks appear to be there. The ch47 itself may have to come later.

    VERSION 2 IS IN TESTING NOW.
    THIS WILL REQUIRE A NEW CONFIG FILE.
    YOU MUST ERASE THE OLD ONE PRIOR TO INSTALLING
     
  16. CatMeat updated DynamicPVP with a new update entry:

    2.0.0

     
  17. CatMeat updated DynamicPVP with a new update entry:

    2.1.0


    [DOUBLEPOST=1523223670][/DOUBLEPOST]
    @JiNGo
     
  18. Thanks a lot man ! You're the best !!!
     
  19. Hi,

    I put this in config file :
    Code:
      },
      "General": {
        "blockTeleport": true,
        "configVersion": "2.1.0",
        "debugEnabled": true,
        "extraZoneFlags": "nogather",
        "msgEnter": "Tu entres dans une zone PVP !",
        "msgLeave": "Tu sors de la zone PVP.",
        "pluginEnabled": true
      },
    
    But the nogather flag is not active...
    In the console, it says :

    [DynamicPVP] _ZoneFlags: name,DyanmicPVP,radius,20,enter_message,"Tu entres dans une zone PVP !",leave_message,"Tu sors de la zone PVP.",undestr,true,notp,True,nogather

    So I think in the console it must be "nogather,true", but I don't know how to do this... can you help me ?
    Thx
     
  20. As stated on the Overview Tab:
    dynpvp extraZoneFlags <string> - Extra flags for zone creation (ie: "nogather true")
    so... it would be...

    "extraZoneFlags": "nogather true",