[RC] bbDKP 1.4.1

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Scam Warning
Drakken
Registered User
Posts: 144
Joined: Thu Jun 12, 2003 6:59 pm
Contact:

Re: [RC] bbDKP 1.2.2

Post by Drakken »

We have a pretty big Rift division that could use this mod. Is there a procedure for adding new games not listed in the description? Possibly something we can do on the fly or will new development have to take place each time a new game is supported?
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.2

Post by Sajaki »

hi,

Most parameters of bbDKP are user-changeable (races, classes, etc) but there's more to installing a game than that. (graphics etc.)

As it happens, Rift will be included in the next revision (1.2.3).

this is what i plan to have.
  • Multigame : you can select multiple games. this is important for multi-game guilds.
  • new game support for Rift
  • game updates for wow: Cata event icons
  • Aion levels update
  • Better event icon support.
  • enhanced UCP
eta : +/- 2 weeks.
Drakken
Registered User
Posts: 144
Joined: Thu Jun 12, 2003 6:59 pm
Contact:

Re: [RC] bbDKP 1.2.2

Post by Drakken »

This is great news. Thanks for your hard work. :geek:
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.2

Post by Sajaki »

version 1.2.3 is released now, you can see it in action on http://demo.bbdkp.com/dkp.php?page=standings.
  • [NEW] Roster redone
  • [NEW] compatible with handyman's mod update status mod
  • [NEW] statistics page redone, graphs added for Priority ratio, Attendance
  • [NEW] front end files removed, moved to /includes, and recoded as modules loaded from one accesspoint, dkp.php. Advantage is that there is less code, since the user access and session is now controlled from dkp.php.
  • [NEW] html style files are now included from 1 framework html file, with div panes, allowing future inclusion of sidepanels, since the middle div can be adjusted to say 80%
  • [NEW] news acp module removed, posting functions moved to new front-end rules/newspage.
  • [MODDB] w3c validation passed for all pages
  • [NEW] New games included : Rift and Swtor (Star Wars The old republic)
  • [NEW] Multi game support : you can install multiple games at once (wow, aion, swtor, eq, eq2, rift, lotro, vanguard ...)
  • [NEW] Event icon support added for Raidplanner, configurable in acp.
  • [NEW] new event icons for Cataclysm, Wotlk
  • [NEW] Everquest 2 Icon upgrades
  • [FIX] and bugfixes as always.
User avatar
WileCoyote
Registered User
Posts: 432
Joined: Sun Jan 15, 2006 7:37 am
Location: Austria
Name: Wolfgang
Contact:

Re: [RC] bbDKP 1.2.3-PL3

Post by WileCoyote »

Is bbDKP in it's current version compatibel with phpBB 3.0.9?
Regards
WileCoyote
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.3-PL3

Post by Sajaki »

yes.

http://demo.bbdkp.com

is running 3.09
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.3-PL3

Post by Sajaki »

for the next version i'll add some new features :
  • new jquery statistics module. visualising dragon killpoints statistics, raid attendance and EPGP statistics
  • new UCP module, so phpbb users can add a character to their account without asking a moderator/admin.
  • Subsilver2 will be removed. table based design is out.
Raidplanner will be released along with 1.2.4.
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.4

Post by Sajaki »

1.2.4 released ;)
User avatar
drumstix42
Registered User
Posts: 1100
Joined: Tue Sep 24, 2002 11:01 pm
Location: NJ
Contact:

Re: [RC] bbDKP 1.2.4

Post by drumstix42 »

Hey Sajaki,

I've been following your mod for quite a long time now, and I believe I even posted a few contributions a year or so ago :)

Anyhow, I'm really looking to upgrade a gaming guild that I'm in from their old DKP system, however I have a big question for you. 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?

Our current system allows us to add attendees, and individually select people to receive a specific amount of DKP. The reasoning: People who show up on time get a bonus, people are who are late or leave early, get less DKP. You set the DKP for the "raid" which is what everyone receives, unless you specific a person to get a different value.

I realize that the Adjustment feature can achieve this same goal, however, it is MUCH more work to do this, and is inefficient. With the above method, you can view a raid and simply see who received x DKP, and even put a comment on each person for their DKP amount.

