mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 05:21:29 +00:00
Currently working: stat bonuses and client side only effects Currently not working: Mark NPC and others that need more server side work Currently only tested on UF, Ti and 62 may work, but not tested SoF, SoD, and RoF need packet translators, which are most likely the same as UF
10 lines
264 B
SQL
10 lines
264 B
SQL
CREATE TABLE `raid_leaders` (
|
|
`gid` int(4) unsigned NOT NULL,
|
|
`rid` int(4) unsigned NOT NULL,
|
|
`marknpc` varchar(64) NOT NULL,
|
|
`maintank` varchar(64) NOT NULL,
|
|
`assist` varchar(64) NOT NULL,
|
|
`puller` varchar(64) NOT NULL,
|
|
`leadershipaa` tinyblob NOT NULL
|
|
);
|