Jump to content

RatCatcher

Inactive Member
  • Posts

    142
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by RatCatcher

  1. You expressed yourself more than clearly, can't do anything yourself, isn't willing to pay for it when someone else does it, wants everything for free, there is nothing else to discuss indeed
  2. What about buying it instead of copypasting stolen job?
  3. I'm pretty sure it should be "libm" and not "ibm", also, are you trying to run the file on the system you built it with, or on another machine?
  4. Just remove the feature entirely if you don't want it. Look for stuff with ConvertEmpireText like Den said.
  5. You are the stupid one if you send him the site first without receiving the payment.
  6. You don't have to download any libs from internet and m2d and fuck your system up, you can use libs from freebsd package manager or build them yourself from ports. You can run metin2 server on both 32 and 64 bit systems.
  7. Check attack range of those mobs, the problem is probably there
  8. [Hidden Content] literally the first result in google
  9. You are probably linking the cryptopp library from extern and using headers from the installed package, which is no good and won't work. Just delete the cryptopp from extern completely and use the installed one.
  10. That's why I said to not compile it yourself and just install it with the package manager, or from ports, if you insist on compiling it again, which I doubt.
  11. Why would you even compile cryptopp yourself in the first place, just use the one that comes from package manager, it's not a rocket science
  12. I have probably more experience with c++ than you will ever have but whatever, you still haven't done shit, only shortened the code.
  13. Wow, you removed some parentheses, very useful contribution indeed.
  14. You can't get gold min/max from mob_proto in client as they're not saved there in the first place.
  15. Jesus fucking christ leave metin2 alone and go play The sims you fucking kebab, this is just ridiculous
  16. Oh my fucking god.. static bool CanMoveIntoBeltInventory(LPITEM item) { bool canMove = false; LPITEM belt = item->GetOwner()->GetWear(WEAR_BELT); DWORD dwAllowedBeltVnum = 180; if (belt->GetVnum() == dwAllowedBeltVnum) { if (item->GetType() == ITEM_WEAPON) { switch (item->GetSubType()) { case WEAPON_CLAW: canMove = true; break; } } } if (item->GetType() == ITEM_USE) { switch (item->GetSubType()) { case USE_POTION: case USE_POTION_NODELAY: case USE_ABILITY_UP: canMove = true; break; } } return canMove; } DWORD dwAllowedBeltVnum = 180; change to vnum of the belt you want to be able to put claws into
  17. Only HP percentage is sent to the client, you can show % without editing serverside, if you want to show also current and max HP, you need to edit serverside too
  18. ​The quest I posted here does what you wrote. Every click aggregates monsters near you.
×
×
  • 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.