Does anyone remember all the combinations of treasures you can turn in?
Edit: Interestingly enough, the link on the quests page no longer exists, but the quest page still exists.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.
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:
Thanks, but I'm actually referring to the combinations of the treasures.
Such as:
Necklace/Picture/Sword/Command
Necklace/Picture/Sword
etc
Quote:
-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
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):Quote:
Thanks, but I'm actually referring to the combinations of the treasures.
Such as:
Necklace/Picture/Sword/Command
Necklace/Picture/Sword
etc
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
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