Okay so I dug through some of the code to find the mystery docking (and knotting) scene with the Minotaur King and I found it, but I have no idea how to interpret the code for what determines a "small cock" for the scene to trigger. This seems to be the code for what causes the "Docking" button to appear for the scene:
And since I have no idea if that's enough to determine what is needed for it, I found this chunk of code in:
https://github.com/Kitteh6660/Corruption-of-Champions-Mod/blob/master/classes/classes/Scenes/Dungeons/D3/MinotaurKingScenes.as
The only thing I can guess given numbers is if your cock length is less than or equal to 12 but I even tried this with a 5" by 2" cock and the scene didn't become available. =/
Quote
var smallCockIdx:int = -1;
for(var i:int = 0; i < player.cocks.length; i++)
{
if (player.cocks.cockLength <= 12)
{
if (smallCockIdx != -1 && player.cocks[smallCockIdx].cockLength < player.cocks.cockLength)
{ smallCockIdx = i;
}
}
}
if (smallCockIdx != -1)
{
addButton(1,"Docking",this.dockucocku,smallCockIdx);
And since I have no idea if that's enough to determine what is needed for it, I found this chunk of code in:
https://github.com/Kitteh6660/Corruption-of-Champions-Mod/blob/master/classes/classes/Scenes/Dungeons/D3/MinotaurKingScenes.as
The only thing I can guess given numbers is if your cock length is less than or equal to 12 but I even tried this with a 5" by 2" cock and the scene didn't become available. =/
Last edited by a moderator: