Jump to content
TrinityCore

Leaderboard

Popular Content

Showing content with the highest reputation on 04/09/17 in all areas

  1. I don't have the db for that specific application(armory). If you go with that Armory you will have to obtain the database from that particular person. It appears that he used Exodius' armory DB here. Like I mentioned most of the armories are proprietary to their specific project. Shadez made one many years ago and everyone I know branched from that and made their own hybrids. You want to cache some of the queries and dump everything into json (for security purposes), or if you would prefer to use a live xml generated armory, similar to how blizz does their armory push/pull generation. If you know LAMP or XAMP (for windows), best bet would be to create one yourself. I'll PM you my full armory db. But, the application layer will have to be built by you or someone that knows how to program.
    1 point
  2. Really? Does this look like the repack support forums? You want support or help, start here... https://trinitycore.atlassian.net/wiki/display/tc/Core+Installation
    1 point
  3. Most of the armories for 335a have been moved onto Cata version or higher. It took me about 1 full year to perfect mine. You might find tidbits on github. But here is where to start an armory for your version. Dissect the client DBC files and dump them all into MySQL or XML (your choice), then really go from there. I can help with the math if you need. For Example the iLvl from the gear that characters are equipped with. The client local DBCs actually have just about everything you need. To be honest, I can look for the scripts where I de-compiled the DBCs and had them inserted into mysql. But I don't know exactly what you're looking for. I can provide mysql dumps if you would prefer.
    1 point
  4. tc is getting those database names from worldserver.conf, change the world to world3.3.5 worldserver.conf.dist:LoginDatabaseInfo = "127.0.0.1;3306;trinity;trinity;auth" worldserver.conf.dist:WorldDatabaseInfo = "127.0.0.1;3306;trinity;trinity;world" worldserver.conf.dist:CharacterDatabaseInfo = "127.0.0.1;3306;trinity;trinity;characters" example (ignore socks) worldserver.conf:LoginDatabaseInfo = ".;/var/run/mysqld/mysqld.sock;wow;xxxx;tc_335_auth" worldserver.conf:WorldDatabaseInfo = ".;/var/run/mysqld/mysqld.sock;wow;xxxx;tc_335_world" worldserver.conf:CharacterDatabaseInfo = ".;/var/run/mysqld/mysqld.sock;wow;xxxx;tc_335_characters"
    1 point
  5. mysql> select * from auth.rbac_permissions where id > 23 AND id < 30; +----+-------------------------------------------------+ | id | name | +----+-------------------------------------------------+ | 24 | Two side faction characters on the same account | | 25 | Allow say chat between factions | | 26 | Allow channel chat between factions | | 27 | Two side mail interaction | | 28 | See two side who list | | 29 | Add friends of other faction | +----+-------------------------------------------------+ mysql> select * from auth.rbac_permissions where id = 195; +-----+------------------------+ | id | name | +-----+------------------------+ | 195 | Role: Sec Level Player | +-----+------------------------+ EXAMPLE: Let's add both factions on same account mysql> INSERT INTO `auth`.`rbac_linked_permissions` (`id`, `linkedId`) VALUES ('195', '24'); mysql> select * from auth.rbac_linked_permissions where id = 195; +-----+----------+ | id | linkedId | +-----+----------+ | 195 | 3 | | 195 | 4 | | 195 | 5 | | 195 | 6 | | 195 | 24 | | 195 | 27 | | 195 | 49 | | 195 | 199 | +-----+----------+
    1 point
×
×
  • Create New...