NoEscape

Moved

Total Downloads: 12,045 - First Release: Oct 23, 2015 - Last Update: Apr 12, 2018

5/5, 33 likes
  1. Calytic

    Calytic Community Admin Community Mod

    Calytic updated NoEscape with a new update entry:

    0.3.8

     
  2. Code:
    [Oxide] 15:57 [Error] Failed to call hook 'OnStructureRepair' on plugin 'NoEscape v0.3.8' (InvalidCastException: Cannot cast from source type to destination type.)
    [Oxide] 15:57 [Debug]   at Oxide.Plugins.NoEscape.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00000] in <filename unknown>:0
      at Oxide.Plugins.CSharpPlugin.InvokeMethod (HookMethod method, System.Object[] args) [0x00000] in <filename unknown>:0
      at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00000] in <filename unknown>:0
      at Oxide.Core.Plugins.Plugin.CallHook (System.String name, System.Object[] args) [0x00000] in <filename unknown>:0
     
    Last edited by a moderator: Sep 18, 2016
  3. Calytic

    Calytic Community Admin Community Mod

  4. Make server restart
     
  5. Thank you!
     
  6. THANK YOU VERY MUCH ! Ihavent test it now but i think it work i test it tomorrow.
    thank you for your fast help!you the best!
     
  7. Hey, I ask for config someone who is well positioned raid block, so that it was impossible to teleport, use the remove, build and batter items. Unfortunately, I set but something does not work :( Thanks
     
  8. you must set the permission from overview:
    • noescape.raid.tpblock
      noescape.combat.tpblock
      Blocks teleportation (/home /tpr)

    • noescape.raid.removeblock
      noescape.combat.removeblock
      Blocks remover tool (/remove)

    • noescape.raid.bgradeblock
      noescape.combat.bgradeblock
      Blocks automatic building grades (/bgrade)

    • noescape.raid.buildblock
      noescape.combat.buildblock
      Blocks regular building
    • and so on.....search for permission you need.
    • example : grant group default noescape.raid.tpblock ...grant group admin noescape.raid.tpblock and so on for all groups you have on server...want only for players make all whit default.
     
  9. If you blow up the fences, barricades and gates, blocked not started. Bug?
     
  10. any problems with plugin after update?
    because yestarday all works today only combat.
     
  11. Code:
    (20:22:38) | [Oxide] 18:11 [Error] Failed to call hook 'OnEntityTakeDamage' on plugin 'NoEscape v0.3.81' (NullReferenceException: Object reference not set to an instance of an object)
    (20:22:38) | [Oxide] 18:11 [Debug] at Oxide.Plugins.NoEscape.StructureAttack (.BaseEntity targetEntity, .BaseEntity sourceEntity, System.String weapon, Vector3 hitPosition) [0x00000] in <filename unknown>:0
    at Oxide.Plugins.NoEscape.OnEntityTakeDamage (.BaseCombatEntity entity, .HitInfo hitInfo) [0x00000] in <filename unknown>:0
    at Oxide.Plugins.NoEscape.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00000] in <filename unknown>:0
    at Oxide.Plugins.CSharpPlugin.InvokeMethod (HookMethod method, System.Object[] args) [0x00000] in <filename unknown>:0
    at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00000] in <filename unknown>:0
    at Oxide.Core.Plugins.Plugin.CallHook (System.String name, System.Object[] args) [0x00000] in <filename unknown>:0
     
    Last edited by a moderator: Sep 18, 2016
  12. Calytic

    Calytic Community Admin Community Mod

    How can I reproduce this error?
     
  13. this error after I start to restart the server.
    [​IMG]
     
    Last edited by a moderator: Sep 18, 2016
  14. How to eliminate the explosive cartridges?
     
  15. I've set permissons and it's working but some people in the clan dont get blocked.
    Here is my config.

    {
    "blockAll": false,
    "blockOnDamage": true,
    "blockOnDestroy": true,
    "cacheMinutes": 1.0,
    "clanCheck": false,
    "clanShare": true,
    "combatBlock": false,
    "combatBlockNotify": false,
    "combatDuration": 180.0,
    "combatOnHitPlayer": true,
    "combatOnTakeDamage": true,
    "cupboardShare": true,
    "damageTypes": [
    "Explosion",
    "Heat"
    ],
    "friendCheck": true,
    "friendShare": true,
    "ownerBlock": true,
    "raidBlock": true,
    "raidBlockNotify": true,
    "raidDistance": 100.0,
    "raidDuration": 300.0,
    "raiderBlock": false,
    "raiderClanShare": false,
    "raiderFriendShare": false,
    "unblockOnDeath": true,
    "unblockOnRespawn": true,
    "unblockOnWakeup": false,
    "useZoneManager": false,
    "VERSION": "0.3.81",
    "zoneEnter": true,
    "zoneLeave": false
    }

    That looks to be all set, but I tested it and only certain clan members would get blocked and they would all be standing next to each other, can someone tell me where I've gone wrong? or isit a plugin issue?
     
  16. Calytic

    Calytic Community Admin Community Mod

    The clan sharing is somewhat unreliable as of late. There isn't anything I can do about it unfortunately.

    The most reliable kinds of blocking are "blockAll" and "useZoneManager"
     
  17. How to make If a player moves to cancel the nteleport ?
     
  18. High external walls, gates etc don't trigger the raid block.
     
  19. Players reporting, that Raidblock is not working, only Combatlog is working...
     
  20. Code:
           bool ShouldBlockEscape(string target, string source, List<string> sourceMembers = null)
            {
                if (target == source)
                {
                    if (ownerBlock && raiderBlock && !clanCheck && !friendCheck)
                    {
                        return true;
                    }
                    return false;
                }
    @Calytic please explain this code: if (ownerBlock && raiderBlock && !clanCheck && !friendCheck)
    cos with config like:
    "blockAll": true,
    "ownerBlock": true,
    "raiderBlock": true,
    "clanCheck": true,
    "friendCheck": true,
    will never block raid initiator... is this correct behavior?