EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Database/World Building (https://www.eqemulator.org/forums/forumdisplay.php?f=596)
-   -   Pre-Revamp info on old zones (https://www.eqemulator.org/forums/showthread.php?t=26845)

Xanathol 02-24-2016 09:02 PM

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'...

jpyou127 02-25-2016 09:46 AM

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

provocating 02-25-2016 10:02 AM

Well hopefully someone will get us a wireshark capture.

N0ctrnl 02-25-2016 10:09 AM

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.

provocating 02-25-2016 10:19 AM

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.

Xanathol 02-25-2016 10:21 AM

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.

N0ctrnl 02-25-2016 10:27 AM

Quote:

Originally Posted by provocating (Post 247349)
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.

jpyou127 02-25-2016 10:28 AM

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

jpyou127 02-25-2016 10:29 AM

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

jpyou127 02-25-2016 10:36 AM

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

jpyou127 02-25-2016 10:46 AM

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

jpyou127 02-25-2016 10:54 AM

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

Albator 04-17-2017 08:33 PM

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

jpyou127 04-18-2017 07:08 AM

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....

Albator 04-18-2017 09:36 AM

Quote:

Originally Posted by jpyou127 (Post 254293)
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.


All times are GMT -4. The time now is 03:39 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.