Last visit was: less than a minute ago

It is currently 20 Jun 2013, 22:54

What games should bbdkp support ?

bbdkp discussion that doesn't fit in another category.

What games should bbdkp support ?

Dark Age of Camelot, AOC
2
2%
Everquest/2
8
9%
FFXI
1
1%
Lord of the Rings Online
9
10%
Vanguard
1
1%
Warhammer Online, AION
3
3%
World of Warcraft
25
29%
Star Trek Online
2
2%
Starwars : The Old Republic
18
21%
Rift
17
20%
 
Total votes : 86
phrosty

Re: What games should bbdkp support ?

Postby phrosty » 10 Oct 2008, 23:05

Awesome to see the community take notice of this. As the idea and implementation for other games thus far has been spectacular.

I believe the person who developed the standalone ffDKP mod might be able to help bring this together as he has experience playing the game so the class(job) craft, et cetra tables are already structured. I just don't know how willing he is to share his work to be included in this mod.

/2cents
Top

Necksnapper

Re: What games should bbdkp support ?

Postby Necksnapper » 23 Oct 2008, 00:02

FF support would be fantastic! This great system would make the hell of running an end-game LS much more managable!
Top

ethereal
Lord Baron
User avatar
Posts: 115
Joined: 27 Feb 2008, 00:05

Re: What games should bbdkp support ?

Postby ethereal » 08 Feb 2009, 17:32

Aion: The Tower of Eternity - should be supported by bbdkp :D

The exact release date for EU/US wasn't announced yet but its in the Q1 or this year.
I started to work on a webpage for aion using bbdkp 1.0.9 b3.
http://aion.ethereals.eu
Top

flameattack

Re: What games should bbdkp support ?

Postby flameattack » 13 Apr 2009, 09:24

Lineage 2 Support would be great!
Top

Zypher
Farmhand
Posts: 11
Joined: 29 Dec 2007, 20:56
Location: The Bay, California

Re: What games should bbdkp support ?

Postby Zypher » 17 May 2009, 19:21

Age of Conan is rather easy...

Code: Select all
$games = array(
    'wow'                 => "World of Warcraft",
    'aoc'                => "Age of Conan",
    'lotro'             => "The Lord of the Rings Online",
    'eq'                 => "EverQuest",
    'DAoC'                 => "Dark Age of Camelot",
    'Vanguard-SoH'        => "Vanguard - Saga of Heroes",
    'eq2'                 => "EverQuest II",
    'warhammer'         => "Warhammer Online",
    'FFXI'                 => "Final Fantasy XI"
);


//classes

