PDA

View Full Version : Getting augs to work, what am I doing wrong


Pinhedd
11-22-2004, 03:53 PM
okay I searched and searched, no info has come out yet on how to get augs to work, I'll put together what i've done so far.

Downloaded the latest comiled binaries (from november 16th) (MySql and perl are working from a previous release)

Downloaded and sourced the Kunark Database into a fresh database

Downloaded and sourced merchantlist_temp.sql and doors_update.sql (read somewhere that doorsdata.sql shouldn't be used)

Added the npc_aggro column into npc_types

sourced the following into the database:
ALTER TABLE `items` add `charmformula` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown001` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `collected_slot_id` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown004` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `collected_inst_id` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown021` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown022` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown023` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown064` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown070` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown072` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `unknown108` INT(11) DEFAULT "0" NOT NULL;
ALTER TABLE `items` add `distiller` INT(11) DEFAULT "0" NOT NULL;

Added augslot1-5 to inventory, sharedbank and object_data (or whatever it is) as per to what the zone.exe said

This is all I could find, and so I think that it should work, so I summon myself up an aug, and an augmentation sealer (item), I get the "Insert XXXXX into XXXXX" message, but when I press yes, nothing happens. I believe that the container itself might just be setup wrong, or that something may be wrong in the compiled code (something about augslot4 loading twice and augslot 3 being skipped).

I hope I didn't miss anything. If anyone has gotten augs to work, please tell me what it is I'm doing wrong or post a HOW TO: guide.

EDIT: I probably should mention that there were no error messages in the world.exe/zone.exe

eq_addict_08
11-22-2004, 08:23 PM
I do not believe augments have been finished for cvs yet.. Would suggest writing code yourself, but think someone else in in the process now.

Xorith
11-23-2004, 04:34 AM
Augments are in on CVS. You have to add more than just that to your database. Review your logs upon startup for the statements.

Pinhedd
11-23-2004, 02:16 PM
As I said, there's nothing out of the ordinary that I could see:

World.exe

[Status] CURRENT_WORLD_VERSION:EQEMu 0.6.0-DR2
[Status] Loading variables..
[Status] Loading zones..
[Status] Clearing groups..
[Status] Loading items..
[Status] EMuShareMem loaded
[Status] Loading items from database: count=36965
[Status] ./LoginServer.ini read.
[Status] Loading guild ranks..
[Status] Loading ./addon.ini..
[Status] Loading EQ time of day..
[Status] Deleted 0 stale player corpses from database
[Status] Deleted 0 stale player backups from database
Breaking bards...done
TCP listening on: pinhedd.homeip.net:9000
World server listening on: pinhedd.homeip.net:9000
Connected to LoginServer: newlogin1.eqemulator.net:5994
73766 New TCP connection: 127.0.0.1:3309
73766 New TCP connection: 127.0.0.1:3310
73766 New TCP connection: 127.0.0.1:3311
New zoneserver: #1 127.0.0.1:3311
New zoneserver: #2 127.0.0.1:3310
New zoneserver: #3 127.0.0.1:3309
Zoneserver SetConnectInfo: 127.0.0.1:3309: pinhedd.homeip.net:8997
Zoneserver SetConnectInfo: 127.0.0.1:3310: pinhedd.homeip.net:8996
Zoneserver SetConnectInfo: 127.0.0.1:3311: pinhedd.homeip.net:8995

Zone.exe

[Status] CURRENT_ZONE_VERSION: EQEMu 0.6.0-DR2
[Status] Loading Variables
[Status] Loading zone names
[Status] Loading items
[Status] EMuShareMem loaded
[Status] Loading npcs
[Status] Loading npc faction lists
[Status] Loading loot tables
[Status] Loading doors
[Status] Loading guilds
[Status] Loading factions
[Status] Loading AA effects
[Status] Loading swarm spells
[Status] Loading tributes
[Status] Loading corpse timers
[Status] Loading what ever is left
[Status] Loading commands
[Status] 177 commands loaded
[Status] Loading embedded perl XS
[Quest] Loading perlemb plugins.
[Quest] Loading perl commands...
[Error] Starting command queue Mapping...

[Quest] Loading perlemb plugins.
[Quest] Loading perl commands...
[Status] Entering sleep mode
Connected to worldserver: 127.0.0.1:9000

the Error in there probably has something to do with Perl, thats irrelivent to augs though.

Doodman
11-23-2004, 04:21 PM
It you haven't, the cleanest way would be to pull the latest item database from the links on the main eqemu page and replace your items (unless of course you've done custom items).

That has all the fields added, etc (excpet for maybe a few). Some Unknowns were shifted around to match their offset in the stream.

LE changed the database and I was hoping for a conversion script, but hes been afk for a while. I try to do one up for people who might have custom items, etc.

Pinhedd
11-23-2004, 11:15 PM
Thanks doodman, I'll check that out.