682e023635
- Temporary item flag support (removes item 30 minutes from camp out) Rule R_Player, TemporaryItemLogoutTime added for seconds to deletion of item - Heirloom item flag support added (limited to group support) Rule R_Player, HeirloomItemShareExpiration added for seconds to inability to trade item between prior group members(tbd raid) SQL Updates: CREATE TABLE `character_items_group_members` ( `unique_id` int(10) unsigned NOT NULL default 0, `character_id` int(10) unsigned NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; alter table character_items add column last_saved timestamp default current_timestamp on update current_timestamp; alter table character_items add column created timestamp default current_timestamp;
4 lines
No EOL
193 B
SQL
4 lines
No EOL
193 B
SQL
CREATE TABLE `character_items_group_members` (
|
|
`unique_id` int(10) unsigned NOT NULL default 0,
|
|
`character_id` int(10) unsigned NOT NULL DEFAULT 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |