Changelog for AXClassic-PEQ-Repack: *Notes* *If you are not restoring a backup please disregard anything todo with the SQL changes, this is not needed on a fresh server* 01-11-2012 ========== - Update 55 ! - Version: axclassic3.0.3 - Required SQL Changes: no - Contents: -==Removed the "ships zone" and replaced it with static zones, this will load zones you play in often as static if you check the box. -== The repack now takes advantage of the InnoDB database engine, was using MyISAM. -== The Quest update button should now function as planned. -== Tested and confirmed on 3 systems boats are working -== more code re-write of the GUI, about 75% complete. -==Update to the latest AXCLassic editor as of 1-11-12 -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 1-11-12 -==Update to the latest AXCLassic source ... (from Rathe) as of 1-11-12 -== a pile of minor GUI changes, to many to list. 12-13-2011 ========== - Update 54 ! - Version: axclassic3.0.2 - Required SQL Changes: no - Contents: -==a minor mysql change, should make life easier 12-12-2011 ========== - Update 53 ! - Version: axclassic3.0.1 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 12-12-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 12-12-11 -==updated the GUI update code (should be faster now) -=== still trying to get back to things forgive me please... 08-27-2011 ========== - Update 52 ! - Version: axclassic3.0.0 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 8-27-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 8-27-11 -==updated the GUI update code (should be faster now) +++ Added a new version on the GUI, you now have the option to play the PEQ database with the axclassic bots +++ added the latest PEQ Quest and the Latest PEQ database -==I hope there is not to many bugs, but please post them on the forums .... +++ many new bot commands added and fixed 07-06-2011 ========== - Update 51 ! - Version: axclassic2.2.6 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 7-06-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 7-06-11 06-05-2011 ========== - Update 50 ! - Version: axclassic2.2.5 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 6-05-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 6-05-11 -==there goes my planned once a month release .. summer is so busy lol ... 04-04-2011 ========== - Update 49 ! - Version: axclassic2.2.4 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 4-04-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 4-04-11 -==I added an update button into the GUI now that should update your quest on the fly from the Live rathe server. Please test this new feature and report to the forums, Lots of new code went into the GUI.. 03-12-2011 ========== - Update 48 ! - Version: axclassic2.2.3 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 3-12-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 3-12-11 -==Made some code changes to the axclassic GUI !! 01-16-2011 ========== - Update 47 ! - Version: axclassic2.2.2 - Required SQL Changes: no - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 1-16-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 1-16-11 -==Changed the way dbtools access the database for what I hope to be better Reliability 01-08-2011 ========== - Update 46 ! - Version: axclassic2.2.1 - Required SQL Changes: Yes - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) as of 1-8-11 -==Update to the latest AXCLassic source ... (from Rathe) as of 1-8-11 -==Fixed the Avast false postive virus warning, this should no longer happen!! -==PLEASE MAKE SURE TO RUN THE SQL UPDATES!! -== Required SQL changes ALTER TABLE `ax_classic`.`bottemp` ADD COLUMN `hp` INTEGER NOT NULL DEFAULT 0 AFTER `slot`; ALTER TABLE `ax_classic`.`botbank` ADD COLUMN `hp` INTEGER NOT NULL DEFAULT 0 AFTER `slot`; ALTER TABLE `ax_classic`.`bottemp` ADD COLUMN `mana` INTEGER NOT NULL DEFAULT 0 AFTER `hp`; ALTER TABLE `ax_classic`.`botbank` ADD COLUMN `mana` INTEGER NOT NULL DEFAULT 0 AFTER `hp`; CREATE TABLE `ax_classic`.`botbuffs` ( `botid` int(11) NOT NULL default '0', `buffid` int(11) NOT NULL default '0', PRIMARY KEY (`botid`,`buffid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; update npc_spells_entries set maxlevel=49 where spellid=635 and npc_spells_id=704; update npc_spells_entries set minlevel=50, maxlevel=60, spellid=1936 where spellid=1674 and npc_spells_id=704; delete from npc_spells_entries where spellid=1678 and npc_spells_id=704; alter table botsowners ADD COLUMN magepet int(11) NOT NULL default '0' AFTER botarchery; 10-15-2010 ========== - Update 45 ! - Version: axclassic2.2.0 - Required SQL Changes: Yes - Contents: -==sorry for the Long layoff Guys, Hope to be back soon!! -==Update to the latest AXCLassic databse and Quest(from Rathe) -==Update to the latest AXCLassic source ... (from Rathe) -==Made some code changes to the GUI in hopes of better performance! -== Required SQL changes ALTER TABLE `botinventory` ADD COLUMN `id` int(11) NOT NULL auto_increment first, CHANGE `npctypeid` `npctypeid` int(11) NOT NULL DEFAULT '0' after `id`, CHANGE `botslotid` `botslotid` int(11) NULL after `npctypeid`, CHANGE `itemid` `itemid` int(11) NULL after `botslotid`, ADD COLUMN `charges` tinyint(3) unsigned NOT NULL DEFAULT '0' after `itemid`, ADD COLUMN `color` tinyint(3) unsigned NOT NULL DEFAULT '0' after `charges`, ADD COLUMN `augslot1` mediumint(7) unsigned NOT NULL DEFAULT '0' after `color`, ADD COLUMN `augslot2` mediumint(7) unsigned NOT NULL DEFAULT '0' after `augslot1`, ADD COLUMN `augslot3` mediumint(7) unsigned NOT NULL DEFAULT '0' after `augslot2`, ADD COLUMN `augslot4` mediumint(7) unsigned NOT NULL DEFAULT '0' after `augslot3`, ADD COLUMN `augslot5` mediumint(7) unsigned NOT NULL DEFAULT '0' after `augslot4`, ADD COLUMN `instnodrop` tinyint(1) unsigned NOT NULL DEFAULT '0' after `augslot5`, ADD PRIMARY KEY(`id`), COMMENT=''; ALTER TABLE `botleader` CHANGE `bot_name` `bot_name` text COLLATE utf8_general_ci NOT NULL after `leaderid`, CHANGE `zone_name` `zone_name` text COLLATE utf8_general_ci NOT NULL after `bot_name`, ADD COLUMN `zoneid` int(11) NOT NULL DEFAULT '0' after `zone_name`, COMMENT=''; ALTER TABLE `botsowners` ADD COLUMN `botarchery` int(11) NOT NULL DEFAULT '0' after `botleadercharacterid`, COMMENT=''; 04-19-2010 ========== - Update 44 ! - Version: axclassic2.1.9 - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) -==Update to the latest AXCLassic source ... (from Rathe) 03-18-2010 ========== - Update 43 ! - Version: axclassic2.1.8 - Contents: -==Update to the latest AXCLassic databse and Quest(from Rathe) -==Update to the latest AXCLassic source ... (from Rathe) -==Added Angelo's Dual login code :) 03-04-2010 ========== - Update 42 ! - Version: axclassic2.1.7 - Contents: -==Update to the latest AXCLassic databse and Quest -==Update to the latest AXCLassic source ... -==Dropped the PEQ version on the GUI, the number one reason we are so short staffed, it has become to much for us. Our main focus will always be AXClassic, and all that belongs to it. 12-27-2009 ========== - Update 41 ! - Version: axclassic2.1.6 - Contents: -==Update to the latest AXCLassic databse and Quest -==Update to the latest AXCLassic source ... -==Lot of quest submissions by Caved -==Updated PEQ Quests From the SVN as of 12-27-2009 -==Updated PEQ Database From the SVN as of 12-27-2009 -==Updated EqEmu Windows R1048 Executables -==Updated PEQ DB Editor From the SVN as of 12-27-2009 11-09-2009 ========== - Update 40 ! - Version: axclassic2.1.5 - Contents: -==Update to the latest AXCLassic databse and Quest -==Update to the latest AXCLassic source ... (Nice Bot work here) -==Updated PEQ Quests From the SVN as of 11-09-2009 -==Updated PEQ Database From the SVN as of 11-09-2009 -==Updated EqEmu Windows R1048 Executables -==Updated PEQ DB Editor From the SVN as of 11-09-2009 10-22-2009 ========== - Update 39 ! - Version: axclassic2.1.4 - Contents: -==Fixed some bot bugs I created in last update -==Updated PEQ Quests From the SVN as of 10-22-09 -==Updated PEQ Database From the SVN as of 10-22-09 -==Updated EqEmu Windows R1036 Executables -==Updated PEQ DB Editor From the SVN as of 10-22-09 10-03-2009 ========== - Update 38 ! - Version: axclassic2.1.3 - Contents: -==Updated AX Classic Database ax_classic_3.12e -==Updated AX Classic Quests from SVN 10-03-09 -==Updated AX Classic Executables R1004 -==Updated axclassic DB Editor From the SVN as of 10-03-09 -==Updated PEQ Quests From the SVN as of 10-03-09 -==Updated PEQ Database From the SVN as of 10-03-09 -==Updated EqEmu Windows R1004 Executables -==Updated PEQ DB Editor From the SVN as of 10-03-09 07-27-2009 ========== - Update 37 ! - Version: axclassic2.1.2 - Contents: -==Updated AX Classic Database ax_classic_3.10x -==Updated AX Classic Quests from SVN 7-27-09 -==Updated AX Classic Executables R816b -==Updated axclassic DB Editor From the SVN as of 7-27-09 -==Updated PEQ Quests From the SVN as of 7-27-09 -==Updated PEQ Database From the SVN as of 7-27-09 -==Updated EqEmu Windows R840 Executables -==Updated PEQ DB Editor From the SVN as of 7-27-09 -==Some Minor changes to the GUI.... 07-09-2009 ========== - Update 36 ! - Version: axclassic2.1.1 - Contents: -==Ouch a month since last update :( -==Updated AX Classic Quests From ax_classic_3.10v.zip -==Updated AX Classic Database From ax_classic_3.10v.zip -==Updated AX Classic Executables R752b -==Updated PEQ Quests From the SVN as of 7-09-09 -==Updated PEQ Database From the SVN as of 7-09-09 -==Updated EqEmu Windows R752 Executables -==Updated axclassic DB Editor From the SVN as of 7-09-09 -==Updated PEQ DB Editor From the SVN as of 7-09-09 06-07-2009 ========== - Update 35 ! - Version: axclassic2.1.0 - Contents: -==Romoved the GUI check to see login status(per forum request) -==Updated AX Classic Quests From ax_classic_3.10qr -==Updated AX Classic Database From ax_classic_3.10qr -==Updated PEQ Quests From the SVN as of 6-07-09 -==Updated PEQ Database From the SVN as of 6-07-09 -==Updated EqEmu Windows R634 Executables -==Updated axclassic DB Editor From the SVN as of 6-07-09 -==Updated PEQ DB Editor From the SVN as of 6-97-09 -==added multi-core support to the player launcher, should now load the game with just 1 core. 05-31-2009 ========== - Update 34 ! - Version: axclassic2.0.9 - Contents: -==Updated AX Classic Quests From the SVN as of 5-31-09 -==Updated AX Classic Database From the SVN as of 5-31-09 -==Updated PEQ Quests From the SVN as of 5-31-09 -==Updated PEQ Database From the SVN as of 5-31-09 -==Updated EqEmu Windows R603 Executables -==Updated axclassic DB Editor From the SVN as of 5-31-09 -==Updated PEQ DB Editor From the SVN as of 5-31-09 05-18-2009 ========== - Update 33 ! - Version: axclassic2.0.8 - Contents: -==PLEASE READ!! special restore instruction for this release do to content changes. -==Updated The GUI version to v2.0.3(minor changes) -==Updated AX Classic Quests From the SVN as of 5-18-09 -==Updated AX Classic Database From the SVN as of 5-18-09 -==Updated PEQ Quests From the SVN as of 5-18-09 -==Updated PEQ Database From the SVN as of 5-18-09 -==Updated EqEmu Windows R535 Executables -==Updated axclassic DB Editor From the SVN as of 5-18-09 -==Updated PEQ DB Editor From the SVN as of 5-18-09 -==Public login server status displayed from the GUI.(online or offline in public mode) -==Changed the way the GUI finds your IP. (local) -==added code to support booting more static zones per forum request.(not finished in this release) 05-09-2009 ========== - Update 32 ! - Version: axclassic2.0.7 - Contents: -==Updated AX Classic Quests From the SVN as of 5-9-09 -==Updated AX Classic Database From the SVN as of 5-9-09 -==Updated PEQ Quests From the SVN as of 5-9-09 -==Updated PEQ Database From the SVN as of 5-9-09 -==Updated EqEmu Windows R486 Executables -==did a rewrite of the bulk of the code, so I do expect bugs I have tested for 24 hours and can't find anything myself. Thats why I'm Releaseing. -==I have added many options yet again. PEQ DB - public or Private login -==ax_classic DB - public or Private login, with the ability to bring toons back and forth. -==while in PEQ / public mode you will connect to eqemulator.net login -==while in AXClassic / public mode you will connect to login.axclassic.com login -==the lan window has been removed its no longer needed -==going back and forth from private to public will cause auth problems so choose what you want to do. -==some menu options have changed so please have a look around -==bots can no longer go from one database to the other till we get a better system in place.. -==to many minor changes to list :( sorry 05-05-2009 ========== - Update 31 ! - Version: axclassic2.0e - Contents: -==Updated AX Classic Quests From the SVN as of 5-5-09 -==Updated AX Classic Database From the SVN as of 5-5-09 -==Updated AX Classic EqEmu Windows R461 Executables -==Fixed a the lan settings portion of the GUI. 04-26-2009 ========== - Update 30 ! - Version: axclassic2.0d - Contents: -==Updated AX Classic Quests From the SVN as of 4-26-09 -==Updated AX Classic Database From the SVN as of 4-26-09 -==Updated AX Classic EqEmu 1439WinAX Windows executables. -==Huge GUI update, added in support for login.axclassic.com the repack will also now find your local IP and your global IP. -==Cleaned up the server start funtion, added more debug code -==Change the LAN settings window to make finding your IP easier -== In total about 700 lines of code changed/added :) 04-19-2009 ========== - Update 29 ! - Version: axclassic2.0c - Contents: -==Updated AX Classic Quests From the SVN as of 4-19-09 -==Updated AX Classic Database From the SVN as of 4-19-09 -==Updated AX Classic EqEmu 1436WinAX Windows executables. -==Updated all the emu config files -- 04-11-2009 ========== - Update 28 ! - Version: axclassic2.0b - Contents: -==Updated AX Classic Database to ax_classic_3.10f and Quests. -==Updated AX Classic EqEmu 1423WinAX Windows executables. -==Updated all the emu config files -- -==Updated the login server to the latest version. -==added some fixes to the GUI that have been brought up in the forums 04-09-2009 ========== - Update 27 ! - Version: axclassic2.0 - Contents: -==Updated AX Classic Database to ax_classic_3.10e.2 and Quests. -=Updated AX Classic EqEmu 1402WinAX Windows executables. -==Romoved Peq Portion of of the Repack !! -==Added the new login system, this brings many more changes/options for everyone. Backup operations will change a bit, the dbtools section is changed also. -==Complete GUI overhaul under the hood to adapt to the new login system. -==make sure you read how to convert account in the forum first... -==I had to add back the enforced filepath for the installer, this is required for internet play, the GUI knows where the files are that it has to write to. -==More work to do, just need to get a model out for testing and feedback! 03-15-2009 ========== - Update 26 ! - Version: axclassic1t - Contents: -==Updated AX Classic Database to ax_classic_3.10b and Quests. -=Updated AX Classic EqEmu 1385WinAX Windows executables. -==Updated PEQ Quests, and Database as 03-15-09!! -==You can pick the install location of the GUI, per request. -==Some minor GUI chages --- 03-09-2009 ========== - Update 25 ! - Version: axclassic1s - Contents: -==Updated AX Classic Database to ax_classic_3.10a and Quests. -=Updated AX Classic EqEmu 1373WinAX Windows executables. -==Updated PEQ Quests, and Database as 03-09-09!! -==Fixed the IP Update script (reported By: snoopdog) (Fix by: Angelox) 03-03-2009 ========== - Update 24 ! - Version: axclassic1r - Contents: -==Updated AX Classic Database to ax_classic_3.9z and Quests. -==Updated PEQ Quests, thats about all that really changed !! -==Kind of a small update this week, But alot of cool stuff with the ax classic DB. 02-27-2009 ========== - Update 23 ! - Version: axclassic1q - Contents: -=Updated AX Classic EqEmu 1366WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9y and Quests. (many of Them) -==Updated PEQ Database to peqdb_1129Rev360 and Quest as of 02-27-09!! -==Updated EQEmu executables for PEQ to rev 367, compiled 02-27-09 -==Lots of code cleanup in the GUI, wow hard to read :) -==Code is all in place for update feature, just looking for feedback to see if we want this -==Need to run this query against saved accounts once imported ALTER TABLE `account` ADD `karma` INT(5) UNSIGNED DEFAULT '0' NOT NULL AFTER `revoked`; 02-16-2009 ========== - Update 22 ! - Version: axclassic1p - Contents: -=Updated AX Classic EqEmu 1331WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9x and Quests. -==Updated PEQ Database to peqdb_1129Rev330 and Quest as of 02-16-09!! -==Updated EQEmu executables for PEQ to rev 332, compiled 02-16-09 -==I changed the text when it says almost finished loading to (server is done loading) -==I removed the ability to start the client from the GUI, since this was cause for alot of confusion on some systems. In its place it will now make the shortcut, and add a small launcher that will setup the eqhost.txt file for you, also it will display the ipfix page. -== The repack is now using perl 510. 02-07-2009 ========== - Update 21 ! - Version: axclassic1o - Contents: -=Updated AX Classic EqEmu 1305WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9v and Quests. -==Updated PEQ Database to peqdb_1129Rev303 and Quest as of 02-07-09!! -==Updated EQEmu executables for PEQ to rev 305, compiled 02-07-09 02-01-2009 ========== - Update 20 ! - Version: axclassic1n - Contents: -=Updated AX Classic EqEmu 1296WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9U and Quests. -==Updated PEQ Database to peqdb_1129Rev288 and Quest as of 02-01-09!! -==Updated EQEmu executables for PEQ to rev 296, compiled 02-01-09 -==Some Minor changes to the GUI for future improvments, Soon I hope! 01-24-2009 ========== - Update 19 ! - Version: axclassic1M - Contents: -=Updated AX Classic EqEmu 1282WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9T and Quests. -==Updated PEQ Database to peqdb_1129Rev279 and Quest as of 1-24-09!! -==Updated EQEmu executables for PEQ to rev 282, compiled 1-24-09 01-18-2009 ========== - Update 18 ! - Version: axclassic1L - Contents: -=Updated AX Classic EqEmu 1276WinAX Windows executables. -==Updated AX Classic Database to ax_classic_3.9s. and Quests "lots of goodies here" -==Updated PEQ Database to peqdb_1129Rev271 and Quest as of 1-18-09!! -==Updated EQEmu executables for PEQ to rev 277, compiled 1-18-09 -==Lots of nice updates this time around, Angelox and Dersion have been busy. -==I spent 3-4 hours on just code cleanup for the GUI, Working in some new Features in the next release! 01-13-2009 ========== - Update 17 ! - Version: axclassic1k - Contents: -=Updated AX Classic EqEmu 1266WinAX Windows executables. -==Updated PEQ EQEMU executables to Rev 270 -==also added the new rule to the PEQ database "(0, 'EQOffline:BotCount', 5)" -==The biggest update is the code to limit number of bots --AWESOME WORK Angelo --- -==Some Minor fixes to the GUI --- 01-07-2009 ========== - Update 16 ! - Version: axclassic1j - Contents: -=Updated AX Classic EqEmu 1257WinAX Windows executables. -==Updated PEQ EQEMU executables to Rev 261 -==Most of the updates done are for the Bot Code, Some More Great work here! 01-02-2009 ========== - Update 15 ! - Version: axclassic1i - Contents: -=Updated AX Classic DB to AX_CLASSIC Ver 3.9r and EqEmu 1254WinAX Windows executables. -==Updated EQEMU executables to Rev 254 -==Updated the GUI a bit, added some more popup info for the LAN play options. -==Added a new option to the DB tools section of the GUI, this would be option number 7. what this basically does is update the player tables of any new SQL adjustments needed to keep saved player tables compatible with current build of the EMU. 12-28-2008 ========== - Update 14 ! - Version: axclassic1H - Contents: -=Updated AX Classic DB to AX_CLASSIC Ver 3.9q and EqEmu 1245WinAX1b Windows executables. -==Updated PEQ DB to peqdb_1129Rev245 -==Updated EQEMU executables to Rev 247 -==Some more minor work to the GUI and fixed some of the lan functions that did not work right in the last build. 12-21-2008 ========== - Update 13 ! - Version: axclassic1g - Contents: -=added a new feature. This should make it easier for those of you that want to open your creation up for your friends to play. Look at the lan settings button and click it, fill your info in the fields. If you need any help please feel free to post here! -==http://forums.nahunta.org/viewtopic.php?f=1&t=80==- 12-19-2008 ========== - Update 12 ! - Version: axclassic1f - Contents: -=added a new feature in the tools drop down menu, its called change w: if for some reason you get the drive w: busy error stop the server and use this tool and it should fix it for you. -=Updated AX-Classic DB/binaries to -- AX_CLASSIC Ver 3.9p/EqEmu 1241! many more goodies added by Angelox. :) -=Not really any updates coming from PEQ, maybe becasue of the server issue? -=EQEmu also updated to rev 243. 12-10-2008 ========== - Update 11 ! - Version: axclassic1e - Contents: -=some minor changes to the IP updare script (thanks Angelo) -=Updated AX-Classic DB to -- AX_CLASSIC Ver 3.9o ! -=updated PEQ DB to there latest --1129Rev233 -=EQEmu also updated to rev 238. 11-28-2008 ========== - Update 10 ! - Version: axclassic1d - Contents: -=Added a new feature, A php DB editor, the new button is added to the DB tools section, and "tools" drop down menu bar Thanks to Angelox for updating this for us!!! -=Updated AX-Classic DB to -- AX_CLASSIC Ver 3.9n ! -=updated PEQ DB to there latest --1129Rev233 -=EQEmu also updated to rev 234. -=added more code for the update patch option!! 11-26-2008 ========== - Update 9 ! - Version: axclassic1c - Contents: -=Thanks to DeadCatDefender for finding my error, now fixed! -=added 3 features that I forgot to put into the last release ! -=From the "tools" drop down menu bar you can install a shortcut for eqgame.exe to your desktop, no patchme stuff needed! -=You can now run the eqgame.exe Right from the GUI also. -=added support for editing eqhost.txt in the "tools" drop down menu bar -=still working on shared map directory.. Still testing making sure all is good !! 11-25-2008 ========== - Update 8 ! - Version: axclassic1b - Contents: -=Some minor changes to the GUI itself....Cleaned up some code.=- -=Updated to Angelos New version 3.9m, and EqEmu 1222 Windows executables. Angelo Did great job with the day/night in OOT, Take the time to check it out :) -=Updated PEQ to peqdb_1129Rev222... and eqemu rev232.. added the new_spells table :( -=Started implementation of a single map directory, Idea and work from Angelo. Next release should have this. 11-18-2008 ========== - Update 7 ! - Contents: -=Some minor changes to the GUI itself.... -=removed some tables from the player backup routine. -=thanks to Angelox and DeadCatDefender for finding some bugs for me to fix 11-17-2008 ========== - Update 6 ! - Contents: -=This has SVN r212 binaries and the latest CVS Peq Database -=Update to latest 3.9L AXClassic quest and database!!! "http://www.nahunta.org/~angelox/" -=Update to latest peq1129 rev212 PEQ quest and database!!! "http://www.projecteq.net/phpBB2/viewforum.php?f=60&sid=be8b9646d78777e29d4a9ba9f6b5170c" -=if you have any questions please direct them toward me and not John :) -=This was all John Adams Idea I just updated and made it a bit easier 11-12-2008 ========== - Update 5 ! - Contents: -=Revamped the GUI now you can change player tables from AXClassic to PEQ and back -=Update to latest AXClassic quest and database!!! -=This has SVN r193 binaries and the latest CVS Peq Database -=Bots are enabled, in game do #bot help for more info -=if you have any questions please direct them toward me and not John :) -=This was all John Adams Idea I just updated and made it a bit easier 10-16-2008 ========== - Update ! - Contents: -=This was all John Adams Idea I just updated and made it a bit easier -=This has SVN r103 binaries and the latest CVS Peq Database -=Bots are enabled, in game do #bot help for more info -=if you have any questions please direct them toward me and not John :) 2007-11-14 ========== - Update 3! - Contents: EQEmu-0.7.0-1061 (graveyards and corpse summoning) PEQ "Ysheka" Release DB (PoP Tier 1-3 working) PEQ "Ysheka" Quest Pack PEQEditor moved (http://localhost/peqeditor once 1-MySQL+Website.bat has run) phpMyAdmin (http://localhost/phpMyAdmin once 1-MySQL+Website.bat has run) - Added a DB Tool to help backup and restore data (or load new world data from PEQ SVN) - Fixed Variables table that had exp set to null (thanks spruebox!) and added a default Rules set 2007-10-31 ========== - Released updated repack - Contents: EQEmu-0.7.0-1051 PEQ "Ysheka" Beta 1 DB Apache PHP MySQL 5.0.27 StandAlone ActivePerl 5.8.8.816 PEQEditor (http://localhost/ once 1-MySQL+Website.bat has run) - Quest Scripts are working! - Database and Quest Scripts are current through PEQ "Ykesha" Quest Scripts download from projecteq.net - I decided to update the core to the most recent binaries, so hopefully this repack release will last a little while 2007-06-04 ========== - Released first repack - Contents: EQEmu-0.7.0-992, PEQ "Luclin" Release DB, Apache, PHP, MySQL 5.0.27 StandAlone - Quest Scripts are not working right now (no perl packaged)