Jump to content

menma

Members
  • Posts

    12
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About menma

Profile Information

  • Gender
    Female

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

menma's Achievements

Newbie

Newbie (1/16)

  • Dedicated Rare
  • Reacting Well Rare
  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. I tried to build dll from this repository - https://bitbucket.org/l2shrine/extender-public/src/compiler-h5/, but when I try to compile ai.nasc it gives me some errors and doesn't compile anything. The file is compiled with a size of ~1660, although the file that the compiler works with normally is ~2040. If anyone has them, please share. Thank you!
  2. Hi Bumble, I want to thank you again for your great work. But I have a small problem. When I try to save, homage just closes and doesn't save anything.
  3. Hello, i need that files from this pack, not Epilogue, but deleted. Anybody have it?
  4. Thank you! Your files work fine.
  5. If you can, send all your binary. I try to watch what is this. Ty. Bacause i dont khow, change l2server dll name and import dll in other binary its all what i do.
  6. It looks like the server is not sending a packet to the login that I have logged out. The client closes, but the login server shows that I am still online. How are you with logging out and logging in to one account, is everything okay?
  7. what authd are you using?I download but it did not help.
  8. I used eressea extender and hint auth. Clean system 273p.
  9. void CAuthD::SaveUserDataAndLogout(int nAccountID,int nUnk1,int nUnk2) { typedef void (CAuthD::*t)(int,int,int); SET_INSTANCE_METHOD_ADDR(t, 0x45C00CL); CALL_INSTANCE_METHOD(nAccountID,nUnk1,nUnk2); } void CAuthD::RequestLogout(int nAccountID,int nUnk1,int nUnk2) { typedef void (CAuthD::*t)(int,int,int); SET_INSTANCE_METHOD_ADDR(t, 0x45BE50L); CALL_INSTANCE_METHOD(nAccountID,nUnk1,nUnk2); } bool CAuthD::OnRequestLogin(wchar_t * sAccountName,int nAccountID,int nGameSessionID,int nAccountID2,int nAuthSessionID,CUserSocket *pSocket) { TLS_TRACE_FUNCTION; if(nGameSessionID == 0 || nAuthSessionID == 0 || nAccountID != nAccountID2) { CLog::Add(CLog::red,L"Wrong account session! account_id(%d) GameSessionID[%d] AccountID2[%d] AuthSessionID[%d]",nAccountID,nGameSessionID,nAccountID2,nAuthSessionID); pSocket->ForceClose(6); return false; } g_AuthSessionLock->WriteLock(__WFILE__,__LINE__); bool bSessionError = false; IntIntMap::iterator iter = g_AuthAccountSessionMap->find(nAccountID); if(iter != g_AuthAccountSessionMap->end()) { if (nGameSessionID != iter->second) { bSessionError = true; CLog::Add(CLog::red,L"Wrong account session! account_id(%d) session[%d] != [%d]",nAccountID,nGameSessionID,iter->second); } } else { bSessionError = true; CLog::Add(CLog::red,L"Account session not found! account_id(%d) session[%d]",nAccountID,nGameSessionID); } g_AuthSessionLock->WriteUnlock(); if(bSessionError) { pSocket->ForceClose(6); return false; } CPremiumService::I()->RequestPremiumState(pSocket->GetSocketUID(), nAccountID); typedef bool (CAuthD::*t)(wchar_t *,int,int,int,int,CUserSocket *); SET_INSTANCE_METHOD_ADDR(t, 0x45B648L); return CALL_INSTANCE_METHOD(sAccountName,nAccountID,nGameSessionID,nAccountID2,nAuthSessionID,pSocket); } hfdll.dll have this
  10. I used run.bat ai.nasc from cmd console. I try to make it by using l2npc.exe -c -e ai.nasc and have same result. Did you get it to compile? What version of Windows server do you have? I am using windows 2016 but the compiler for Gracia worked fine. UPD: The problem is solved, need to compile with standard scripts. The problem with re-login to the account remains.
  11. Hello! Decompieler work fine, but compiler dont start l2npc.exe i think. I put ai.nasc on folder and start it from cmd "run.bat ai.nasc", i see l2npc.exe in process, but dont have output in console, ai.obj not created and dont have log folder in l2npc dir. And does anyone have a bug with re-authorization on an account without restarting the server?
  12. Hello Bumble! I want to thank you for your excellent work. I have a question, if you are still doing homage could you add an edit to questname.dat? Thank you again for your hard work and I wish you the best of luck!
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock