Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Database/World Building

Development::Database/World Building World Building forum, dedicated to the EQEmu MySQL Database. Post partial/complete databases for spawns, items, etc.

Closed Thread
 
Thread Tools Display Modes
  #31  
Old 02-24-2016, 09:02 PM
Xanathol
Sarnak
 
Join Date: Oct 2009
Posts: 52
Default

FYI, Phingel (a progression server) on Live has pre-revamp CT up and when Velious opens, I think it will be the original PoM (check Prathun's latest comments). Just sayin'...
  #32  
Old 02-25-2016, 09:46 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Seriously original PoM?? Where can I see the announcement?

Edit: Just read the announcement. This is exactly like the server I would like to build....

Celestial
  #33  
Old 02-25-2016, 10:02 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

Well hopefully someone will get us a wireshark capture.
  #34  
Old 02-25-2016, 10:09 AM
N0ctrnl's Avatar
N0ctrnl
Discordant
 
Join Date: Jan 2007
Posts: 443
Default

Classic PoM is the best. TAKP is pretty close on it, really. I had to write some of the quests because I couldn't find them anywhere, but it was definitely worth it.
__________________
Ender - Lead GM/Developer
Vegarlson Asylum Server - http://www.vegarlson-server.org/
  #35  
Old 02-25-2016, 10:19 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

I just started work on PoM on my server, had a few people hit it this week. I definitely had to adjust the pathing, mobs were going through trees.
  #36  
Old 02-25-2016, 10:21 AM
Xanathol
Sarnak
 
Join Date: Oct 2009
Posts: 52
Default

Click Here - this is the bit I was referring to:

Quote:
Quote:
-wycca said: ↑

“I don't see any PoM mobs on there, so um, what version of PoM will we have? I'm assuming a card version since there's no buffed mobs listed?”
Yep. The original, card drops pre-revamped Plane of Mischief.
  #37  
Old 02-25-2016, 10:27 AM
N0ctrnl's Avatar
N0ctrnl
Discordant
 
Join Date: Jan 2007
Posts: 443
Default

Quote:
Originally Posted by provocating View Post
I just started work on PoM on my server, had a few people hit it this week. I definitely had to adjust the pathing, mobs were going through trees.
If it helps any, here are my quests. Some came from elsewhere and some I wrote. https://github.com/N0ctrnl/VAQuests/.../mischiefplane

I haven't circled back to do the Bristlebane/crowd depop cycle entirely, but that's on my list.
__________________
Ender - Lead GM/Developer
Vegarlson Asylum Server - http://www.vegarlson-server.org/
  #38  
Old 02-25-2016, 10:28 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Wow this is great! I started working on fixes for PoM such as the correct model of the white stallion and correct replies by some NPCs. I also created a script for Roxanne and the dancing sphinxes too. Love that zone, would like to see it "working" as envisioned from the first iteration.

Celestial
  #39  
Old 02-25-2016, 10:29 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

I removed the forest pathing as on the original the mushroom men did not path at all like is setup in the PEQ db. And the treasure chest with half-lings is in the wrong space.

I collect a ton of info that was from Alkabor if anyone is intersted, has zone captures, spawns, paathing, etc...


Celestial
  #40  
Old 02-25-2016, 10:36 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default Roxxanne.pl

Roxxanne.pl

Code:
sub EVENT_SAY {
    if ($text=~/hail/i) {
        quest::say("Well hello! We are great dancers. Would you like to see us dance? Or maybe you would like us to teach you to dance?");
    } 
	
	elsif($text=~/see you dance/i) {
        quest::settimer("do_the_marinara", 1);     
    } 
	
	elsif($text=~/teach me to dance/i) {
        quest::say("Look at you! You can dance! Go, go, go! That's the spirit, you got it! Keep up the good work! Don't get too tired now, you are looking a little pale!");
        quest::selfcast(1246);
    }    
}

sub EVENT_TIMER{
    if($timer eq "do_the_marinara"){
        my @nlist = $entity_list->GetNPCList();
        foreach my $n (@nlist){
            if($n->GetCleanName()=~/Roxxanne/i){
                $n->DoAnim(33);
            }
			
			if($n->GetCleanName()=~/Ashley/i){
                $n->Say("Hey! Yeah! Do the Marinara!");
                $n->DoAnim(33);
            }
            
            if($n->GetCleanName()=~/Brittina/i){
                $n->Say("Hey! Yeah! Do the Marinara!");
                $n->DoAnim(33);
            }
            
            if($n->GetCleanName()=~/Diana/i){
                $n->Say("Hey! Yeah! Do the Marinara!");
                $n->DoAnim(33);
            }
        }
        quest::stoptimer("do_the_marinara");
    }
}
The only thing I cannot get to happen, is for the PC to actually spin as it did in the original. I tested this with Underfoot.


Celestial
  #41  
Old 02-25-2016, 10:46 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default a_white_stallion.pl

a_white_stallion.pl

Code:
sub EVENT_SAY {
  if ($text=~/hail/i) {
    quest::emote("stares at $name unblinking with colorless eyes.");
  }
}

  sub EVENT_ITEM {
  if (plugin::check_handin(\%itemcount, 22856 => 1)) {
    quest::say("The madness has fled my mind and I am once again whole! Give Gelistial my regards, I must leave this place and try to quell the madness I have inflicted.");
    quest::summonitem(24869);
  }
}
NPC should be :

Race: 124:Unicorn
Class: 1:Warrior
Bodytype: 21:Animal
Gender: 2:Neuter
Texture: 2
Helm Texture: 1


This will get the white horse with sightless eyes.


Celestial
  #42  
Old 02-25-2016, 10:54 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Here is a bunch of data with videos of PoM on Alkabor before it was taken down. Theres capture data, and dialogs. I also found information on the Theater as well. It is a large zip file (349.2 megs).

https://mega.nz/#!uhoQzC7Q!6fYaKt1fC...JqT7G36ro8Kfi4


Celestial
  #43  
Old 04-17-2017, 08:33 PM
Albator
Fire Beetle
 
Join Date: Mar 2017
Posts: 20
Default

NEQ database open source release, basically it is the TAK database modernized and current eqemulator compatible. All done with heidisql, modern items table was used (tak items table was virtually nonexistant) and that is literally about it, everything else is straight from tak. Change the expansion in the rule_values table. Mobs are "hopping" like the old PEQ databases so that is on the list to fix. Any other observations on fixes are welcome. I hope we can pool our resources and get classic titanium based eqemu rolling.

http://www.eqemulator.org/forums/showthread.php?t=41282
  #44  
Old 04-18-2017, 07:08 AM
jpyou127's Avatar
jpyou127
Discordant
 
Join Date: Nov 2005
Posts: 270
Default

Albator, NostalgiaEQ, MarcusD or whomever you are calling yourself now, the TAKP DB you used us almost 4 years old and they have constantly made changes since then so your classic DB is missing a lot of changes. Why, its because they stopped publishing DB changes in 2013. It is also setup for their client which is the old original PoP client. Please go advertise your DB somewhere else and quit hijacking threads.

Celestial

Edit: This person just keeps talking....
  #45  
Old 04-18-2017, 09:36 AM
Albator
Fire Beetle
 
Join Date: Mar 2017
Posts: 20
Default

Quote:
Originally Posted by jpyou127 View Post
Albator, NostalgiaEQ, MarcusD or whomever you are calling yourself now, the TAKP DB you used us almost 4 years old and they have constantly made changes since then so your classic DB is missing a lot of changes. Why, its because they stopped publishing DB changes in 2013. It is also setup for their client which is the old original PoP client. Please go advertise your DB somewhere else and quit hijacking threads.

Celestial
If you can't find value in it there are 10 people who will. Like I said it is 100% eqemulator compatible and all old zones mobs are restored, possibly loot and merchants too. And I am constantly updating it and hopefully others work on it and fork it as well.
Closed Thread

Thread Tools
Display Modes

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 09: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