News:

Welcome to World of Banished!

Main Menu

MOD: Dairy Milk ressource - RedKetchup

Started by RedKetchup, September 01, 2014, 11:19:33 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Alycya

Quote from: Denis de la Rive on September 04, 2014, 07:34:52 AM
Still testing but seems not to work with better fields mod by rageingnonsense, I just don't get milk, beef and leather yes, but no milk. I don't think it's one of the other mods I'm testing.

That's strange as I'm using both and getting milk - but with v1 of the better fields mod, not tried it with the updated one yet.

Denis de la Rive

I'm using version 3, but I still want to try it on a smaller pasture, in the vanilla range of 20x20 or less, by the way I use and like your apiary mod. I don't think it has anything to do with leveling, roads or storage, I still use the vanilla barns.

RedKetchup

#32
they drop beef and leather ONLY when you get 1 too many cattle in the pasture , it gets slaughtered and then 2 piece of beef and 1 piece of leather(6) drop on the ground outside the pasture.

if you have 8/10 cattle , or 18/20 ctattle, you wont see any beef.

but my code, my MOD is not defect AT ALL. it s 100%  perfect.


but i ve got to modified this file : LivestockCow.rsc  if the other moddler use it too , in 1 of the mod, of course there will be conflict.
> > > Support Mods Creation developments with Donations by Paypal  < < <
Click here to Donate by PayPal .

RedKetchup

#33
Quote

// layout of the entity
ComponentDescription resource
{
   // how often to update
   UpdatePriority _updatePriority = Fifth;
   
   // declare types that will be used
   Description _descriptions
   [
      "value",

      "model",
      "character",
      "animal",
      "select",
      "livestock",
   ]
}

ValueDescription value
{
   SpriteSheet _spriteSheet = "Dialog/SpriteSheet.rsc";
   String _spriteName = "CowsSmall";
   StringTable _stringTable = "Dialog/StringTable.rsc:rawMaterial";
   String _stringName = "Cows";
      
   // how much the item is worth, +- some tolerance
   int _baseValue = 800;

   // how much is sold in a single sale
   int _stackCount = 8;
   int _minStackCount = 6;
}

CharacterDescription character
{
   float _headingOffset = 180.0;
   float _turnFilter = 0.95;
}

SelectDescription select
{
   SpriteSheet _spriteSheet = "Dialog\SpriteSheet.rsc";
   String _spriteName = "LivestockCow";
   StringTable _stringTable = "Dialog/StringTable.rsc:rawMaterial";
   String _stringName = "Cows";
   SelectGroup _group = Livestock;
}

AnimalDescription animal
{
   ComponentDescription _rawMaterial
   [
      "Template/RawMaterialBeef.rsc"
      "Template/RawMaterialLeather.rsc"
   ]
   
   int _roamSize = 5;
   int _requiredArea = 20;
   
   float _maxAge = 6.0;
   float _maxAgeTolerance = 1.0;
   float _ageForOffspring = 0.8;
   float _offspringTerm = 0.6;
   float _offsprintTermTolerance = 0.20;
}

ModelDescription model
{
   MeshGroup _meshes
   [
      {
         AnimationGroup _animations = "Models\Animals\Cow\CowAnims.rsc";
         GraphicsMesh _mesh
         [
            "Models\Animals\Cow\CowMesh.rsc"
         ]
      }
   ]

   int _displayIndex = 0;
   int _subIndex = 0;   
   bool _randomIndex = false;
}


LivestockDescription livestock
{
   ComponentDescription _additionalRawMaterial = "Template\RawMaterialMilk.rsc";
   float _additionalCreateInMonths = 0.15;
}



you can see in BOLD GREEN the changes i made to this file.
> > > Support Mods Creation developments with Donations by Paypal  < < <
Click here to Donate by PayPal .

JamieIdle

I registered here just to get my friend Red's milk mod and I rarely use pastures!

RedKetchup

yay Jamie !

you ll see it totally worth it :) and superb graphics :)
> > > Support Mods Creation developments with Donations by Paypal  < < <
Click here to Donate by PayPal .

Denis de la Rive

Reinstalled your mod works fine now, milk! Must have been just one of those days, sorry.

RedKetchup

probably one of those days, or a mod conflict or something. it works super fine each time. and i m not alone.
> > > Support Mods Creation developments with Donations by Paypal  < < <
Click here to Donate by PayPal .