how migrate accounts, items and more IA Julia 1.1.0.298 Season 4.6 JNP to IA Julia 1.1.0.298 Season 4.6 ENG?
thanks for reply
how migrate accounts, items and more IA Julia 1.1.0.298 Season 4.6 JNP to IA Julia 1.1.0.298 Season 4.6 ENG?
thanks for reply
I actually think db is the exact same; that's why I said it that way xD....but yeah; common sQLense (?)
Only migrate for problem which ATI. (1.03k)= Thanks
Known bugs:
1. 3rd Class cannot buff at Shadow Phantom NPC.
Attachment 140816
2. Main.exe doesn't shows level and exp if you are 3rd class
3. When press on Connect arrow jumps to Password (Main.exe problem)
Last edited by Donatas Soltys; 21-11-13 at 04:13 AM.
1. 3rd Class cannot buff at Shadow Phantom NPC
- this doesnt exist in configs or in source to be readed - ShadowPhantomMaxLevel =
i will check on GS with olly to check it also
default value of GS is 220 level , did you test it with make config for 220lv and use it ? test and report
//=================================
//NPC Buffer Options
//=================================
ShadowPhantomMaxLevel = 220
Still the same.
Also i cant use 1.03k main, can't login to account
Error in GS:
WSARecv() failed with error 10038
Last edited by Donatas Soltys; 21-11-13 at 07:58 PM.
sorry , which was the last update??
1- Will check this, not sure about this.
2- Are you using 1.03o or 1.03p ?
3- That's a common bug; no-one found & shared the TAB button fix so far....we'll have to keep hoping someone will.
Protocol ERROR. ; Sources are based on ENG protocol now; unless you restore the JPN protocol, you can only use 1.03o or 1.03p ENG clients to log-in.
Read the hole thread; otherwise you'll come saying this is sh17 again.
You mean the protocol error ? Only by using 1.03o or 1.03p eng protocol client.
To make it work with JPN protocol again you need some C++ knowledge; and based on your PM's I'm aware you dont have such experience....so you should leave it that way and use appropiate client. =).
The SM very strong MS guys how to fix it? BK can't kill SM with some MS MISS-MISS-MISS
The original MuServer files are not designed to easy (32000/65000 stats) configs. You must code one MS percent limitation if don't have any config for this yet...
My Custom Max Percent Function for 1.00.90 GS:
Code:void _declspec(naked) ManaShieldMaxPer() { __asm { cmp eax, MSMaxPercent; jg OverPercent; mov dword ptr ss:[ebp-0x14], eax; mov ecx, dword ptr ss:[ebp-0xC]; mov ebx, GS_MSNORMAL_MAXPERJMP1; jmp ebx; OverPercent: mov eax, MSMaxPercent; mov dword ptr ss:[ebp-0x14], eax; mov ecx, dword ptr ss:[ebp-0xC]; mov ebx, GS_MSNORMAL_MAXPERJMP1; jmp ebx; } } void _declspec(naked) ManaShieldMaxPerML() { __asm { cmp eax, MSMaxPercentML; jg OverPercent; mov dword ptr ss:[ebp-0x10], eax; mov ecx, dword ptr ss:[ebp+0x10]; mov ebx, GS_MSMLEVEL_MAXPERJMP1; jmp ebx; OverPercent: mov eax, MSMaxPercentML; mov dword ptr ss:[ebp-0x10], eax; mov ecx, dword ptr ss:[ebp+0x10]; mov ebx, GS_MSMLEVEL_MAXPERJMP1; jmp ebx; } } #define GS_MSNORMAL_MAXPERHOOK (0x004DB068) #define GS_MSNORMAL_MAXPERJMP1 (0x004DB06E) #define GS_MSMLEVEL_MAXPERHOOK (0x004FAAE2) #define GS_MSMLEVEL_MAXPERJMP1 (0x004FAAE8)