Last edited by seedmaker; 05-06-17 at 03:38 PM.
How to set party level limit?
Characters lvl 1 can do party with 400 now, I want to set it max. at 150 difference levels
Hey. Does anyone have a fix in offexp close client? No reconnect? THX!
Hello! how can i remove the license this files? (S6). have any guide?
Guide to create bypass: http://forum.ragezone.com/f197/relea...s4-s6-1098374/ is on the first page of this thread.
guys how i delete snow effect in lorencia?
Anyone can fixed the required level in the move list? With normal characters show the required level, but using Dark lord or MG shows a lower req level for move. Any idea?
it always has been.
Season 6 client code:
Code:int GetMgTeleportLevel(int mapLevel) { return mapLevel*2/3;//floor(mapLevel*2/3); } __declspec(naked) void ChangeMGLevel() { static DWORD TpLevel=0; static DWORD retAddr = 0x00832ACE; __asm { MOV EAX, DWORD PTR SS:[EBP-0x30] MOV TpLevel, EAX } TpLevel = GetMgTeleportLevel(TpLevel); __asm { MOV EAX, TpLevel MOV DWORD PTR SS:[EBP-0x30],EAX jmp retAddr } } //Hook: SetCompleteHook(0xE9,0x00832ABB,&ChangeMGLevel);
Code:__declspec(naked) void GuildAssistEx() { static DWORD GuildAssistEx_Buff; _asm { mov GuildAssistEx_Buff, ecx } // ---- if( GuildAssistEx_Buff == 128 || GuildAssistEx_Buff == 64) { _asm { mov GuildAssistEx_Buff, 0x0078F5FD jmp GuildAssistEx_Buff } } else { _asm { mov GuildAssistEx_Buff, 0x0078F57A jmp GuildAssistEx_Buff } } } //Hook SetCompleteHook(0xE9,0x0078F56E,&GuildAssistEx);