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;
1 line
121 B
SQL
1 line
121 B
SQL
update starting_languages set race=2 where race=3 and language_id=3; #dwarf (2) language id of 3 is not erudite race (3)
|