• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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

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

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
Newbie Spellweaver
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
Loyal Member
Joined
Aug 30, 2011
Messages
2,969
Reaction score
1,003
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