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

Social Networks

  • Skype
    alendro.

Recent Profile Visitors

1572 profile views

Metin2Place's Achievements

Community Regular

Community Regular (8/16)

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

Recent Badges

29

Reputation

  1. 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?
  2. If the taskbar is full, on every teleport all the inventory are highlighted. [Hidden Content] Any idea how to solve it?
  3. The skill cooldown finishes too early and doesn't do damage if is cast instantly after cooldown.
  4. If you spam the same skill right after cooldown, the second time it won't do damage.
  5. Hello, I'm searching for stone.txt (regen) for all 4 beta maps with the ores included.
  6. I bought the switchbot yesterday. I recommend him. Very friendly, helpful and know what he's doing.
  7. I have your errors too. From where do you have those libs?
  8. Video unavailable This video is private.
  9. 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?
  10. 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); }
Γ—
Γ—
  • 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.