Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

IGCN Season 9.5 (src-x9.5 9.5.1.15) Death Stab Wind Effect Visual Bug

Custom Title Activated
Member
Joined
Aug 30, 2011
Messages
2,969
Reaction score
1,002

Already been a fix: Update 3 By EvilEk.

The Fix Was By solarismu here is the source

Code:
PMSG_SETAGILITYBUG pAgilityBug;
pAgilityBug.h.c = 0xC1;
pAgilityBug.h.headcode = 0xFA;
pAgilityBug.h.size = sizeof(pAgilityBug);
pAgilityBug.subcode = 0xA2;

if (lpObj->Class == CLASS_RAGEFIGHTER || lpObj->Class == CLASS_ELF)
{
pAgilityBug.value = 0x0F;
}
else
{
pAgilityBug.value = 0x02;
}

IOCP.DataSend(aIndex, (LPBYTE)&pAgilityBug, sizeof(pAgilityBug));

In DLL Source
Code:
void GCSetAgilityFix(PMSG_SETAGILITYBUG* lpMsg)
{
DWORD OldProtect;
VirtualProtect((LPVOID)0x00562A0B, 1, PAGE_EXECUTE_READWRITE, &OldProtect); // S9
*(BYTE*)(0x00562A0B) = lpMsg->value;

The thread were the fix came from: http://forum.ragezone.com/f197/igcn-season-9-5-src-1125721/index78.html
 
Upvote 0
Initiate Mage
Joined
Nov 14, 2017
Messages
93
Reaction score
3
Already been a fix: Update 3 By EvilEk.

The Fix Was By @solarismu here is the source

Code:
PMSG_SETAGILITYBUG pAgilityBug;
pAgilityBug.h.c = 0xC1;
pAgilityBug.h.headcode = 0xFA;
pAgilityBug.h.size = sizeof(pAgilityBug);
pAgilityBug.subcode = 0xA2;

if (lpObj->Class == CLASS_RAGEFIGHTER || lpObj->Class == CLASS_ELF)
{
pAgilityBug.value = 0x0F;
}
else
{
pAgilityBug.value = 0x02;
}

IOCP.DataSend(aIndex, (LPBYTE)&pAgilityBug, sizeof(pAgilityBug));

In DLL Source
Code:
void GCSetAgilityFix(PMSG_SETAGILITYBUG* lpMsg)
{
DWORD OldProtect;
VirtualProtect((LPVOID)0x00562A0B, 1, PAGE_EXECUTE_READWRITE, &OldProtect); // S9
*(BYTE*)(0x00562A0B) = lpMsg->value;

The thread were the fix came from: http://forum.ragezone.com/f197/igcn-season-9-5-src-1125721/index78.html
Sir how about season 6 same issue ..
 
Upvote 0
Custom Title Activated
Member
Joined
Aug 30, 2011
Messages
2,969
Reaction score
1,002
i mean igcn season 6 sir

If it's premium files then message IGCN to fix the bug. But if your using "IGCN "files from another forum for free they are muemu files that they took from IGCN
 
Upvote 0
Back
Top