Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::General Support

Support::General Support Post all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-27-2015, 07:14 PM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default PoP Progression

Is the PoP progression complete and functional with the current DB and code?


Celestial
Reply With Quote
  #2  
Old 09-28-2015, 08:02 AM
Maze_EQ
Demi-God
 
Join Date: Mar 2012
Posts: 1,106
Default

yes

/10char
__________________
"No, thanks, man. I don't want you fucking up my life, too."

Skype:
Comerian1
Reply With Quote
  #3  
Old 09-28-2015, 10:43 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Thanks! I have an older version and it doesn't seem to be as complete, although all the scripts look identical.


Celestial
Reply With Quote
  #4  
Old 09-28-2015, 11:11 AM
Maze_EQ
Demi-God
 
Join Date: Mar 2012
Posts: 1,106
Default

my se3rver came stock with full planar progression.
__________________
"No, thanks, man. I don't want you fucking up my life, too."

Skype:
Comerian1
Reply With Quote
  #5  
Old 09-28-2015, 12:15 PM
starblight's Avatar
starblight
Sarnak
 
Join Date: Jan 2007
Posts: 76
Default

Are all the zones complete as well? I have never been to plane of time to know how the spawns work but looking though the spawns a lot of monsters seem to be missing? I noticed the same in plain of nightmare but looking closer showed that a lot it not all of the missing spawns where triggered by scripts.

I was also wondering is there a list somewhere that shows what zones are finished or percent done? There is a few of us working on my server and we have been talking about working on some broken zones. It would be nice to know what ones really need it. It would also be nice to know what ones others are working on.
Reply With Quote
  #6  
Old 09-28-2015, 01:20 PM
chrsschb's Avatar
chrsschb
Dragon
 
Join Date: Nov 2008
Location: GA
Posts: 905
Default

Try to do Plane of Time or any scripted encounter and report back. I haven't looked at PoP since like 2008-2010 so I know my information is outdated at best. But I can definitely remember the Elemental planes not being functional and Time was fubar'd.
__________________
Clumsy's World: Resurgence
Clumsy's World [2006-2012]
Reply With Quote
  #7  
Old 09-28-2015, 01:34 PM
starblight's Avatar
starblight
Sarnak
 
Join Date: Jan 2007
Posts: 76
Default

We are fixing as we play so will be a little while. If no others report sooner I will update when I get there.
Reply With Quote
  #8  
Old 09-28-2015, 01:48 PM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Here is what I have encountered so far:

Plane of Nightmare: Hedge event NPC Thelin stops at the first clearing and never moves. It also looks like a lot of diaglog as well as commands such as "I am ready" are missing from the scripts on my version as well as the current Quests files.

Plane of Disease: No Planar Projection spawns when Grummus is killed for flag hail. Here also the scripts are identical for current and my version. And planar projection is a script in the quests folder.


Celestial
Reply With Quote
  #9  
Old 10-05-2015, 08:48 PM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

I was wondering if someone might give me a hand with the Perl for PODisease. The current script will not spawn a planar projection on the death of Grummus. I can manually spawn the planar projection, so its in the DB and will run its flagging script. I am wondering if it is the Sub_Death_Complete or quest::spawn2 issue.

Celestial

I changed Event_Death_Complete to Event_Death and scripting works. Not sure why my version of the compile has issues with Event_Death_Complete
Reply With Quote
  #10  
Old 10-06-2015, 08:10 AM
chrsschb's Avatar
chrsschb
Dragon
 
Join Date: Nov 2008
Location: GA
Posts: 905
Default

Quote:
Originally Posted by jpyou127 View Post
I was wondering if someone might give me a hand with the Perl for PODisease. The current script will not spawn a planar projection on the death of Grummus. I can manually spawn the planar projection, so its in the DB and will run its flagging script. I am wondering if it is the Sub_Death_Complete or quest::spawn2 issue.

Celestial

I changed Event_Death_Complete to Event_Death and scripting works. Not sure why my version of the compile has issues with Event_Death_Complete
It's funny because on my server I experience the opposite. If I don't use death_complete my NPCs never die. They just sit in an infinite death loop and spawn a million npcs.
__________________
Clumsy's World: Resurgence
Clumsy's World [2006-2012]
Reply With Quote
  #11  
