Blue Mouse Quest

02/01/2017 05:48 InsomniacPro#1
Does anyone remember all the combinations of treasures you can turn in?
02/01/2017 08:43 ~Crystaline#2
Was it like, exchange Silver Needle for a Dragon Gem, Phoenix Gem, or Rainbow Gem. And Gold Needle for Fury Gem, Moon Gem, or Violet Gem? If not, nvm this post then.
02/01/2017 08:58 Spirited#3
Well... I saved their entire website at some point. Here's what it says:
Quote:
Walkthrough

i. Find General Judd in Twin City.
ii. As General Judd says, go to find the Old Miner around the forest mine cave. Exchange a Normal Dragon Gem, Phoenix Gem, Kylin Gem, or Rainbow Gem for a Silver Needle, or swap a Normal Fury Gem, Moon Gem or Violet Gem for a Gold Needle at the Old Miner.
iii. Take the Silver or Gold Needle to the forest mine cave to catch Blue Mouse, who will give you the lost items of General Judd after you catch him.
iv. Return the lost treasures to General Judd, and he will give you big rewards.
Edit: Interestingly enough, the link on the quests page no longer exists, but the quest page still exists.
[Only registered and activated users can see links. Click Here To Register...]
Don't know how long that will last, but there you go.
02/01/2017 16:35 InsomniacPro#4
Thanks, but I'm actually referring to the combinations of the treasures.
Such as:
Necklace/Picture/Sword/Command
Necklace/Picture/Sword
etc
02/01/2017 16:46 Best Coder 2014#5
Quote:
Originally Posted by InsomniacPro View Post
Thanks, but I'm actually referring to the combinations of the treasures.
Such as:
Necklace/Picture/Sword/Command
Necklace/Picture/Sword
etc
Maybe [Only registered and activated users can see links. Click Here To Register...] has some of the answers you're seeking? Specifically this part:
Quote:
Originally Posted by d0minguez View Post
-Asternecklace: 1 Met
-PinetumPicture: 1 Met <--- Posted on a previous thread.
-RoyalSword: 5 Mets

-Aster & Pinetum: 2 Mets
-Royal & Pinetum: 6 Mets
-Royal, Atre & Pinetum: 9 Mets
-SecretCommand: 10 Mets
02/01/2017 16:48 Nyorai#6
Quote:
Originally Posted by InsomniacPro View Post
Thanks, but I'm actually referring to the combinations of the treasures.
Such as:
Necklace/Picture/Sword/Command
Necklace/Picture/Sword
etc
I'm pretty confident these were all the combinations you could get and I did this quest countless times so if my memory suits me well this should be it (they're as well the ones I'm using on Shannara):

Silver Needle:
  • Necklace (I remember getting it);
  • Picture (I remember getting it);
  • Necklace & Picture (I remember getting it);
  • Command? (I don't think it was possible to get this one with SilverNeedles but I can't guarantee for sure);
  • Sword? (I don't think it was possible to get this one with SilverNeedles but I can't guarantee for sure);

Gold Needle:
  • Command;
  • Sword, Necklace and Picture (I remember getting it);
  • Sword and Necklace (I remember getting it);
  • Sword and Picture (I remember getting it);
  • Sword (I remember getting it);
02/01/2017 17:19 nTL3fTy#7
Have some pseudocode for GeneralJudd:
Code:
if player has SecretCommand then
  delete item SecretCommand

  if rand(200) < 1 then
    award 1 DragonBall
  else
    award 9 Meteor
  end
else if player has AsterNecklace then
  if player has PinetumPicture then
    if player has RoyalSword then
      delete item AsterNecklace
      delete item PinetumPicture
      delete item RoyalSword

      if rand(200) < 1 then
        award 1 DragonBall
      else
        award 9 Meteor
      end
    else
      delete item PinetumPicture
      delete item AsterNecklace

      award 1 Meteor

      if rand(10) < 6 then
        award 50000 silver
      else
        award 1 Meteor
      end
    end
  else if player has RoyalSword then
    delete item AsterNecklace
    delete item RoyalSword

    award 5 Meteor

    if rand(10) < 6 then
      award 20000 silver
    else
      award 1 Meteor
    end
  else
    delete item AsterNecklace

    if rand(10) < 6 then
      award 50000 silver
    else
      award 1 Meteor
    end
  end
else if player has PinetumPicture then
  if player has RoyalSword then
    delete item PinetumPicture
    delete item RoyalSword

    award 6 Meteor
  else
    delete item PinetumPicture

    award 1 Meteor
  end
else if player has RoyalSword then
  delete item RoyalSword

  award 5 Meteor
end
rand(max) is defined as a random number between zero (inclusive) and max (exclusive).
02/01/2017 22:19 InsomniacPro#8
Lefty, huge help. Thanks so much all.
02/02/2017 04:27 nTL3fTy#9
Have some more pseudocode for BlueMouse:
Code:
if player has GoldNeedle then
  if rand(10) < 7 then
    BlueMouse escapes
  else
    delete item GoldNeedle

    rate = rand(8)
    if rate < 1 then
      rate = rand(8)
      if rate < 1 then
        award SecretCommand
      else
        award RoyalSword
        award PinetumPicture
        award AsterNecklace
      end
    else if rate < 3 then
      award RoyalSword
      award PinetumPicture
    else
      award RoyalSword
    end
  end
else if player has SilverNeedle then
  if rand(10) < 7 then
    BlueMouse escapes
  else
    delete item SilverNeedle

    rate = rand(8)
    if rate < 1 then
      rate = rand(8)
      if rate < 1 then
        award RoyalSword
      else
        award AsterNecklace
        award PinetumPicture
      end
    else if rate < 4 then
      award PinetumPicture
    else
      award AsterNecklace
    end
  end
end