[Quick Start] [Abstract] [Installation] [Advanced Usage] [Troubleshooting and Debugging]
Double-click AoCEQ.exe to launch the application. Connect to localhost or 127.0.0.1, port 4000. Use the item [shortname] command to view an item's details, i.e.: "item claws panther" Use the details [shortname] command to view a familiar and detailed item listing, i.e.: "details claws panther" Use the pops [longname] command to view an item's source, i.e.: "pops the panther claws" Use the loads [mobname] command to find out what a given mob may drop, i.e.: "loads the black panther"
If AoCEQ's clipboard option is enabled, the last query's results will be placed into the clipboard so that they can be easily shared or logged (ctrl+v works well for pasting in most CUA applications).
If you use a MUD client that supports MXP, try right-clicking the wheel in the taskbar, choosing settings, and enabling MXP.
If you already have aliases setup for commands of the same name, you may change the AoCEQ command-names using the settings dialog in order to avert conflict.
Having access to comprehensive and accessible game data makes playing Age of Chaos more fun. This application integrates a sizable equipment database into an existing play environment. At its most basic level, it provides a trivial means of querying for item statistics. With more advanced usage, it is possible to issue and process complex queries involving item properties and origins.
AoCEQ is a "standalone" executable. Aside from utility built into modern Windows operating systems, it has no external dependencies. This means that it can be executed from any location that the operating system has access to, be it thumb-drive, website, network share, temporary file storage, or other location without the need for a formal installation process. Configuration settings are stored in the current-user section of the system registry if it is writable by the current user as a convenience, but the program should still function just fine on a totally locked-down system.
To use the program, simply execute AoCEQ.exe. Upon execution, a small rotating wheel/globe should appear in the system notification area near the time display on the taskbar. The rotation indicates that the program is waiting for a connection. Hovering the mouse cursor over the icon should present a popup indicating the status of the application. Because the application acts as a proxy between the user's MUD client and the Age of Chaos game, it will need to be able to accept connections from local clients and initiate connections to the Age of Chaos server. Personal firewalls, such as Zone Alarm, will need to be instructed to allow such communication - if you are prompted by your firewall during this time, please take a moment to ensure that appropriate settings are chosen. By default, the AoCEQ application will act as a server on port 4000, the same port that Age of Chaos listens on. If another application, such as a personal MUD server or another proxy is already using this port, alternatives may be chosen by right-clicking the rotating globe and choosing settings from the popup window.
Internally, AoCEQ stores information in three table-like structures. This data can be extracted using queries modeled after the SQL (Structured Command Language). By default, the "qeq" command is used to issue queries. However, it is necessary to have some understanding of the way the tables are structured to make effective use of this command. Below are figures summarizing the internal table data formats:
|
Table: EQ |
|
Field Name |
Field Type |
Description |
Name |
Character String |
This is the item's short name, as seen in the title when identified in-game using a scroll. |
Damage |
Character String |
This is an item's damage dice - i.e., "4d6". Not to be confused with the "Dam" field, which refers to bonus damage, i.e. +3 dam. |
Armor |
Scalar Integer |
This refers to bonus armor, i.e., what you might find on a robe or necklace versus the base protection offered by a breastplate. |
AC |
Scalar Integer |
This is an item's ACAP (Armor Capacity to Apply). Not to be confused with the "Armor" field, which refers to bonus armor, i.e. -7 AC. |
Kind |
Character String |
This field mimics AoC's "Item Type" field, i.e. "armor", "wand", etc. |
Wear |
Character String |
This field refers to the slot in which an item may be equipped. |
Dam, Hit, Weight, Weight, Moves, Value, HP, Mana, Age, Str, Con, Wis, Int, Cha, Dex, PEarth, PAir, PFire, PWater, PSpirit, MEarth, MAir, MFire, MWater, MSpirit, Charges, Castlevel, Perc_cast |
Scalar Integer |
These numeric fields mirror the in-game equivalents. |
Anticlass |
Character String |
A comma separated list of character classes and/or races who cannot equip this item. |
Antialignment |
Character String |
A comma separated list of character alignments who cannot equip this item. |
Affects |
Character String |
A list of affects granted by the item. |
Spells |
Character String |
A list of spells that the item can cast. |
Flags |
Character String |
A list of flags the item has, mirroring in-game - i.e., "magic", "glow", etc. |
|
Table: Pops |
|
Field Name |
Field Type |
Description |
Who |
Character String |
A mob's name. |
What |
Character String |
An item's long-name. |
|
Table: Namemap |
|
Field Name |
Field Type |
Description |
Shortname |
Character String |
An item's short-name. |
Longname |
Character String |
An item's long-name. |
What I want |
What I type |
What I get |
Show me all the chest pieces that a barbarian can use. |
qeq where wear='body' and anticlass not like '%barb%' |
"82 items: armor bone wood carved suit, armor death, ..." |
Show me all the chest pieces that a barbarian can use sorted by their ACAP. |
qeq where wear='body' and anticlass not like '%barb%' order by ac desc |
"82 items: armor sigmar, shining steel breastplate plate..." |
Show me all the enchantable chest pieces that a barbarian can use sorted by their ACAP. |
qeq where wear='body' and anticlass not like '%barb%' and flags = 'nobits' order by ac desc |
"51 items: plate adamantine breastplate breast, silver breastplate ancient,..." |
Show me all the rings an evil mage can wear that have both mfire and mspirit. |
qeq where wear='finger' and mfire > 0 and mspirit > 0 and anticlass not like '%mage%' and antialignment not like '%evil%' |
"ring maggot infested rotting roses - +4mfire -2mwater +4mspirit +ProtGood - Usable by: evil or nuetral arti, cc, mu, oc" |
Show me all the weapons that proc desecrate, ordered by the proc frequency. |
qeq where kind='weapon' and spells like '%desec%' order by perc_cast desc |
"4 items: silver scythe silvery, onyx hammer bloody ssinssrigg'del elgg, blackened short sword stone-wrought gorgon's groom, ornate arrow runes dark" |
Show me all the featherfall gear a goodie warrior can wear. |
qeq where affects like '%fall%' and antialignment not like '%good%' and anticlass not like '%war%' |
"16 items: black marble ring, black robe shimmering doomlord balrog skin..." |
Show me 2 items that are flagged "dark." |
qeq where flags like '%dark%' limit 2 |
"187 items: a black mithril stiletto, accursed sword greatsword fireblade" |
Show me pearth robes. |
qeq where pearth > 0 and wear='about' |
2 items: robe kabaa, tabor drum instrument leather sling feathered eagle |
'blackened short sword stone-wrought gorgon''s groom', '2D3', 3, 0, 0, 0, 'weapon', 'wield', 18, 17500, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 'NONE', 'desecrate', 4, '!good,!neutral', 'dark,magic', 'artificer,barbarian,bard,chaos cleric,druid,magic user,monk,order cleric,paladin,ranger,thief,warrior'Although the formatting in this document may not reflect it, the above example should be contained entirely within one line of text.
'blackened short sword stone-wrought gorgon''s groom', 'a blackened, stone-wrought short sword, ''The Gorgon''s Groom'''Following a series of such lines should be a line containing the single word, "POPS" - case being significant.
'Qithazria the Medusa', 'a blackened, stone-wrought short sword, ''The Gorgon''s Groom'''Finally, the last line in the file should contain the word "END" on a line by itself.
Such a file saved in AoCEQ's working directory with the name "aoceq.csv" will be loaded and used by AoCEQ without incident. Files edited on UNIX may need to be passed through sed or unix2dos to convert from cr to cr/lf formatting. Be warned, however, that proper formatting is essential and that AoCEQ will not give detailed error messages for malformed input - honestly, this functionality is an afterthought implemented by request rather than a design goal. Your mileage may vary. If you are successful, however, please do share your efforts with others!'blackened short sword stone-wrought gorgon''s groom', '2D3', 3, 0, 0, 0, 'weapon', 'wield', 18, 17500, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 'NONE', 'desecrate', 4, '!good,!neutral', 'dark,magic', 'artificer,barbarian,bard,chaos cleric,druid,magic user,monk,order cleric,paladin,ranger,thief,warrior'NAMEMAP
'blackened short sword stone-wrought gorgon''s groom', 'a blackened, stone-wrought short sword, ''The Gorgon''s Groom'''
POPS
'Qithazria the Medusa', 'a blackened, stone-wrought short sword, ''The Gorgon''s Groom'''
END