PDA

View Full Version : Emperor Ssraeshza - PEQ


froglok23
04-14-2007, 07:41 PM
Hi all,

Im running the latst peq db and peq quests form the CVS.

Just foolign around in ssra temple and it appears that Emperor Ssraeshza event is not working.

I kill the blood, but the non targetagble Emperor Ssraeshza doesnt depop and the targetable "real" Emperor Ssraeshza never spawns.

I heared that on the offical PEQ guids are now raiding Emperor Ssraeshza and are killing him.

Is the CVS up to date?

-DP / Froglok

Caseus
04-16-2007, 05:21 AM
Do you have the PEQ quest files? It should work assuming you have the #Blood_of_Ssraeshza.pl and #Emperor_Ssraeshza.pl files in your quests/ssratemple folder.

#Blood_of_Ssraeshza.pl:
-------------------------
# Emperor Ssraeshza trigger
#

sub EVENT_DEATH {
quest::signalwith(162065,99,0);
}

#EOF zone: ssratemple ID: 162189 NPC: #Blood_of_Ssraeshza


#Emperor_Ssraeshza.pl:
-----------------------
# no-target emperor to depop when blood/blood golem killed
#

sub EVENT_SIGNAL {
if ($signal == 99) {
quest::settimer("spawnemp",350);
}
}

sub EVENT_TIMER {
if ($timer eq "spawnemp") {
quest::spawn2(162227,0,0,$x,$y,$z,189.5);
quest::stoptimer("spawnemp");
quest::depop();
}
}

# EOF zone: ssratemple ID: 162065 NPC: #Emperor_Ssraeshza


#Emperor_Ssraeshza_.pl:
------------------------
# spawn shissar wraiths on death of emperor ssraeshza for celestial rifts
#

sub EVENT_DEATH {
quest::spawn2(162210,0,0,953,-332,403.1,190);
quest::spawn2(162210,0,0,953,-324,403.1,190);
quest::spawn2(162210,0,0,953,-316,403.1,190);
quest::spawn2(162210,0,0,937,-332,403.1,190);
quest::spawn2(162210,0,0,937,-324,403.1,190);
quest::spawn2(162210,0,0,937,-316,403.1,190);
}

# EOF zone: ssartemple ID: 162227 NPC: #Emperor_Ssraeshza_

Caseus
04-16-2007, 05:22 AM
Oops, missed Blood Golem:

#Ssraeshzian_Blood_Golem.pl:
-----------------------------
# Emperor Ssraeshza trigger
#

sub EVENT_DEATH {
quest::signalwith(162065,99,0);
}

#EOF zone: ssratemple ID: 162064 NPC: #Ssraeshzian_Blood_Golem