Jump to content

Hik

Member
  • Posts

    276
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Hik last won the day on May 1 2018

Hik had the most liked content!

About Hik

Informations

  • Gender
    Male

Recent Profile Visitors

2118 profile views

Hik's Achievements

Proficient

Proficient (10/16)

  • Reacting Well
  • Very Popular Rare
  • Dedicated
  • First Post
  • Collaborator

Recent Badges

103

Reputation

  1. Is it possible to compile with visual studio and then use the compiled files in freebsd? Obviously not by generating an exe file.
  2. Thanks, that was annoying!
  3. Could someone who fixed bug #2 kindly post the solution?
  4. I was familiar with this bug as well as having experienced it. Someone claimed it was due to the random drop when trying to get the key. Thanks for the release !!!
  5. Thank you very much, I will more than gladly replace the code!
  6. In the end i used this: int random_drop(int min, int max) { std::random_device device; std::mt19937 generator(device()); std::uniform_int_distribution<int> distribution(min, max); return distribution(generator); }
  7. Thanks, I followed the code structure you posted ? I get some sort of warning at this line: do you know how to solve? m_pointsInstant.playerSlots-> wDSItemGrid [wCell] = 0; Buffer Overrun: When accessing m_pointsInstant.playerSlots-> wDSItemGrid, the non-write protected size is 1920 bytes, but it is possible to write to wcell.
  8. I think you can also delete passpod, openid, teen packet, vcard, aucion, login_sim etc.
  9. Thanks! I have already entered the code, soon I will try it !!
  10. I think the problem is another: Unfortunately I was unable to solve with the first solution and I fell back on the second: PythonUtils.cpp // Python int too large to convert to C long #define PyLong_AsLong PyLong_AsLongLong #define PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong
×
×
  • 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.