Not necessary since Time bonus management is a feature since release 1.2.0 (march 2011)How difficult would it be to modify the code to allow each attendee of a raid to be assigned specific DKP on adding a raid?
Code: Select all
CREATE TABLE `phpbb_bbdkp_memberdkp` (
`member_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`member_earned` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_spent` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_adjustment` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`member_firstraid` int(11) unsigned NOT NULL DEFAULT '0',
`member_lastraid` int(11) unsigned NOT NULL DEFAULT '0',
`member_raidcount` mediumint(8) unsigned NOT NULL DEFAULT '0',
`member_raid_value` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_time_bonus` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_zerosum_bonus` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_raid_decay` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_item_decay` decimal(11,2) NOT NULL DEFAULT '0.00',
`member_dkpid` smallint(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`member_dkpid`,`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;