Jump to content

WeedHex

Premium
  • Posts

    1543
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

WeedHex last won the day on June 4 2021

WeedHex had the most liked content!

5 Followers

About WeedHex

Informations

  • Country
    Italy
  • Nationality
    Italian

Recent Profile Visitors

5197 profile views

WeedHex's Achievements

Veteran

Veteran (13/16)

  • Reacting Well
  • Dedicated
  • Very Popular Rare
  • Conversation Starter
  • One Year In

Recent Badges

626

Reputation

  1. I don't think so, if you don't abuse of it. If I remember well the effects are loaded in another step, after the entergame.
  2. Which library are you talking about, the one needed from game file?
  3. Are you sure about what you're doing?? Btw try to post your uitooltip.py
  4. How do you generate the fake characters? I doubt you connected 180 clients You should be sure that your "clones" are same of real players in level of heaviness. Very curious about it, keep it up
  5. Talk to the AI, better than waiting here.
  6. Checking the pointer from the beginning, but controlling it again before destroy and then using again. The guy meant this with the arrows. I agree about the use of LUA for dungeons. It's much faster and already prepared for use, without risk of memory, at the end it's linking c++, you got less lines and more order/safety. Obv it's good for pratice c++ doing as you did. Thanks for the share, will be very useful for my Yohara
  7. I heard many people receiving handshake from Belize location >_< However I don't think your core crash is related to that syserr. Analyze with #dbg your core crash first of all. About handshake you can decide to blacklist the intrusive ip. Activate a firewall leaving public only the needed ports, and put some limit or check.
  8. It was blocking also Set Value to 0. if (value == NULL) return 0; My version: int item_set_socket(lua_State* L) { LPITEM item = CQuestManager::instance().GetCurrentItem(); if (!item) return 0; if (lua_isnumber(L, 1) && lua_isnumber(L, 2)) { const auto idx = static_cast<int>(lua_tonumber(L, 1)); if (idx < 0 || idx >= ITEM_SOCKET_MAX_NUM) return 0; // Value can be 0 or negative. const auto value = static_cast<int>(lua_tonumber(L, 2)); item->SetSocket(idx, value); } else sys_err("Passing bad argument from LUA."); return 0; }
  9. Did you deleted/renamed the var/db/mysql folder before to run service start with Maria?
×
×
  • 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.