Code: Select all
if ($game == "aoc")
{
    $queries = array(
       "DELETE FROM ". $bbeqdkp_table_prefix ."classes;",
   
       "UPDATE " . $bbeqdkp_table_prefix . "memberlist SET member_level = 80 WHERE member_level > 80;",
   
       "ALTER TABLE " . $bbeqdkp_table_prefix . "memberlist MODIFY member_level tinyint(2) NOT NULL default '80';",
   
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (0, 'Unknown', 'Full Plate',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (1, 'Assassin', 'Cloth Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (2, 'Barbarian', 'Light Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (3, 'Bear Shaman', 'Medium Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (4, 'Conqueror', 'Heavy Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (5, 'Dark Templar', 'Heavy Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (6, 'Demonologist', 'Cloth Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (7, 'Guardian', 'Full Plate',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (8, 'Herald of Xotli', 'Cloth Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (9, 'Necromancer', 'Cloth Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (10, 'Priest of Mitra', 'Light Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (11, 'Ranger', 'Medium Armor',0,80);",
       "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (12, 'Tempest of Set', 'Light Armor',0,80);",
             
       "DELETE FROM ". $bbeqdkp_table_prefix ."factions;",

       "DELETE FROM ". $bbeqdkp_table_prefix ."races;",
       "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (0, 'Unknown');",
       "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (1, 'Aquilonian');",
       "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (2, 'Cimmerian');",
       "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (3, 'Stygian');",
    );
       
        foreach ( $queries as $sql )
        {
           $db->sql_query($sql);
        }
}


//recruitment

Code: Select all
if ($game == "aoc")
{
    $queries = array(
        "DELETE FROM ". $bbeqdkp_table_prefix ."indexpage;",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('n_news','5')",     // how many news
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('news_forum_id','2')",    // forum id where we get news..
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('n_items','5')",  // how many items on last drops..
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('rec_forum_id','3')", // forum id for recruitment status link       
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('status','Closed')",   //Classes
   
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Assassin','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Barbarian','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Bear Shaman','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Conqueror','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Dark Templar','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Demonologist','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Guardian','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Herald of Xotli','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Necromancer','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Priest of Mitra','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Ranger','Closed')",
        "INSERT INTO ". $bbeqdkp_table_prefix ."indexpage (setting, value) VALUES ('Tempest of Set','Closed')",
    );

    foreach ( $queries as $sql )
    {
       $db->sql_query($sql);
    }
}


and my work on a dkp bot will make it ever better :)
Image
Top

PhaxeNor

Re: What games should bbdkp support ?

Postby PhaxeNor » 03 Jun 2009, 19:46

Runes of Magic would be cool, but its a 2 class game. so might not be supported :|
Top

xeeni7
Craftsperson
User avatar
Posts: 30
Joined: 13 Mar 2009, 16:33

Re: What games should bbdkp support ?

Postby xeeni7 » 16 Feb 2011, 11:54

how about Rift support ? it's rumoured to be a great game.



the open Beta starts Feb 15 :
OOM does not mean out of mobs and want more
Top

Chrome
Peasant
User avatar
Posts: 5
Joined: 30 Jun 2010, 15:57
Location: Chicago

Rift

Postby Chrome » 31 Mar 2011, 21:37

I don't really have a clue what I'm doing unfortunately. Tried to edit one of the update files and replace info with Rift stuff but I wouldn't know what to do with it anyway :P (I tried and botched the hell out of my bbdkp install lol)

Code: Select all
<?php
if (!defined('IN_PHPBB'))
{
   exit;
}

function install_rift($bbdkp_table_prefix)
{
    global  $db, $table_prefix, $umil, $user;

    $db->sql_query('TRUNCATE TABLE ' . $bbdkp_table_prefix . 'classes');
   
    $sql_ary = array();
    // Rift classes

   $sql_ary[] = array('class_id' => 0, 'class_name' => 'Unknown', 'class_armor_type' => 'NONE' , 'class_min_level' => 1 , 'class_max_level'  => 99 );
   $sql_ary[] = array('class_id' => 1, 'class_name' => 'Cleric', 'class_armor_type' => 'CHAIN' , 'class_min_level' => 1 , 'class_max_level'  => 99 );
   $sql_ary[] = array('class_id' => 2, 'class_name' => 'Mage', 'class_armor_type' => 'CLOTH' , 'class_min_level' => 1 , 'class_max_level'  => 99 );
   $sql_ary[] = array('class_id' => 3, 'class_name' => 'Rogue', 'class_armor_type' => 'LEATHER' , 'class_min_level' => 1 , 'class_max_level'  => 99 );
   $sql_ary[] = array('class_id' => 4, 'class_name' => 'Warrior', 'class_armor_type' => 'PLATE' , 'class_min_level' => 1 , 'class_max_level'  => 99 );
   $db->sql_multi_insert( $bbdkp_table_prefix . 'classes', $sql_ary);
      unset ($sql_ary);
     
    $db->sql_multi_insert($bbdkp_table_prefix . 'indexpage', $sql_ary);
   
    unset ($sql_ary);      
    // class roles - no need to list with role switching
    "DELETE FROM ". $bbdkp_table_prefix ."roles;",
   
    // Rift factions
    $db->sql_query('TRUNCATE TABLE ' . $bbdkp_table_prefix . 'factions');
    $sql_ary = array();
    $sql_ary[] = array('faction_id' => 1, 'faction_name' => 'Defiant' );
    $sql_ary[] = array('faction_id' => 2, 'faction_name' => 'Guardian' );

    $db->sql_multi_insert( $bbdkp_table_prefix . 'factions', $sql_ary);
    unset ($sql_ary);
   
    // Rift races
    $db->sql_query('TRUNCATE TABLE ' . $bbdkp_table_prefix . 'races');
    $sql_ary = array();
    $sql_ary[] = array('race_id' => 0, 'race_name' => 'Unknown' , 'race_faction_id' => 1 );
    $sql_ary[] = array('race_id' => 1, 'race_name' => 'Bahmi' , 'race_faction_id' => 1 );
    $sql_ary[] = array('race_id' => 2, 'race_name' => 'Eth' , 'race_faction_id' => 1 );
    $sql_ary[] = array('race_id' => 3, 'race_name' => 'Kelari' , 'race_faction_id' => 1 );
    $sql_ary[] = array('race_id' => 4, 'race_name' => 'Dwarf' , 'race_faction_id' => 2 );
    $sql_ary[] = array('race_id' => 5, 'race_name' => 'High Elf' , 'race_faction_id' => 2 );
    $sql_ary[] = array('race_id' => 6, 'race_name' => 'Mathosian' , 'race_faction_id' => 2 );
   
    $db->sql_multi_insert( $bbdkp_table_prefix . 'races', $sql_ary);
   
    unset ($sql_ary);

}
?>


I seen the post above about Warhammer but didn't know if that'd work or where to put.......again - no clue what I'm doing but don't mind helping if someone else wants the Rift info.........anyways, here's some edits to the above stuff with Rift put in its place

Code: Select all
    $games = array(
        'wow'                 => "World of Warcraft",
        'aoc'                => "Age of Conan",
        'lotro'             => "The Lord of the Rings Online",
        'eq'                 => "EverQuest",
        'DAoC'                 => "Dark Age of Camelot",
        'Vanguard-SoH'        => "Vanguard - Saga of Heroes",
        'eq2'                 => "EverQuest II",
        'warhammer'         => "Warhammer Online",
        'FFXI'                 => "Final Fantasy XI"
        'rift'                 => "Rift"
    );


classes
Code: Select all
    if ($game == "rift")
    {
        $queries = array(
           "DELETE FROM ". $bbeqdkp_table_prefix ."classes;",
       
           "UPDATE " . $bbeqdkp_table_prefix . "memberlist SET member_level = 50 WHERE member_level > 50;",
       
           "ALTER TABLE " . $bbeqdkp_table_prefix . "memberlist MODIFY member_level tinyint(2) NOT NULL default '50';",
       
           "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (0, 'Unknown', 'No Armor',0,50);",
           "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (1, 'Cleric', 'Chain Armor',0,50);",
           "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (2, 'Mage', 'Cloth Armor',0,50);",
           "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (3, 'Rogue', 'Leather Armor',0,50);",
           "INSERT INTO ". $bbeqdkp_table_prefix ."classes (class_id, class_name, class_armor_type, class_min_level, class_max_level) VALUES (4, 'Warrior', 'Plate Armor',0,50);",

           "DELETE FROM ". $bbeqdkp_table_prefix ."factions;",
           "INSERT INTO ". $bbeqdkp_table_prefix ."factions (faction_id, faction_name) VALUES (0, 'Unknown');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."factions (faction_id, faction_name) VALUES (1, 'Defiant');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."factions (faction_id, faction_name) VALUES (2, 'Guardian');",
           

           "DELETE FROM ". $bbeqdkp_table_prefix ."races;",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (0, 'Unknown');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (1, 'Bahmi');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (2, 'Eth');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (3, 'Kelari');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (4, 'Dwarf');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (5, 'High Elf');",
           "INSERT INTO ". $bbeqdkp_table_prefix ."races (race_id, race_name) VALUES (6, 'Mathosian');",

        );
           
            foreach ( $queries as $sql )
            {
               $db->sql_query($sql);
            }
    }
Top

Drak
Shadow lurker
Posts: 1
Joined: 21 Apr 2011, 16:10

Re: What games should bbdkp support ?

Postby Drak » 21 Apr 2011, 16:12

I would also like Rift support. Any chance this will be possible? :eh:
Top

Scaver
Shadow lurker
Posts: 4
Joined: 13 May 2011, 19:00

Re: What games should bbdkp support ?

Postby Scaver » 13 May 2011, 19:08

Star Wars: The Old Republic would be very cool.
I am actually searching for an DKP System for it. We are over 80 Members and using phpBB3 and this support would be very great :)
Top

PreviousNext

Return to bbdkp discussion

Who is online

Users browsing this forum: Internet Archive [Bot] and 0 guests

  • Advertisement