Jump to content

World of Warcraft Armory


Recommended Posts

- When hovering over an item, or when i try to switch the achievement categories on the left. it just says "loading..." no information is coming up. when clicking on an item, i get to the informationpage of the item.

If you're using Safari it is normal, doesn't work for the moment :)

Link to comment
Share on other sites

  • Replies 617
  • Created
  • Last Reply

Top Posters In This Topic

shadez in your last patch i think that we have an error look, the first bold , and the second Battleground also the * i think

--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -633,6 +633,10 @@ uint32 Unit::DealDamage(Unit *pVictim, uint32 damage, CleanDamage const* cleanDa
            {
                // FIXME: kept by compatibility. don't know in BG if the restriction apply.
                bg->UpdatePlayerScore(killer, SCORE_DAMAGE_DONE, damage);
+                /** World of Warcraft Armory **/
+               [b] if (BattleGround * bgV = ((Player*)pVictim)->GetBattleGround())[/b]   --------THIS-------
+                    bgV->UpdatePlayerScore(((Player*)pVictim), SCORE_DAMAGE_TAKEN, damage);
+                /** World of Warcraft Armory **/
            }
        }

@@ -5862,6 +5866,10 @@ int32 Unit::DealHeal(Unit *pVictim, uint32 addhealth, SpellEntry const *spellPro
    {
        ((Player*)pVictim)->GetAchievementMgr().UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_TOTAL_HEALING_RECEIVED, gain);
        ((Player*)pVictim)->GetAchievementMgr().UpdateAchievementCriteria(ACHIEVEMENT_CRITERIA_TYPE_HIGHEST_HEALING_RECEIVED, addhealth);
+        /** World of Warcraft Armory **/
+       [b] if (Battleground* bgV = ((Player*)pVictim)->GetBattleground())[/b] -------- THIS --------
+            bgV->UpdatePlayerScore(((Player*)pVictim), SCORE_HEALING_TAKEN, gain);
+        /** World of Warcraft Armory **/
    }

Link to comment
Share on other sites

I have tryed to find a fix to this on the forums.. already.. but i am having a problem with getting the site to work correctly. I am not able to see any of my characters. (all Sql is installed, .... even the Tools/characters) but it does not pull up characters... a player can log in just fine.

any suggestions please?? and TIA

PS nice work ....

Link to comment
Share on other sites

I have tryed to find a fix to this on the forums.. already.. but i am having a problem with getting the site to work correctly. I am not able to see any of my characters. (all Sql is installed, .... even the Tools/characters) but it does not pull up characters... a player can log in just fine.

any suggestions please?? and TIA

PS nice work ....

I need your debug log.

why i have this error Utils::GetBookmarks : bookmarks for account 27 not found ???

It's not error - just debug message.

Link to comment
Share on other sites

Armory revision: 361

DB Version: armory_r361

Configuration values are:

ArmoryConfig['settings']['configVersion'] = 708201001

ArmoryConfig['settings']['useCache'] = true

ArmoryConfig['settings']['cache_lifetime'] = 86400

ArmoryConfig['settings']['minlevel'] = 10

ArmoryConfig['settings']['minGmLevelToShow'] = 3

ArmoryConfig['settings']['defaultLocale'] = en_us

ArmoryConfig['settings']['useDebug'] = true

ArmoryConfig['settings']['logLevel'] = 2

Mulitrealm info:

Realm ID: 1, name: Prospe, type: mangos

Realm ID: 2, name: Prospe, type: mangos

Log:

DEBUG [15-08-2010 01:26:11]: Utils::CheckConfigRealmData : realm data for realm "Prospe" was successfully added to `armory_realm_data` table.

DEBUG [15-08-2010 01:26:11]: Utils::CheckConfigRealmData : realm data for realm "Prospe" was successfully added to `armory_realm_data` table.

DEBUG [15-08-2010 01:26:12]: Utils::CheckConfigRealmData : realm data for realm "Prospe" was successfully added to `armory_realm_data` table.

