1. Request: Any chance you can integrated this with Reneb's Zone Manager so that the notp will stop warps too?
     
  2. I think reneb blocks every tp plugin.. did u test it.
     
  3. I did test it. I have a zone with notp - /tpr and /home are blocked, but I can warp out. Even as a non-admin user. I posted on his Zone Manager plugin page too...
     
  4. Any fix for this yet ? ^
     
  5. Once i finish a kill & death plugin for rok i will check this
     
  6. i am login to admin on my server and its says dont have permission to use command how do i fix it thanks
     
  7. You need the permission "warp.admin" to use the admin commands.
     
  8. cant get it to work do i do oxide.grand then what ? sorry new to this all can you add me on steam CreepyNick thanks Steam Community :: CreepyNick
     
  9. oxide.grant user Nicholas101 warp.admin
     
  10. thanks so much man
    [DOUBLEPOST=1449999535][/DOUBLEPOST]is this right because its not working /warp add <Small> <60> <0> <50000> <all>
    [DOUBLEPOST=1450002669][/DOUBLEPOST]go
    got it to work but only 1 warp works i add more but they dont work
     
  11. Why dont you set the WarpMaxUses to 0 ? 0 == unlimited.
    Show me your data file located at oxide/data/WarpSystem.json
     

  12. {
    "WarpInfo": [
    {
    "WarpName": "Small",
    "WarpId": 1,
    "WarpX": 6008.651,
    "WarpY": 383.335663,
    "WarpZ": -3633.94824,
    "WarpPermissionGroup": "all",
    "WarpTimer": 10,
    "WarpMaxUses": 500,
    "WarpCreatorName": "CreepyNick",
    "RandomRange": 0
    },
    {
    "WarpName": "Small1",
    "WarpId": 2,
    "WarpX": 6073.069,
    "WarpY": 379.78775,
    "WarpZ": -3652.582,
    "WarpPermissionGroup": "all",
    "WarpTimer": 10,
    "WarpMaxUses": 500,
    "WarpCreatorName": "CreepyNick",
    "RandomRange": 0
    }
    ],
    "cantele": {},
    "lastposition": {
    "76561198139798757": {
    "OldX": 6077.85,
    "OldY": 379.1611,
    "OldZ": -3645.55273
    },
    "76561198088299083": {
    "OldX": 6490.69775,
    "OldY": 368.065643,
    "OldZ": -4369.25
    }
    },
    "maxuses": {
    "76561198139798757": {
    "Small": 3
    },
    "76561198088299083": {
    "Small": 4
    }
    }
    }
     
  13. So /warp to 2 isnt working?
     
  14. yer only warp small works
     
  15. Is it possible to assign a warp to more than one permission group?
     
  16. Nope. Only to one.. you have simply to add these players to the permission group that the warp was created for.
     
  17. deleted
     
  18. Hi PaiN - coming back to rekindle the discussion/request on integration with Zone Manager for "notp" - Reneb provides an external function call in Zone Manager that can be used to check if "notp" is set in the zone the player is currently in and cancel the warp request. This is how it is done in the Teleportation Request integration with Zone Manager.

    Would you be willing to take another look at integrating Warp System with this functionality?

    Here is the code in ZoneManager that allows for external calls in to check:

    /////////////////////////////////////////
    // canTeleport(BasePlayer player)
    // Called from Teleportation System (Mughisi) when a player tries to teleport
    /////////////////////////////////////////
    object canTeleport(NetUser player)
    {
    if (hasTag(player.playerClient, "notp")) { return "You may not teleport in this area"; }
    return null;
    }

    Here is some code from Teleportation Requests that checks for "notp"

    object thereturn = Interface.GetMod().CallHook("canTeleport", new object[] { netuser });
    if (thereturn != null)
    {
    SendReply(netuser, "You are not allowed to teleport from where you are.");
    return;
    }
     
  19. Im currently out of development... but what you want me to do is to block players from warping out who are in a zone ?
     
  20. That's exactly it! If the zone is set to "notp" then block/cancel the warp