Jump to content

ForgiveN

Member
  • Posts

    7
  • Joined

  • Last visited

  • Feedback

    0%

About ForgiveN

Informations

  • Gender
    Male
  • Country
    Turkey
  • Nationality
    Turkish

Recent Profile Visitors

205 profile views

ForgiveN's Achievements

Enthusiast

Enthusiast (6/16)

  • One Year In
  • Dedicated
  • First Post
  • One Month Later
  • Week One Done

Recent Badges

1

Reputation

  1. Note; After editing tables.h, get the full build. Thanks for releases [Hidden Content]
  2. const DWORD MAX_RECV_COUNT = 4; const DWORD SAFE_RECV_BUFSIZE = 8192; DWORD dwRecvCount = 0; if (dwRecvCount++ >= MAX_RECV_COUNT - 1 && GetRecvBufferSize() < SAFE_RECV_BUFSIZE && m_strPhase == "Game") break; PythonNetworkStreamPhaseGame.cpp Remove them from the client.
  3. Char.h Search; bool IsGoto() const noexcept { return m_bCharType == CHAR_TYPE_GOTO; } Add under; bool IsHorse() const noexcept { return m_bCharType == CHAR_TYPE_HORSE; } Char_state.cpp Search; else if (IsGuardNPC()) Add above; if (IsHorse()) return; This will come in handy. However, you need to make the necessary adaptations. To do this, search for the IsPet function and make the adaptations accordingly.
  4. Does anyone have the Metin2.sg file? @ AZICKO
  5. BOOL CInstanceBase::IsInvisibility() { if (IsAffect(AFFECT_INVISIBILITY) || IsAffect(AFFECT_EUNHYEONG) || IsAffect(AFFECT_HOSIN)) return true; return false; } I found a solution like this, but it works
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.