Sarjuuk / aowow

Database viewer for TrinityCore based on aowow by @LordJZ, based on the JS-Engine of Wowhead
204 stars 217 forks source link

need to update the characters database #194

Closed kep123 closed 4 years ago

kep123 commented 4 years ago
        'skincolor'         =>  $char['skin']        & 0xFF,
        'facetype'          => ($char['face'] >>  8) & 0xFF, // maybe features
        'hairstyle'         => ($char['hairStyle'] >> 16) & 0xFF,
        'haircolor'         => ($char['hairColor'] >> 24) & 0xFF,
        'features'          =>  $char['facialStyle']       & 0xFF, // maybe facetype
        'activespec'        => $char['activeTalentGroup'],

    $t = DB::Characters($realmId)->selectCol('SELECT talentGroup AS ARRAY_KEY, spell AS ARRAY_KEY2, spell FROM character_talent WHERE guid = ?d', $char['guid']);
    $g = DB::Characters($realmId)->select('SELECT talentGroup AS ARRAY_KEY, glyph1 AS g1, glyph2 AS g4, glyph3 AS g5, glyph4 AS g2, glyph5 AS g3, glyph6 AS g6 FROM character_glyphs WHERE guid = ?d', $char['guid']);

in profile.class.php . . .

update locale_zhcn.js locale_zhcn.zip 5

kep123 commented 4 years ago

3 some erro! 4

Sarjuuk commented 4 years ago

thank you for pointing out the database issue and supplying the localization.

I'm not sure why you are getting js errors though

kep123 commented 4 years ago

thank you for pointing out the database issue and supplying the localization.

I'm not sure why you are getting js errors though

JS has had no errors

image