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!

Mu Skins Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures)

Joined
Oct 29, 2007
Messages
1,267
Reaction score
1,284
Hey hi for all, I like release all this old models (original) and not: snot remade... from Arieth 4th Wing & Chaos Mix Item (Crystal Feather) + Webzen Ex7XX+ and Season 8 Wings (All .bmd with old key encrypt).



ScreenShoots by OrochDEV:

VnoEm8u - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


rBP86Mz - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


2EOYzca - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


lW5VQox - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


R6RCreu - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


esSd9FH - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


6H1otWB - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


oxY84ae - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


5sQoRBT - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


mSLp7ox - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


COH374j - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


1NQwCsX - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


ee9vkPu - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


hwbPKny - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


TnOiISR - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


5s5Wuwa - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


PS: Only is lacking Raven Wings Screen.

Credits:

webzen
sobieh
arieth mu
tomatoes
OrochDEV (Thanks for take screens bro!)
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Dec 5, 2009
Messages
769
Reaction score
148
Here, in next, try use Pentium Tools, will be faster than wait for someone take pics.















 
faronnia.com
Loyal Member
Joined
Aug 12, 2007
Messages
1,200
Reaction score
441
Well timed release!

Thanks for this, good share.
 
Newbie Spellweaver
Joined
Oct 8, 2012
Messages
65
Reaction score
5
thank mauro07, but i unknown it, can you example it on Main1.03k ? thank you very much
 
Joined
Oct 29, 2007
Messages
1,267
Reaction score
1,284
thank mauro07, but i unknown it, can you example it on Main1.03k ? thank you very much

yeah I make this in old times too is easy in really look this (1.03.11):

Header file:
Code:
#define iWingInvisibleEffect		0x005CEE35
#define ObjectId(x, y)			((x * 512) + y + 834)

Source file:
Code:
DWORD	WingsSetInvisibleEffect_Pointer;
DWORD	WingsSetInvisibleEffect_Buff;

void __declspec(naked) cWingsInvisibleEffect()
{
	_asm
	{
		mov WingsSetInvisibleEffect_Buff, esi
		// ----
		mov ecx, dword ptr ss:[ebp+8]
		mov esi, dword ptr ds:[ecx+0x30]
		mov WingsSetInvisibleEffect_Pointer, esi
		// ----
		mov esi, WingsSetInvisibleEffect_Buff
	}
	// --
	if( WingsSetInvisibleEffect_Pointer == 0x1D54	//Cloak of Invisibility 
		|| WingsSetInvisibleEffect_Pointer == ObjectId(12, 242) 
		|| WingsSetInvisibleEffect_Pointer == ObjectId(12, 243)
		|| WingsSetInvisibleEffect_Pointer >= ObjectId(13, 120)
		&& WingsSetInvisibleEffect_Pointer <= ObjectId(13, 125))
	{
		_asm
		{
			mov WingsSetInvisibleEffect_Buff, 0x005CEE41
			jmp WingsSetInvisibleEffect_Buff
		}
	}
	else
	{
		_asm
		{
			mov WingsSetInvisibleEffect_Buff, 0x005CEEB7
			jmp WingsSetInvisibleEffect_Buff
		}
	}
}

SetRange((LPVOID)iWingInvisibleEffect, 12, ASM::NOP);
SetJmp((LPVOID)iWingInvisibleEffect, cWingsInvisibleEffect);
 
Skilled Illusionist
Joined
Jun 7, 2014
Messages
315
Reaction score
18
yeah I make this in old times too is easy in really look this (1.03.11):

Header file:
Code:
#define iWingInvisibleEffect        0x005CEE35
#define ObjectId(x, y)            ((x * 512) + y + 834)

Source file:
Code:
DWORD    WingsSetInvisibleEffect_Pointer;
DWORD    WingsSetInvisibleEffect_Buff;

void __declspec(naked) cWingsInvisibleEffect()
{
    _asm
    {
        mov WingsSetInvisibleEffect_Buff, esi
        // ----
        mov ecx, dword ptr ss:[ebp+8]
        mov esi, dword ptr ds:[ecx+0x30]
        mov WingsSetInvisibleEffect_Pointer, esi
        // ----
        mov esi, WingsSetInvisibleEffect_Buff
    }
    // --
    if( WingsSetInvisibleEffect_Pointer == 0x1D54    //Cloak of Invisibility 
        || WingsSetInvisibleEffect_Pointer == ObjectId(12, 242) 
        || WingsSetInvisibleEffect_Pointer == ObjectId(12, 243)
        || WingsSetInvisibleEffect_Pointer >= ObjectId(13, 120)
        && WingsSetInvisibleEffect_Pointer <= ObjectId(13, 125))
    {
        _asm
        {
            mov WingsSetInvisibleEffect_Buff, 0x005CEE41
            jmp WingsSetInvisibleEffect_Buff
        }
    }
    else
    {
        _asm
        {
            mov WingsSetInvisibleEffect_Buff, 0x005CEEB7
            jmp WingsSetInvisibleEffect_Buff
        }
    }
}

SetRange((LPVOID)iWingInvisibleEffect, 12, ASM::NOP);
SetJmp((LPVOID)iWingInvisibleEffect, cWingsInvisibleEffect);
thx , can u share source for main 1.03.11 that wings support gs and main ?
 
Newbie Spellweaver
Joined
Jul 18, 2015
Messages
51
Reaction score
5
hi mauro07, i add custom wing in main season2 ok, but Raven Wing cant show normal

error :
Kiosani - Arieth 4th Wing + Wz Wing Ex701 2.5 + Wz Wing SS8 (Models & Textures) - RaGEZONE Forums


p/s: i have add in main ss4, ss5 Raven Wing is show normal, but not work in main ss2 , please help me !
 
Back
Top