DEBUG [15-08-2010 01:26:12]: Utils::CheckConfigRealmData : realm data for realm "Prospe" was successfully added to `armory_realm_data` table.

DEBUG [15-08-2010 01:26:12]: Utils::CheckConfigRealmData : realm data for realm "Prospe" was successfully added to `armory_realm_data` table.

DEBUG [15-08-2010 01:26:12]: Utils::GetBookmarks : bookmarks for account 1 not found

how can i resolve??? THe armory don't find the characters

Link to comment
Share on other sites

In the Install file it says:

"For full work you need to patch MaNGOS core with tools/armory_character_stats/wowarmory_character_stats_*.patch

and your characters DB with provided SQL update (characters.sql - in the same folder)."

What if i don't patch the core, what kind of problem should i have?

Thanks.

Link to comment
Share on other sites

I am tryind to apply the character feed patch but i have a compiling error c2039 'WriteWowArmoryDatabaseLog' is not a member of 'Player' I am running mangos revision 10348 and the armory is r_336, can it be the problem everithing is ok but i can't compile the character feed patch i have applied it mannually.

Thanks

Problem solved, it looks like it's a bug in visual c++ not sure but the path of some files were wrong when compiling project, tht's the reason why the error was ocurring, i tried in another machine and everithing was ok, but i confirm there is a problem in character_arena_chart patch i had to change in Battleground for BattleGround then i had success compiling the project.

Link to comment
Share on other sites

I have updated the armory to r_361 and i am still having the same error 'WriteWowArmoryDatabaseLog' is not a member of 'Player' i have aplied the wowarmory_patch in the armory/tools/mangos folder manually and i have no success, is anybody having the same problem, any clue? (Character_feed_log)

ps: i am running mangos revision 10348.

Thanks

Link to comment
Share on other sites

../../../src/game/Unit.cpp: In member function 'int32 Unit::DealHeal(Unit*, uint32, const SpellEntry*, bool)':

../../../src/game/Unit.cpp:6119: error: 'Battleground' was not declared in this scope

../../../src/game/Unit.cpp:6119: error: 'bgV' was not declared in this scope

../../../src/game/Unit.cpp:6119: error: 'class Player' has no member named 'GetBattleground'

mangos R10366 (armory arena chart)

Link to comment
Share on other sites

From /src/server/game/Battlegrounds/Battleground.h:

And also look at this commit - all "BattleGround[...]" were changed to "Battleground[...]".

srry for the late reply but that commit is for TC, and im talking about MANGOS in the TOOLS/MANGOS/wow_armory_arena.patch the last part

+        /** World of Warcraft Armory **/
+        if (Battleground* bgV = ((Player*)pVictim)->GetBattleground())
+            bgV->UpdatePlayerScore(((Player*)pVictim), SCORE_HEALING_TAKEN, gain);
+        /** World of Warcraft Armory **/

so as this is in the mangos folder and its for mangos should be with the " G " so plz check it again.

the error is caus what im talking about

../../../src/game/Unit.cpp: In member function 'int32 Unit:ealHeal(Unit*, uint32, const SpellEntry*, bool)':

../../../src/game/Unit.cpp:6119: error: 'Battleground' was not declared in this scope

../../../src/game/Unit.cpp:6119: error: 'bgV' was not declared in this scope

../../../src/game/Unit.cpp:6119: error: 'class Player' has no member named 'GetBattleground'

mangos R10366 (armory arena chart)

also im getting this erros at db error.log i update today so the core where comes the error is rev 10351, dont know with my new rev patched.

