Similar Content
-
Activity
-
21
-
2
-
2
edit skill
no not for gm when I choose a skill I will get them p1 i need to edit them from p1 to m1 like this the quest give it to me p1 and i want edit them to m1 -
2
fix Fix Safebox Load Items
You're forgetting Mall: // PythonNetworkStream.cpp // 1. Search: Set(HEADER_GC_MALL_SET, CNetworkPacketHeaderMap::TPacketType(sizeof(TPacketGCItemSet), STATIC_SIZE_PACKET)); // 1. Replace with: Set(HEADER_GC_MALL_SET, CNetworkPacketHeaderMap::TPacketType(sizeof(TPacketGCItemSet2), STATIC_SIZE_PACKET)); -
40
-
2
Automatic Translation of Drop from mob_drop_item.txt and special_item_group.txt Files
I think you need this chardet & codecs -
3
Client.sln errors
I put a Readme.txt in the ClientVS22 folder, you forgot to read it afxres.h is not part of the project, it comes with the C++ MFC. You need to install C++ MFC for latest v143 build tools too when you install your visual studio. If you did not install that then open Microsoft Visal Studio Installer and you can install retrospectively. Check Install.png. A possible dirty workaround if you don't want to install updates is to open ClientVS22\source\UserInterface\UserInterface.rc and modify #include "afxres.h" to #include <Windows.h> -
3
Client.sln errors
Now i have some other problems. Iam using the files from TMP4 40250. Are there some missing files? @ TMP4 can you check this [Hidden Content] -
21
-
-
Recently Browsing
- No registered users viewing this page.
Question
xNewlezz 0
Good evening,
You probably know the problem that the bell shining does not work in the Tamashi Shining System. For this there is this fix:
//InstanceBase.cpp
//bool CInstanceBase::AttachShiningEffect(DWORD dwWeapon)
//this:
m_swordShiningRight[] = EFFECT_SHINING_WEAPON + EFFECT_SMALLSWORD_REFINED7 + __GetShiningEffect();
//to
m_swordShiningRight[] = EFFECT_SHINING_WEAPON + EFFECT_SHINING_WEAPON_BELL + __GetShiningEffect();
//InstanceBase.h
//change like this:
enum
{
EFFECT_SHINING_WEAPON_SWORD,
EFFECT_SHINING_WEAPON_SWORD_END = EFFECT_SHINING_WEAPON_SWORD + 19,
EFFECT_SHINING_WEAPON_BOW,
EFFECT_SHINING_WEAPON_BOW_END = EFFECT_SHINING_WEAPON_BOW + 19,
EFFECT_SHINING_WEAPON_FAN,
EFFECT_SHINING_WEAPON_FAN_END = EFFECT_SHINING_WEAPON_FAN + 19,
EFFECT_SHINING_WEAPON_BELL,
EFFECT_SHINING_WEAPON_BELL_END = EFFECT_SHINING_WEAPON_BELL + 19,
EFFECT_SHINING_WEAPON_DAGGER_R,
EFFECT_SHINING_WEAPON_DAGGER_R_END = EFFECT_SHINING_WEAPON_DAGGER_R + 19,
EFFECT_SHINING_WEAPON_DAGGER_L,
EFFECT_SHINING_WEAPON_DAGGER_L_END = EFFECT_SHINING_WEAPON_DAGGER_L + 19,
EFFECT_SHINING_WEAPON_NUM,
};
This also works so that the bell shining is displayed, but then the shining of one side of the dagger no longer works. Because the side of the dagger which then no longer works is entered as the last, it seems to me that there is somewhere a specification, a limit for the entries. add Bell in between, this is now counted, but the last entry dagger no longer,
Does anyone know the fix for all Shinings working properly?
Thanks in advance.
Link to comment
Share on other sites
Top Posters For This Question
1
Popular Days
Dec 13
1
Top Posters For This Question
xNewlezz 1 post
Popular Days
Dec 13 2022
1 post
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now