|
|
---|---|
Posted by | -ADDED TO THE GAME-Fix How Markings Roll |
Heda Vampiric (#56702) Prophet View Forum Posts Posted on 2017-08-20 20:22:04 |
|
Posted on 2017-12-15 12:44:06 |
Pass rates are not at all based on percentages, but I did up everything to 100% as asked. I ran through the script again for 1300 cubs. 6585 markings passed 3243 cream markings (~49.3%) 3342 black markings (~50.7%) Google Sheet 0 players like this post! Like? |
Heda Vampiric (#56702)
Prophet View Forum Posts Posted on 2017-12-15 12:46:46 |
Thank you. I know they do not, but it sets me more at ease. 0 players like this post! Like? |
Posted on 2017-12-15 12:48:27 |
The Scrying Stone and the actual breeding function use the exact same script, with cubs being produced just "turned off" for Scrying. For the 1300 cubs I ripped out the part of the script that handles marking passing and ran it through a loop 1300 times (well, 13 times for 100 iterations of the loop). 0 players like this post! Like? |
Heda Vampiric (#56702)
Prophet View Forum Posts Posted on 2017-12-15 12:50:07 |
"ran it through a loop 1300 times (well, 13 times for 100 iterations of the loop)." Explain? I'm not much on coding. 0 players like this post! Like? |
Posted on 2017-12-15 12:53:07 |
The script itself still ran 1300 times, as if it was producing information for 1300 cubs. However due to page memory load restrictions, I had to cap each click at 100 cubs. So basically I had a button which would produce 100 cubs' data from the 2 lions I used. I clicked it 13 times and each time copied the 100 cubs' data into the spreadsheet. 0 players like this post! Like? |
Heda Vampiric (#56702)
Prophet View Forum Posts Posted on 2017-12-15 13:04:31 |
Ah. Understood. 0 players like this post! Like? |
Bezthiel 🍉 (#81210)
Lone Wanderer View Forum Posts Posted on 2017-12-15 13:10:02 |
Hey! A thought: Would it happen to matter that, for the most part, people working on marking projects are only looking at one or two markings at a time? You seem to be counting total of passed black or cream markings, and in my rolls specifically, I'm only looking at slot 1. I'm disregarding other marks that pass, trying to keep it as close to breeding for a mark out of a female as possible 0 players like this post! Like? |
Posted on 2017-12-15 13:10:24 |
All I can tell you is what's in the coding. I used the same script to produce the 1300 results that is used in both the breeding script and scrying stone. With chance-based systems (which is what this is, each marking has the same chance of passing) you will never, ever get an exact 50/50 unless you have an extremely large sample size (well over 1million - even then it would be uneven at a decimal level, e.g. 50.00123%). 0 players like this post! Like? |
Posted on 2017-12-15 13:11:40 |
@Bezthiel - it doesn't matter, all marking slots are handled the same way. 0 players like this post! Like? |
Myr (#188)
View Forum Posts Posted on 2017-12-15 13:11:46 |
So, technical stuff aside, the odds of parents' markings passing should in fact be 50/50 after all, or as near as makes no difference, regardless of which rolls first? That is, *if* a marking passes at all - i.e. taking out the chance of an empty slot. I was late to this whole thread and I don’t breed nearly as many cubs as most people probably do anyway, so my own data is far too small to tell me anything reliable. I'm just trying to make sure I understand correctly and have the right info so I can get the best out of future breeding plans :) 0 players like this post! Like? |
Posted on 2017-12-15 13:13:09 |
There is always a chance of an empty slot, but if it's not an empty slot it should be 50/50 on whether it's the male or female marking that is passed. 0 players like this post! Like? |
Heda Vampiric (#56702)
Prophet View Forum Posts Posted on 2017-12-15 13:13:21 |
Could you explain to me how it chooses the markings? Say both parents have a marking in slot 1. How does it choose if parent A or parent B gets the slot. Does it do a separate roll (0-100) for each and the higher roll gets the slot? Or something else? 0 players like this post! Like? |
Myr (#188)
View Forum Posts Posted on 2017-12-15 13:15:53 |
Thanks Abbey (or whichever admin lol, this anon mod thing is taking some getting used to), the info is much appreciated 0 players like this post! Like? |
Posted on 2017-12-15 13:19:16 |
"Does it do a separate roll (0-100) for each and the higher roll gets the slot?" It's basically a coin toss. If both parents have a different marking in the same slot, there is a random roll of 1-2 (i.e. the coin). If the roll says 1, Parent 1's marking is picked, if the roll says 2 Parent 2's marking is picked. If both parents have a marking that is the same in the same slot (e.g. they both have Cream Front in Slot 1) then there's a 75% for it to pass. 0 players like this post! Like? |
Heda Vampiric (#56702)
Prophet View Forum Posts Posted on 2017-12-15 13:20:07 |