Old 10-12-2015, 09:41 PM
Azrealvect
Sarnak
 
Join Date: May 2011
Posts: 53
Default

Just to add on with a fresh install of Akka's my PoTimeB does not work correctly. Phase 2.1 spawns as soon as first phase 1 boss is killed, phase 4+ never spawns at all.
Reply With Quote
  #12  
Old 10-12-2015, 09:51 PM
Noport
Opcode Ninja
 
Join Date: Mar 2009
Location: San francisco
Posts: 426
Default

a_buccaneer.pl
Code:
sub EVENT_AGGRO{
	quest::say("Time to die $name.");
}
Taskmaster_Kavamezh.pl
Code:
sub EVENT_DEATH_COMPLETE {
	quest::signal(162270);#cursed_one
}
#Vyzh-dra_the_Cursed.pl
Code:
sub EVENT_SLAY {
	quest::shout("Tell your gods that I will be coming for them next!");
}

sub EVENT_DEATH_COMPLETE {
	quest::shout("I cannot die! I am the only true god!");
	quest::emote("crashes to the ground. A horrific sound fills the room, but vanishes as quickly as it came.");
	quest::signalwith(162255,3,0);
}
a_Luggald_Ambassador.pl
Code:
sub EVENT_DEATH_COMPLETE{
 my $random_result = int(rand(100));
 my $a = 227113;#Garodizan_Razorfin
 my $x = $npc->GetX();
 my $y = $npc->GetY();
 my $z = $npc->GetZ(); 
 my $h = $npc->GetHeading();
 if (($random_result<=5) && ($razo==2)){
  quest::spawn2($a,0,0,$x,$y,$z,$h);
  quest::delglobal("razo");
  quest::setglobal("razo",3,3,"F");
  $razo=undef;
  }else{
  #do nothing 
 }
}

# EOF zone: nadox NPCs:#Garodizan_Razorfin (227113)
a_luggald_initiate.pl
Code:
sub EVENT_DEATH_COMPLETE{
 my $random_result = int(rand(100));
 my $a = 227113;#Garodizan_Razorfin
 my $x = $npc->GetX();
 my $y = $npc->GetY();
 my $z = $npc->GetZ(); 
 my $h = $npc->GetHeading();
 if (($random_result<=5) && ($razo==2)){
  quest::spawn2($a,0,0,$x,$y,$z,$h);
  quest::delglobal("razo");
  quest::setglobal("razo",3,3,"F");
  $razo=undef;
  }else{
  #do nothing 
 }
}

# EOF zone: nadox NPCs:#Garodizan_Razorfin (227113)
a_luggald_overseer.pl
Code:
sub EVENT_DEATH_COMPLETE{
 my $random_result = int(rand(100));
 my $a = 227113;#Garodizan_Razorfin
 my $x = $npc->GetX();
 my $y = $npc->GetY();
 my $z = $npc->GetZ(); 
 my $h = $npc->GetHeading();
 if (($random_result<=5) && ($razo==2)){
  quest::spawn2($a,0,0,$x,$y,$z,$h);
  quest::delglobal("razo");
  quest::setglobal("razo",3,3,"F");
  $razo=undef;
  }else{
  #do nothing 
 }
}

# EOF zone: nadox NPCs:#Garodizan_Razorfin (227113)
a_vehement_Blackhand.pl
Code:
sub EVENT_DEATH_COMPLETE{
 my $random_result = int(rand(100));
 my $a = 227108;#Crew_Chief_Hanriesaf
 my $x = $npc->GetX();
 my $y = $npc->GetY();
 my $z = $npc->GetZ(); 
 my $h = $npc->GetHeading();
 if (($random_result<=5) && ($hanr==2)){
  quest::spawn2($a,0,0,$x,$y,$z,$h);
  quest::delglobal("hanr");
  quest::setglobal("hanr",3,3,"F");
  $hans=undef;
  }else{
  #do nothing
 }
}

# EOF zone: nadox NPCs: #Crew_Chief_Hanriesaf (227108)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 06:46 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3