|
|
|
 |
 |
 |
 |
|
 |
 |
|
 |
 |
|
 |
|
| Quests::Completed This is where Completed quests are. |
 |
|
 |

08-02-2008, 10:43 AM
|
|
Dragon
|
|
Join Date: Feb 2007
Posts: 659
|
|
Rathe Mountains: Marianna
Marianna.pl
This one is mostly right, but I will need to update it once I get the turn in dialog from the rotted shark meat. You can put it in or wait if you want.
Code:
#########################################################
# Marianna
# Zone: Rathe Mountains
# Quest: Vambraces of Ro
# Author: Unknown
# Updated: Andrew80k
#########################################################
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Rodcet Nife welcomes you into our noble camp. I am the keeper of the [Vambraces of Ro].");
}
if($text=~/vambraces of ro/i){
if($faction <=5){
quest::say("The mold will be offered to you when you have performed a task for the Temple of Life. The oceans near our home are host to a plague.. the plague sharks!! They have been infected with a deadly malady which has been turning up in the Qeynos Hills. Kill the sharks and bring me two of their rotten shark portions as proof.");
} else {
quest::say("Foolish person!! The word is out amongst the followers of the Prime Healer not to trust you.");
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount,12310=>2) && $faction <=5 ) {
quest::say("You have done it! Here is the Vambraces mold."); # fix this when I can get rotted shark meat on live
quest::summonitem(12300);
quest::faction("184","1"); #Knights of Truth
quest::faction("104","-1"); # Freeport Militia
quest::faction("257","1"); # Priests of Life -- This is a guess
}
plugin::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn ID:50114 -- Marianna
|
 |
|
 |
 |
|
 |

08-02-2008, 06:32 PM
|
|
Dragon
|
|
Join Date: Feb 2007
Posts: 659
|
|
Rathe Mountains: David
David.pl
Code:
#########################################################
# David
# Zone: Rathe Mountains
# Quest: Bracers of Ro
# Author: Unknown
# Updated: Andrew80k
#########################################################
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("I, the keeper of the [Bracers of Ro], welcome you. Come and rest within our camp. You have nothing to fear while such righteous might is gathered.");
}
if($text=~/bracers of ro/i){
if ($faction <= 5) {
quest::say("When you can swim the waters of Rathe and return two goblin nets from the elusive goblin net masters. then you will be rewarded the bracer mold.");
} else {
quest::say("We, the Deepwater Knights, know of your vile ways. You had best leave while you can.");
}
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount,12311 => 2) && $faction <= 5) {
quest::say("You have done well. Take the mold for the bracer. Go forth to speak with Thomas of [Lord Searfire]. Then all components shall be known.");
quest::summonitem("12301");
quest::faction("45","1");
quest::faction("79","1");
quest::faction("143","-1");
} elsif (plugin::check_handin(\%itemcount,12311=>1) && $faction <= 5) {
quest::say("Two Deepwater goblin nets are required.");
quest::return_items(\%itemcount);
}
quest::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn ID:50108 -- David
|
 |
|
 |
 |
|
 |

08-02-2008, 06:56 PM
|
|
Dragon
|
|
Join Date: Feb 2007
Posts: 659
|
|
Rathe Mountains: Abigail
Abigail.pl
Code:
###############################################################
# NPC: Abigail
# Zone: Rathe Mtns
# Quest: Breastplate of Ro
# Author: Unknown
# Updated: Andrew80k
###############################################################
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Greetings! I am the holder of the secret of the [Breastplate of Ro]. You may rest here. You are quite safe within this camp of paladins.");
}
if($text=~/breastplate of ro/i){
if($faction <= 5) { # really requires high indifferent, but I don't have that option
quest::say("The Breastplate of Ro mold will be awarded to you. First, you will perform a test of strength. Go to Faydwer. There you shall seek out and destroy the Teir'Dal who carry the dark cauldrons!! They have been venturing into our lands and capturing many Koada'Dal and Fier'Dal for cooking purposes! Bring to me two of their dark cauldrons.");
} else {
quest::say("You need to prove your loyalty to my temple. Go to Felwithe and seek out the Clerics of Tunare. Prove to them your faith. Then ask the leader of this church if you are a [honored member].");
}
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount,12309=>2) && $faction <=5) { # A Dark Cauldron
quest::say("You have earned the mold. You will now need go and speak with Thomas about [Lord Searfire].");
quest::summonitem(12299); # Mold of Ro Breastplate
quest::faction("43","1"); # Clerics of Tunare
quest::faction("178","1"); # King Tearis Thex
quest::faction("8","1"); # Anti-Mage
} elsif (plugin::check_handin(\%itemcount,12309=>1) && $faction <=5 ) {
quest::say("I instructed you to return with no less than two dark pots.");
plugin::return_items(\%itemcount); # return items unless proper count, seems easier than trying to keep track
}
plugin::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn ID:50113 -- Abigail
|
 |
