
Brainy
Members-
Content Count
74 -
Joined
-
Last visited
-
Days Won
11
Brainy last won the day on February 1 2020
Brainy had the most liked content!
Community Reputation
23 ExcellentAbout Brainy
-
Rank
Advanced Member
Profile Information
-
Gender
Male
-
Interests
Programming, Virtualization, Reverse Engineering
-
Just downloaded the classic demo client for the blizzcon. What are your thoughts? Will I see some of you on demo servers?
-
I want to work on a 'new classic' TrinityCore
-
Hey Undyne, I know this answer comes late but propably it may help you a bit. At first I wanna make clear, that I'm not a professional on this topic. I know something but not as much as e.g. Shauren. Yes you're right. There was no leak. The software has been written from scratch. The game itself is delivered as common executable binary file and many assets such as 3d models, maps and their terrain information, a client database, images/videos and the ui (the ui components are delivered as addon such as the third party addons). The most important part of the client data are: Map
- 1 reply
-
- 1
-
-
Changing account ID and character account in same time?
Brainy replied to labaouici's topic in Help and Support
If you tell me what exactly you wanna do, I will write down a small script which does it. Do you just want to renumber the account ids to use unused account ids? Or do you simply want to merge two account databases? -
Changing account ID and character account in same time?
Brainy replied to labaouici's topic in Help and Support
Just change the account ids and database names for following queries and run it on your mysql console. Be sure that no user is logged into the affected account while you're changing the ids. SET @OLD_ACCOUNT_ID := XXXXXX; SET @NEW_ACCOUNT_ID := XXXXXX; UPDATE auth.account SET id = @NEW_ACCOUNT_ID WHERE id = @OLD_ACCOUNT_ID; UPDATE characters.characters SET account = @NEW_ACCOUNT_ID WHERE account = @OLD_ACCOUNT_ID; -
Can someone give me the address offsets for packet send/receive functions in 7.3.2.25549 x86/x64 client?
-
Hosting my privet server on a remote rented server
Brainy replied to Tronicx's topic in Help and Support
You can also buy very cheap dedicated servers at https://www.kimsufi.com (its an OVH company) -
I still don't understand why you are using an old 7.1.5 version. Upgrade your TrinityCore to the HEAD commit and connect with the 7.2.5 client.
-
Use the latest TrinityCore for client version 7.2.5
-
Stuck at connected / infinite loop / login issues / battle.net
Brainy replied to CFGhost's topic in Help and Support
Check the address in your auth.realmlist table. It must be your public IP- 708 replies
-
- tdb 52
- worldserver 10061
-
(and 1 more)
Tagged with:
-
To answer your question. Yes it isnt a problem to install both libraries. But please notice that you are using an unsupported version of trinitycore
-
How to give players Instant level 100 or 110 tokens
Brainy replied to Nachsacred's topic in Help and Support
In world database you will find different character template tables. Just put your data inside. After that you can use the template system on the character selection screen. I'm not sure but maybe you must apply a rbac permission before you are able to use it. But maybe its just at my local branch. -
How to give players Instant level 100 or 110 tokens
Brainy replied to Nachsacred's topic in Help and Support
Create a custom item and write an ItemScript which levels the user. You can also create a custom spell with a dummy effect using hotfixes. Then just create a spell script and let your custom item use the created spell. -
Maybe nobody wants to update it or just doesn't have time But seriously if there really are issues with 7.3.0 it would be nice to know which kind of issues
-
I've found this article https://hackmag.com/uncategorized/deceiving-blizzard-warden/ Topic can be closed