1. Hello everyone.
    Can someone create a Plugin to set the fill speed of the water catchers?

    Ex: 1 hour = 100 ml Water
     
  2. 3bf

    3bf

    Bump

    I could also really use something like this. Fill speed/capacity/stack size for the water catcher
     
  3. you would need a hook on this method (oxide currently does not hook this)
    Code:
    private void CollectWater()
    {
        if (this.IsFull())
        {
            return;
        }
        float num = 0f;
        num += Climate.GetFog(base.transform.position) * 0.25f;
        if (this.TestIsOutside())
        {
            num += Climate.GetRain(base.transform.position);
            num += Climate.GetSnow(base.transform.position) * 0.5f;
        }
        this.AddResource(Mathf.CeilToInt(this.maxItemToCreate * num));
    }
    then return a int on the hook and do num += the hook
     
    Last edited by a moderator: Jul 15, 2015