Jump to content

Metin2Place

Banned
  • Posts

    141
  • Joined

  • Last visited

  • Feedback

    0%

About Metin2Place

  • Birthday February 17

Core X

  • BAN_NOTICE
    Yes

Informations

  • Gender
    Not Telling

Recent Profile Visitors

2523 profile views

Metin2Place's Achievements

Community Regular

Community Regular (8/16)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

32

Reputation

  1. Do you know what exactly should I do?
  2. After some teleportations I always get a client crash. I tried with debug mode and once stopped in void spherepack.h line 186: assert( radius <= GetRadius()+0.0001f ); [Hidden Content] Other time I got only this [Hidden Content] Any ideas?
      • 1
      • Good
  3. If the taskbar is full, on every teleport all the inventory are highlighted. [Hidden Content] Any idea how to solve it?
  4. The skill cooldown finishes too early and doesn't do damage if is cast instantly after cooldown.
  5. If you spam the same skill right after cooldown, the second time it won't do damage.
  6. Hello, I'm searching for stone.txt (regen) for all 4 beta maps with the ores included.
      • 1
      • Love
  7. Where can I find the model of every characters?
  8. Recommand.
  9. Download link?
  10. You need boost in the project.
  11. I have your errors too. From where do you have those libs?
  12. Video unavailable This video is private.
  13. I implemented this offline shop [Hidden Content]. At first If i hide them and clicked on a position where they are, the shop will open. I made this change in PythonPlayerInput.cpp void CPythonPlayer::__OnClickActor(CInstanceBase& rkInstMain, DWORD dwPickedActorID, bool isAuto): if (rkInstVictim.IsNPC()) { #ifdef ENABLE_HIDE_SHOPS if ((rkInstVictim.GetRace() == 30000 || rkInstVictim.GetRace() == 30001) && CPythonSystem::Instance().IsHideShops()) return; #endif __SendClickActorPacket(rkInstVictim); } Now only if I click it quickly near me and they are shops, they will open. So it partially fix the problem. Anyone know how to fully fix it?
      • 9
      • Metin2 Dev
      • Good
  14. In PythonPlayerInput.cpp void CPythonPlayer::__OnClickActor(CInstanceBase& rkInstMain, DWORD dwPickedActorID, bool isAuto) you must replace if (rkInstVictim.IsNPC()) { __SendClickActorPacket(rkInstVictim); } with if (rkInstVictim.IsNPC()) { #ifdef ENABLE_HIDE_SHOPS if (rkInstVictim.GetRace() == 30000 && CPythonSystem::Instance().IsHideShops()) return; #endif __SendClickActorPacket(rkInstVictim); }
  15. Error LNK2001 unresolved external symbol "public: bool __thiscall CMapOutdoor::IsVisiblePart(int)" (?IsVisiblePart@CMapOutdoor@@QAE_NH@Z) UserInterface
×
×
  • 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.