DBO AKCore Tables

Results 1 to 3 of 3
  1. #1
    Member weertoop is offline
    MemberRank
    Apr 2013 Join Date
    82Posts

    DBO AKCore Tables

    Hello everyone, I am working on the AKCore server files, trying to achieve something ,
    so far I pretty much understood many pieces of the code (sending and receiving packets, the uses of enums and some structs, database related code, other functions, etc.)

    my question is...

    in the code, there are some declarations of "tables" data,

    e.g.
    Code:
    CItemTable * pItemTable = app->g_pTableContainer->GetItemTable();
    
    sITEM_TBLDAT * itemTBL = reinterpret_cast<sITEM_TBLDAT*>(pItemTable->FindData(app->db->getInt("tblidx")));
    now, I know what this code does, what I want to know is, where is the content of the table?
    I mean, if I wanted to know what item I want to search for for any use, I have to know where am I searching and what I am searching for, like are the items stored under some fields and records...?

    pls someone help


  2. #2
    Connoisseur of Fine Code SanGawku is offline
    ModeratorRank
    Oct 2006 Join Date
    CyberSpanksLocation
    645Posts

    Re: DBO AKCore Tables

    check NtlGameTable.
    They are the tables(Rdf, Edf) files. Each one inherits a base table class, and adds its own functions.

  3. #3
    Member weertoop is offline
    MemberRank
    Apr 2013 Join Date
    82Posts

    Re: DBO AKCore Tables

    oh didn't realize that my bad, thx :) i will look at it now

    - - - Updated - - -

    found it !



Advertisement