2010-08-18 13:27:20 SQL: INSERT INTO armory_game_chart VALUES
('52', '20', '1654', '2', '11', '1454', '0', '1', '0', '2780646353', '2047', '0', '572', '127422', '120000')
2010-08-18 13:27:20 SQL ERROR: Out of range value for column 'damageTaken' at row 1
2010-08-18 13:27:20 SQL: INSERT INTO armory_game_chart VALUES
('52', '20', '1655', '2', '11', '1454', '5893', '1', '3172', '3131121196', '2047', '0', '572', '127422', '120000')
2010-08-18 13:27:20 SQL ERROR: Out of range value for column 'damageTaken' at row 1
2010-08-18 13:29:46 SQL: INSERT INTO armory_game_chart VALUES
('53', '19', '1657', '1', '10', '1567', '4477', '0', '0', '2385182977', '15794328', '2', '562', '86953', '120000')
2010-08-18 13:29:46 SQL ERROR: Out of range value for column 'damageTaken' at row 1

Link to comment
Share on other sites

First of all i want to be apolagyzed about my bad english ... i'll try ti post more simply

Armory revision: 364

DB Version: armory_r361

Configuration values are:

ArmoryConfig['settings']['configVersion'] = 708201001

ArmoryConfig['settings']['useCache'] = false

ArmoryConfig['settings']['cache_lifetime'] = 86400

ArmoryConfig['settings']['minlevel'] = 10

ArmoryConfig['settings']['minGmLevelToShow'] = 3

ArmoryConfig['settings']['defaultLocale'] = en_gb

ArmoryConfig['settings']['useDebug'] = true

ArmoryConfig['settings']['logLevel'] = 2

Mulitrealm info:

Realm ID: 1, name: Armory Realm, type: mangos

Realm ID: 2, name: Armory Realm 2, type: trinity

Log:

DEBUG [20-08-2010 21:48:11]: Utils::CheckConfigRealmData : realm data for realm "Armory Realm" was successfully added to `armory_realm_data` table.

DEBUG [20-08-2010 21:48:11]: Utils::CheckConfigRealmData : realm data for realm "Armory Realm 2" was successfully added to `armory_realm_data` table.

ERROR [20-08-2010 22:14:40]: Utils::authUser : unable to get data from DB for account Administrator

ERROR [20-08-2010 22:14:46]: Utils::authUser : unable to get data from DB for account Administrator

ERROR [20-08-2010 22:14:50]: Utils::authUser : unable to get data from DB for account Administrator

ERROR [20-08-2010 22:14:55]: Utils::authUser : unable to get data from DB for account Administrator

ERROR [20-08-2010 22:15:01]: Utils::authUser : unable to get data from DB for account Administrator

DEBUG [20-08-2010 22:17:35]: ArmoryDatabaseHandler::_query : unable to execute SQL query (SELECT 1 FROM `armory_character_stats` WHERE `guid`=15 LIMIT 1). MySQL error: Table 'characters.armory_character_stats' doesn't exist

ERROR [20-08-2010 22:17:35]: Characters::BuildCharacter : player 15 (Lemar) does not have any data in `armory_character_stats` table (SQL update to characters DB not applied?)

DEBUG [20-08-2010 22:18:08]: ArmoryDatabaseHandler::_query : unable to execute SQL query (SELECT 1 FROM `armory_character_stats` WHERE `guid`=4 LIMIT 1). MySQL error: Table 'characters.armory_character_stats' doesn't exist

ERROR [20-08-2010 22:18:08]: Characters::BuildCharacter : player 4 (Kleopatra) does not have any data in `armory_character_stats` table (SQL update to characters DB not applied?)

ERROR [20-08-2010 22:40:15]: Utils::authUser : sha_pass_hash and generated SHA1 hash are different (24945608A0155B26BFB87EA2DE22F246170245CC and 19A732928F1F193209787F537EEB95A37CE53464), unable to auth user.

ERROR [20-08-2010 22:43:05]: Utils::authUser : sha_pass_hash and generated SHA1 hash are different (24945608A0155B26BFB87EA2DE22F246170245CC and 19A732928F1F193209787F537EEB95A37CE53464), unable to auth user.

i've one more problem with my armory... When i tried to open the URL when its just finish on ".xml" its impossible... when i edit into ".php" i'm just increadible HAPPY, cuz its OPENED SUCCESSFULL! :(

Can someone help me about this ? :( Please i very need your help

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use