I'm fairly decent in PHP, but am no good at the database/MySQL part. I'd be willing to contribute and test out an awesome feature like this, but unfortunately am stuck.

Thoughts?
Need a phpBB update or mod installed? PM me for any questions and pricing!
HostMonster.com (Unlimited Space, Unlimited Transfer, Unlimited Domains, $6.95/month )
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.4

Post by Sajaki »

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?
Not necessary since Time bonus management is a feature since release 1.2.0 (march 2011)

The adjustments feature is meant as a last resort, as a catch-all.

There is a time bonus column in the dkp table aswell (member_zerosum_bonus), so rollbacks do not mix with adjustments as you can't discern adjustments otherwise.

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;
this is part of the dkp settings ACP.
Image

So if you add a raid then you can set the time bonus per raid in function of start/end time.
Image

with the plugin "raidtracker", time bonuses can be set per member. it reads an xml file that comes from a WoW addin (ct_raidtracker), loads the join/leave times and all, and calculates for each member the bonus, and then records the raid.

afterwards, you can still edit each participants bonus by just editing the raid and clicking the green wheel.
Image
Last edited by Sajaki on Fri Oct 21, 2011 5:54 pm, edited 5 times in total.
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.4

Post by Sajaki »

.
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP 1.2.4

Post by Sajaki »

bbDKP 1.2.5 released, top post is updated
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP Portal 1.2.5

Post by Sajaki »

Hi all,

I'd like to inform you of the milestones reached for the next release. ETA is probably a week from now.
a Raidplanner update is due next and the other plugins will then follow.

Milestones reached :

General
  • jquery updated, comatibility mode added for use with mootools, uses "jquery" instead of "$" ...
  • [UPD] wow class images have a better icon
  • [FIX] News module now inserts line breaks proplery (not as /n/n)
  • [FIX] updated file headers for Github move
  • [FIX] pagination fixed in viewmember. cumulated earnings/items now paginating correctly
  • [FIX] roster listing redesign, pagination, sorting and minimum level added
  • [FIX] standing pagination added
  • [FIX] removed hardcoded language in bbdkp credits footer
  • [FIX] German language fixes (@killerpommes)
  • [FIX] frontpages XHTML 1.1 compliant.
  • [FIX] inline css in stats.html moved to bbdkp.css
  • [FIX] statistics page attendance array sorting headers corrected
  • [UPD] Updated standings and viewmember for new adjustment decay
Portal
  • [UPD] Links block updated
  • [FIX] functions_display inclusion bug fixed
ACP
  • [FIX] Added game id to html form in race acp. this fixes a few reported problems
  • [NEW] Added the ability to have the date format be set by the ACP (@Aerwin TheGadgetGuy)
  • [FIX] w3c fix : if no data in item, raid, member listing then don't show table.
  • [FIX] raid duplication icon changed
  • [FIX] item acp reprogrammed from scratch, using master detail view, with new ajax item searcher
  • [FIX] javascript changes, now references id instead of element name
  • [FIX] ranks support special characters (#152)
  • [FIX] news & recruitment forum selector in indexpage config now works
  • [FIX] welcomeblock on/off switch now no longer targets recruitment block
  • [FIX] welcomeblock parses bbcodes
  • [NEW] DKP logging now shows phpbb membername
  • [NEW] Adjustment Decay with on/off switch per adjustment
  • [NEW] bbDKP cron job scheduler to automate decay calculation
  • [NEW] Minimum EP added
  • [FIX] ACP XHTML 1.1 compliant.
  • [NEW] Mass member delete added
  • [FIX] member delete button to the right
  • [NEW] Welcome block setting in ACP
Still In progress
  • [UPD] swtor races now used for specialisation as races dont exist in swtor.
  • [UPD] DKP character info in custom profile for usage in forum
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP Portal 1.2.6

Post by Sajaki »

bbDKP 1.2.6 released, top post is updated
User avatar
Sajaki
Registered User
Posts: 1390
Joined: Mon Mar 02, 2009 1:41 pm
Location: Amsterdam
Contact:

Re: [RC] bbDKP Portal 1.2.6

Post by Sajaki »

updated to v126-pl1 to fix a decay error and a mysql index error.
Locked

Return to “[3.0.x] MODs in Development”