EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Development::Tools (https://www.eqemulator.org/forums/forumdisplay.php?f=593)
-   -   EQEmu Server Pack Installer 3.0 released (https://www.eqemulator.org/forums/showthread.php?t=20314)

cavedude 04-13-2006 01:37 PM

EQEmu Server Pack Installer 3.0 released
 
Alright this time around supports 0.6.6 and I eliminated the need for manual configuration almost entirely. (You only need to specify your server name when using public login) There are three packages, the raw pack which includes Linux binaries again, the traditional installer using my database, and finally the installer using PEQ's Luclin database. My database includes 30 newly popped zones, so now it stands at:

All of Classic, Kunark, Velious, Luclin, and Ykesha. All of PoP except for earthb, nightmareb, and timeb (if anybody has working logs for those three please let me know), half of both GoD and OoW (mostly the non-instances), and a handful of LDoN zones.

The binaries are the newest build of 0.6.6 with a couple of small changes and fixes by myself.

Raw Pack:
http://eqemu.sesmar.net/sp/EQEmuSP-3.0-NoInstaller.rar

Server Pack Installer:
http://eqemu.sesmar.net/sp/EQEmuServerPack-3.0.exe

Server Pack Installer w/ PEQ:
http://eqemu.sesmar.net/sp/EQEmuServerPack-PEQ-3.0.exe

cavedude 04-14-2006 01:39 AM

here is the .doc file that briefly runs down the install process:
http://eqemu.sesmar.net/sp/EQEmuServerPackInstaller.doc

Also, I wanted to mention that this installer DOES NOT enable you to play if you do not have a compatible client. You must already have it and specify the directory it resides in to the installer so it can copy your spell files over.

Finally, my database is contained within the raw pack so if you want just the db, then download that. I'm not going to make a seperate link for just the db to conserve bandwidth.

Belfedia 04-14-2006 10:21 PM

Nice work, i update the Links on the wiki ;)

cavedude 04-14-2006 11:46 PM

Thanks, man! I love the new title.

cavedude 04-18-2006 11:21 AM

These packs include the new 0.7.0 and appropriate database changes. No other changes at this time.

Upgrade from 3.0 (Cavedude database only):
http://eqemu.sesmar.net/sp/EQEmuServ....1-Upgrade.exe

Full installer (with Cavedude database):
http://eqemu.sesmar.net/sp/EQEmuServerPack-3.1.exe

Raw Pack (with Cavedude database):
http://eqemu.sesmar.net/sp/EQEmuSP-3.1-NoInstaller.rar

Please see http://eqemu.sesmar.net for more info

Muuss 04-18-2006 09:30 PM

I've just downloaded and tested your installer, very very great work, nice improvement for newcomers !

2 small suggestions :

quests/plugins/check_handin.pl needs to be updated, the one you're using isn't safe to use (it may lead to odd results depending how the quest has been written), this is the new one :

Code:

# plugin::check_handin($item1 => #required_amount,...);
# autoreturns extra unused items on success
sub check_handin {
    my $hashref = shift;
    my %required = @_;
    foreach my $req (keys %required) {
        if ((!defined $hashref->{$req}) || ($hashref->{$req} != $required{$req})) {
            return(0);
        }
    }
    foreach my $req (keys %required) {
        delete $hashref->{$req};
    }
    return 1;
}

sub return_items {   
    my $hashref = shift;
    foreach my $k (keys(%{$hashref})) {
        next if($k == 0);
        my $r;
        for($r = 0; $r < $hashref->{$k}; $r++) {
                quest::summonitem($k);
        }
        delete $hashref->{$k};
    }
}

1;


Second point, I have to say thank you, i saw that you included questeditor in your package, which makes me feel proud and happy :)
There's a new version, with a very few improvements but several little fixes, like () removed after the event subs, some ; added where they were missing and a button that creates an empty quest based on the check_handin plugin.

http://eqemu.vilvert.fr/quest_editor-1.8.zip

cavedude 04-18-2006 11:35 PM

Thanks and thanks! lol. I'll add both to the installer after work.

cavedude 04-22-2006 02:48 AM

Installer has been bumped up to 3.5 which a few new additions. Go here for more info:

http://eqemu.sesmar.net/forum/index.php?topic=134.0

cavedude 12-05-2006 01:38 PM

Installer 3.6 has been released!

You can check it out here: http://eqemu.sesmar.net/forum/index.php?topic=212.0

John Adams 12-05-2006 02:48 PM

Excellent, thank you Cavedude. Congratz and best wishes in your new role, as well. :)

GeorgeS 12-05-2006 02:53 PM

Thanks for the update. Glad to hear you are working on this.


GeorgeS


All times are GMT -4. The time now is 05:25 AM.

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