|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Development::Database/World Building World Building forum, dedicated to the EQEmu MySQL Database. Post partial/complete databases for spawns, items, etc. |
02-24-2016, 09:02 PM
|
Sarnak
|
|
Join Date: Oct 2009
Posts: 52
|
|
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'...
|
02-25-2016, 09:46 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
02-25-2016, 10:02 AM
|
|
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
Well hopefully someone will get us a wireshark capture.
|
02-25-2016, 10:09 AM
|
|
Discordant
|
|
Join Date: Jan 2007
Posts: 443
|
|
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.
|
02-25-2016, 10:19 AM
|
|
Demi-God
|
|
Join Date: Nov 2007
Posts: 2,175
|
|
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.
|
02-25-2016, 10:21 AM
|
Sarnak
|
|
Join Date: Oct 2009
Posts: 52
|
|
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.
|
|
02-25-2016, 10:27 AM
|
|
Discordant
|
|
Join Date: Jan 2007
Posts: 443
|
|
Quote:
Originally Posted by provocating
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.
|
02-25-2016, 10:28 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
02-25-2016, 10:29 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
|
|
|
02-25-2016, 10:36 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
|
|
|
02-25-2016, 10:46 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
02-25-2016, 10:54 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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
|
04-17-2017, 08:33 PM
|
Fire Beetle
|
|
Join Date: Mar 2017
Posts: 20
|
|
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
|
04-18-2017, 07:08 AM
|
|
Discordant
|
|
Join Date: Nov 2005
Posts: 270
|
|
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....
|
04-18-2017, 09:36 AM
|
Fire Beetle
|
|
Join Date: Mar 2017
Posts: 20
|
|
Quote:
Originally Posted by jpyou127
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.
|
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 04:35 AM.
|
|
|
|
|
|
|
|
|
|
|
|
|