Jump to content

jonkopinx

Members
  • Posts

    12
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

About jonkopinx

  • Birthday 01/01/1

jonkopinx's Achievements

Member

Member (2/3)

0

Reputation

  1. thanks, looks very nice but mmm i don't see any db linking for armory,registration, and others
  2. AFAIK that "replace into armory_char_stats" only used once and that when the player doesn't has any data in the "armory_char_stats". Currently i use armory without any core patch and it seems several player that already have data in the table can be viewed and all player items is updated. So what i think is, is it possible to get all player data and store in "armory_char_stats" without waiting player to login and logout for once a week.
  3. are u sure that you have the file in that folder???? it seems that you dont have any wowarmory_patch.patch in that folder.
  4. Hi Shadez, XML Parsing Error: junk after document element Location: [url]http://xx.xx.xx.xx/wowarmory/character-sheet.xml?r=trinity&cn=Shslol[/url] Line Number 2, Column 1:[b]Warning[/b]: sprintf() [[url='function.sprintf']function.sprintf[/url]]: Too few arguments in [b]/var/www/wowarmory/includes/classes/class.debug.php[/b] on line [b]64[/b] ^ this error happen only for a certain characters (Rogue Class Only) i think. update : thanks shadez, fixed already. btw just curious is your trinitycore patch affecting the server performance, lately if the server reaches 1000++ player, server tends to freeze and spikes alot, but after i removed the core patch, server running smooth even running to 1500++ player. please enlight me if you have some tips.
  5. hmm, just updated my armory today and my datetime arena shows 01-01-1970 on arena game chart, is it like this at the moment or it just me forgot to set something? several bug : 1. arena game chart not properly displayed, and when i tried to click the chart, BOOM, my browser crash. looking forward for your cata armory version.
  6. hi shadez, just tried to download the newest archive "http://filekeeper.org/download/shadez1/wowarmory/3dviewer_textures_448.7z", but it keeps failed in middle of download, any chance you will put the file somewhere else? thanks.
  7. do you use apache2 for your web server?, by default i think is turn on. cmiiw
  8. --- a/src/server/game/Entities/Player/Player.cpp +++ b/src/server/game/Entities/Player/Player.cpp + uint8 Difficulty = GetMap()->GetDifficulty(); - QueryResult_AutoPtr result = CharacterDatabase.PQuery("SELECT counter FROM character_feed_log WHERE guid='%u' AND type=3 AND data='%u' AND difficulty='%u' LIMIT 1", pGuid, data, Difficulty); + QueryResult result = CharacterDatabase.PQuery("SELECT counter FROM character_feed_log WHERE guid='%u' AND type=3 AND data='%u' AND difficulty='%u' LIMIT 1", pGuid, data, Difficulty); + if (result) + { --- a/src/server/game/Battlegrounds/Battleground.cpp +++ b/src/server/game/Battlegrounds/Battleground.cpp + uint32 maxChartID; - QueryResult_AutoPtr result = CharacterDatabase.PQuery("SELECT MAX(gameid) FROM armory_game_chart"); + QueryResult result = CharacterDatabase.PQuery("SELECT MAX(gameid) FROM armory_game_chart"); + if(!result) that one i think you should change it "QueryResult_AutoPtr" to just "QueryResult" in trinitycore patch wowarmory, and for the table , i think it's better to use INNODB engine than MyISAM for the 'armory_character_stats' table and 'character_feed_log' . btw your armory is working properly without the game chart patch(i excluded the game chart, it causing crash), 3D viewer in lower part like legs shows double rendering i think.
  9. XML Parsing Error: junk after document element Location: [url]http://xxx.xxx.xxx.xxx/character-talents.xml?r=WoW&cn=Shslol&gn=happiness+is+not+a+fish+that+you+can+catch&group=1[/url] Line Number 2, Column 1:[b]Notice[/b]: Undefined variable: glyphs_data in [b]/var/www/includes/classes/class.characters.php[/b] on line [b]1220[/b] ^ okay this the problem i got whenever previewing characters talent.
  10. Update : Using Rev.405 , the armory show all the item that character equipped, two thumb up Shadez. Too bad the character talent still not working, although it shows up the character talent pane page now. 3D modelviewer, i can say it's almost there to be complete 100%, nice job. @digital29: did you disable javascript in your browser?
  11. here you go Shadez my armory debug log http://paste2.org/p/1042910 Can you provide more info about this? Item ID for example. I have information about problems with talent preview on TC characters, but this issue is still not resolved yet, I'm working on it. Also, look at your debug log (http://armory_url/cache/_debug/), maybe there's some info about your problem. Same thing happened to me too.Tested on different characters, it shows NO item, and the loading bar is stuck at 0% This is the debug file : http://paste2.org/p/1041896 I can`t find armory_classes anywhere! I`ve searched in all .sql files and there is no table called armory_classes here you go digital29, i found this armory_classes on my old armory 3.3.3a version -- MySQL dump 10.13 Distrib 5.1.37, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: armory -- ------------------------------------------------------ -- Server version 5.1.37-1ubuntu5.1-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `armory_classes` -- DROP TABLE IF EXISTS `armory_classes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `armory_classes` ( `id` smallint(1) NOT NULL, `name_de_de` text NOT NULL, `name_en_gb` text NOT NULL, `name_es_es` text NOT NULL, `name_fr_fr` text NOT NULL, `name_ru_ru` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Character classes table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `armory_classes` -- LOCK TABLES `armory_classes` WRITE; /*!40000 ALTER TABLE `armory_classes` DISABLE KEYS */; INSERT INTO `armory_classes` VALUES (1,'Krieger','Warrior','Guerrero','Guerrier','Воин'), (2,'Paladin','Paladin','Paladín','Paladin','Паладин'), (3,'Jäger','Hunter','Cazador','Chasseur','Охотник'), (4,'Schurke','Rogue','Pícaro','Voleur','Разбойник'), (5,'Priester','Priest','Sacerdote','Prêtre','Жрец'), (6,'Todesritter','Death Knight','Caballero de la Muerte','Chevalier de la mort','Рыцарь смерти'), (7,'Schamane','Shaman','Chamán','Chaman','Шаман'), (8,'Magier','Mage','Mago','Mage','Маг'), (9,'Hexenmeister','Warlock','Brujo','Démoniste','Чернокнижник'), (11,'Druide','Druid','Druida','Druide','Друид'); /*!40000 ALTER TABLE `armory_classes` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2010-10-18 17:18:24 and last but not least , what's wrong with the armory repo, i can't do any pull. here the error i got. Updating 7d294c4..7c010d6 error: Entry 'includes/armory_loader.php' not uptodate. Cannot merge.
  12. Hi Shadez, [Trinitycore Version] I've installed 3.3.3a version and its works properly, but since i changed to version 3.3.5a and using your rev.404, i encountered some problems. 1. the armory not showing all the item that characters have, nevertheless stats are shown properly. 2. whenever i try to view character talent, it goes to FILE NOT FOUND page. I've also installed patches, sql_updates, wow-icons fullpack with updates, and also installed wowmodelviewers. If there's anything that i can probably miss? Thanks before.
×
×
  • 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