1. So i'm trying to use
    bool CreateOrUpdateZone(string ZoneID, string[] args, Vector3 position = default(Vector3))

    from the zone manager page but i haven't called hooks from another plugin before , not sure how to do it . Any hints ? :D
    [DOUBLEPOST=1447963728,1447956472][/DOUBLEPOST]
    Code:
    public Vector3 GetPosition()
            {
                if (position == default(Vector3))
                    position = new Vector3(float.Parse(this.x), float.Parse(this.y), float.Parse(this.z));
                return position;
            }        void OnWeaponThrown(BasePlayer player , BaseEntity entity)
            {
                float xx = player.transform.position.x;
                float yy = player.transform.position.y;
                float zz = player.transform.position.z;
                args[0] = "name";
                args[1] = "RaidZone";
                ZoneManager?.Call("CreateOrUpdateZone", name , args , GetPosition());
    Tried this but still failing :(
     
  2. you need the radius,
    and also did you do this:
    Code:
    [PluginReference] Plugin ZoneManager;
     
  3. Nvm managed to get it to work :D
     
    Last edited by a moderator: Nov 20, 2015