I want to have my tree elementals drop multiple seeds, not just one.
I was looking through the scripts and found this on Kappas.
The Kappa only drops one seed never multiples. Does the above not mean it should drop up to 4 33% of the time????
I know I can just do multiple entries of
But there should be a way to drop multiple seed and types with a single call.....maybe....I think....
OK so I can't seem to figure it out.
Any thoughts on this stupid little addition I want to make?
Assistance is appreciated!
Shazzy
I was looking through the scripts and found this on Kappas.
Code:
if (Core.ML && Utility.RandomDouble() < .33)
this.PackItem(Engines.Plants.Seed.RandomPeculiarSeed(4));
The Kappa only drops one seed never multiples. Does the above not mean it should drop up to 4 33% of the time????
I know I can just do multiple entries of
Code:
this.PackItem(new Engines.Plants.Seed());
OK so I can't seem to figure it out.
Any thoughts on this stupid little addition I want to make?
Assistance is appreciated!
Shazzy