|
 |

08-02-2008, 07:02 PM
|
|
Dragon
|
|
Join Date: Feb 2007
Posts: 659
|
|
Recipes for the combines
All are combined in a forge(17, I think) and all are no fail.
Boots -- Mold(12304),Ronium(12305)
Helm -- Mold(12298 ),Ronium(12305)
Bracer -- Mold(12301),Ronium(12305)
Greaves -- Mold(12303),Ronium(12305)
Breastplate -- Mold(12299),Ronium(12305)
Gauntlets -- Mold(12302),Ronium(12305)
Vambraces --Mold(12300),Ronium(12305)
Last edited by Andrew80k; 08-03-2008 at 03:02 AM..
Reason: Damn smilies...
|
 |
|
 |

08-03-2008, 10:07 AM
|
|
Dragon
|
|
Join Date: Feb 2007
Posts: 659
|
|
Quote:
Originally Posted by Andrew80k
Marianna.pl
This one is mostly right, but I will need to update it once I get the turn in dialog from the rotted shark meat. You can put it in or wait if you want.
|
Fixed it. After working for about a month with no Rotten Shark Meat, I get 2 in a row.
Code:
#########################################################
# Marianna
# Zone: Rathe Mountains
# Quest: Vambraces of Ro
# Author: Unknown
# Updated: Andrew80k
#########################################################
sub EVENT_SAY {
if($text=~/Hail/i){
quest::say("Rodcet Nife welcomes you into our noble camp. I am the keeper of the [Vambraces of Ro].");
}
if($text=~/vambraces of ro/i){
if($faction <=5){
quest::say("The mold will be offered to you when you have performed a task for the Temple of Life. The oceans near our home are host to a plague.. the plague sharks!! They have been infected with a deadly malady which has been turning up in the Qeynos Hills. Kill the sharks and bring me two of their rotten shark portions as proof.");
} else {
quest::say("Foolish person!! The word is out amongst the followers of the Prime Healer not to trust you.");
}
}
sub EVENT_ITEM {
if(plugin::check_handin(\%itemcount,12310=>2) && $faction <=5 ) {
quest::say("You now own a mold for the Vambracers of Ro. Go and ask Thomas of [Lord Searfire] for the final component.");
quest::summonitem(12300);
quest::faction("183","1"); #Knights of Thunder
quest::faction("21","-1"); # Bloodsabers
quest::faction("257","1"); # Priests of Life
quest::faction("135","1"); # Guards of Qeynos
quest::faction("9","1"); # Antonius Bayle
} elsif (plugin::check_handin(\%itemcount,12310=>1) && $faction <=5) {
quest::say("I said two portions of rotten shark meat.");
plugin::return_items(\%itemcount);
}
plugin::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn ID:50114 -- Marianna
|
 |
|
 |

08-05-2008, 12:01 AM
|
 |
The PEQ Dude
|
|
Join Date: Apr 2003
Location: -
Posts: 1,988
|
|
Committed to PEQ, thank you!
|
| Thread Tools |
|
|
| Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 05:45 AM.
|
|
 |
|
 |
|
|
|
 |
|
 |
|
 |