Changes

Jump to navigation Jump to search
347 bytes added ,  16:01, 19 August 2023
no edit summary
Line 10: Line 10:  
::::Thank you both very much!! But, does that mean that ''any'' high difficulty fish from [[Cindersap Forest#Fishing|Cindersap Forest]] can be caught on the Forest Farm (Catfish, Dorado, Lingcod, Midnight Carp, Pike, Salmon, & Tiger Trout)? [[User:Margotbean|margotbean]] ([[User talk:Margotbean|talk]]) 23:57, 18 August 2023 (UTC)
 
::::Thank you both very much!! But, does that mean that ''any'' high difficulty fish from [[Cindersap Forest#Fishing|Cindersap Forest]] can be caught on the Forest Farm (Catfish, Dorado, Lingcod, Midnight Carp, Pike, Salmon, & Tiger Trout)? [[User:Margotbean|margotbean]] ([[User talk:Margotbean|talk]]) 23:57, 18 August 2023 (UTC)
   −
Nope - the woodskip is hardcoded, which why it skips the training rod check.
+
:::::Nope - the woodskip is hardcoded, which why it skips the training rod check.
   −
Relevant code block
+
:::::Relevant code block
<code>
+
 
if (Game1.whichFarm == 2)
+
:::::<syntaxhighlight lang="C#">
{
+
    if (Game1.whichFarm == 2)
    if (Game1.random.NextDouble() < 0.05 + Game1.player.DailyLuck)
   
     {
 
     {
        return new Object(734, 1); //woodskip
+
        if (Game1.random.NextDouble() < 0.05 + Game1.player.DailyLuck)
    }
+
        {
    if (Game1.random.NextDouble() < 0.45)
+
              return new Object(734, 1); //woodskip
    {
+
        }
        // the other fish, which check training rod.
+
        if (Game1.random.NextDouble() < 0.45)
return base.getFish(millisecondsAfterNibble, bait, waterDepth, who, baitPotency, bobberTile, "Forest");
+
        {
    }
+
              // the other fish, which check training rod.
}
+
              return base.getFish(millisecondsAfterNibble, bait, waterDepth, who, baitPotency, bobberTile, "Forest");
</code>
+
        }
[[User:Atravita|Atravita]] ([[User talk:Atravita|talk]]) 00:47, 19 August 2023 (UTC)
+
    }
 +
</syntaxhighlight>
 +
 
 +
:::::As for the other fishies that are hardcoded....well, those are just the beach's forage-fish.
 +
 
 +
:::::[[User:Atravita|Atravita]] ([[User talk:Atravita|talk]]) 00:47, 19 August 2023 (UTC)
 +
::::::Whew! Thanks so much, Atra!! [[User:Margotbean|margotbean]] ([[User talk:Margotbean|talk]]) 16:01, 19 August 2023 (UTC)
107,287

edits

Navigation menu