Finally released, it's not "production quality" but it seems that it's usable.
!!!Read the installation instructions below!!!!
You need microsoft .Net for this tool to run.
I N S T A L L A T I O N.......I N S T R U C T I O N S
-----------------------------------------------------
1) Unzip in a folder in your server
2) create a database in your sql server named "a3log"
3) Create a table named "rawlog"
Code:
USE [a3log]
GO
/****** Object: Table [dbo].[rawlog] Script Date: 02/23/2010 20:53:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[rawlog](
[id] [bigint] IDENTITY(1,1) NOT NULL,
[logdatetime] [datetime] NOT NULL CONSTRAINT [DF_rawlog_logdatetime] DEFAULT (getdate()),
[logtext] [varchar](1000) NOT NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
4) create an SQL server login "a3log" with password "a3log"
5) create a user named a3log in a3log database which is mapped to the loginname "a3log" with "db_owner" permissions.
6) Create an ODBC DSN named .... "a3log"
7) Run A3Logger.exe BEFORE starting your Zoneserver
8) Edit zoneserver svrinfo.ini and set:
GameLogServerIP = the ip of your server
GameLogServerPort = 8081
9) Start zoneserver, if it found A3Agent it will display a message:
"Connect LogServer OK: <your ip> 8081

Otherwise it will just give you an error message!
10) Login to game and do something , drop items, pickup, buy items, and then quit game
11) Open SQL Mgmt Studio and go to a3log db
12) Open the rawlog table
13) Enjoy 
http://forum.ragezone.com/attachment...g-a3logger.zip