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!

Recent content by Mecanik

  1. Mecanik

    [Release] Original Complete Sources 0.65 WebZen

    I have a question (even though I got no interest in MU Online), where do you get your hands on these sources? :D:
  2. Mecanik

    [Release] MU_RANKING Server Source (2008)

    Well, I never understood why MU had / has a Ranking Server in the first place. (check XTEAM) Also, this make me laugh: BOOL CRankingLock::CheckTimer() { __try { Lock(); } __except ((GetTickCount() - m_dwTickCount) > MAX_RANK_WAITTIME, EXCEPTION_EXECUTE_HANDLER) { UnLock(); }...
  3. Mecanik

    [Help] Looking for Lorencia ring PVP for season 12

    Re: Looking for lorencia ring PVP for season 12 Considering that you made 999 "tutorials" regarding MU Online, and you have been "praised" + "thanked" around by people for years; you should at least not feed them crap Karli ? The archive you are giving people to download contains over 1000+...
  4. Mecanik

    [Help] Best Antihack?

    Re: Best Antihack? I see that you have the "guts" to actually say something to me. You are the first person that "tried" and still "tries" to copy my work and steal my customers. I have many many people showing me their chat on Skype how you try to sell your product and blame my one. Let me...
  5. Mecanik

    [Help] Best Antihack?

    Re: Best Antihack? 1. UGK - That guy will pack the game and his files into "amazon.exe" ( and he is using stolen service file to create service ) 2. NSE - "amazing" using XTEAM's LoadLibrary detour... and unlicensed QT (You must be registered for see element.). And it's working with IGCN S12...
  6. Mecanik

    [Release] Highly improve the performance of you Mu Online (DLL)

    jackbot - There is nothing to steal, that doesn't do anything, and just because you see the numbers in task manager going lower, it doesn't mean it actually works. SmileYzn - I knew this long time ago, I did not need the Google for this, I posted that because I REPEAT: I WAS LAZY AND BUSY.
  7. Mecanik

    [Release] Highly improve the performance of you Mu Online (DLL)

    And why should I do that ? Just because I was lazy and right ? :sleep:
  8. Mecanik

    [Release] Highly improve the performance of you Mu Online (DLL)

    This is not recommended, you should not use this for any games. SetProcessWorkingSetSize() controls the amount of RAM that your process uses, it doesn't otherwise have any affect on the virtual memory size of your process. Windows is already quite good at dynamically controlling this...
  9. Mecanik

    CSRF or protection to CMS

    What framework is this ? Is it something custom ?
  10. Mecanik

    .htaccess error

    Please provide the proper code of the .htaccess, because the way you posted nobody is going to arrange it ...
  11. Mecanik

    Attaching LiveGuard to Main.exe IGCN S9.5

    Unfortunately there is no free version at the moment. You can order a paid version, and we handle everything.
  12. Mecanik

    Implement Run as Administrator in Project.

    Changing UAC Level in Visual Studio will not do it properly. Use the following function: bool SetAdminPrivilege() { HANDLE TokenHandle; if(OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES,&TokenHandle) == 0) { return 0; } LUID luid...
  13. Mecanik

    Please Help run asm on specific address on c++

    #define HOOK_SIZE 5 void Set_Hook(LPVOID lpOffset, LPVOID lpFunction, BYTE Type) { BYTE TypeMemory[5] = { 0 }; DWORD dwMemPacthed = 0; SIZE_T MemorySize = 0; DWORD dwOldProtect = 0; SIZE_T VirtualSize = 0; dwMemPacthed =...
  14. Mecanik

    Please Help run asm on specific address on c++

    I understand that you want to HIDE an address ? You can do this during runtime, but it will still be visible with a debugger... Let`s say you want to replace address: 0x004A8316 #define REPLACE_MEMORY 0x004A8316 Naked(ReplaceMemory) { _asm { MOV EAX, DWORD PTR DS : [ECX + 0x04] MOVZX...
  15. Mecanik

    [Release] IGCN Season 9.5 (src-x9.5 9.5.1.15) SRC (April/2016)

    I was honestly expecting some professional written code, but I am now very very disappointed. The client side ( I have not checked the rest yet ) is written like somebody was playing around and testing functions, I can see now why I had so much trouble with IGCN S9 clients. IGCN cannot even...
Back
Top