Jump to content

WeedHex

Premium
  • Posts

    1547
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

Everything posted by WeedHex

  1. https://vegas-projects.com/combat-zone-official-webzen-16-4/
  2. item.SelectItem(itemIndex, "") Best debug way.
  3. Ip what happen? client crash?? Compile launcher in release mode and try again ?
  4. do you want to make an exhibition system?
  5. As always, thank you very much for explain xP3NG3Rx ? Btw my suggestion was just to understand the moment, so the system. More better ur solutions.
  6. #define DEBUG_SELECT_ITEM #ifdef DEBUG_SELECT_ITEM #include "PythonChat.h" #endif PyObject * itemSelectItem(PyObject * poSelf, PyObject * poArgs) { int iIndex; if (!PyTuple_GetInteger(poArgs, 0, &iIndex)) return Py_BadArgument(); if (!CItemManager::Instance().SelectItemData(iIndex)) { #ifdef DEBUG_SELECT_ITEM CPythonChat::Instance().AppendChat(CHAT_TYPE_TALKING, "Cannot find item!!!!!"); #else TraceError("Cannot find item by %d", iIndex); #endif CItemManager::Instance().SelectItemData(60001); } return Py_BuildNone(); } The error comes from here. But this function is used A LOT in python, in lot of fkn places. So i'm suggesting to see the moment when error gets triggered to figure out better.
  7. I had the same problem is very hard to figure out what system is doing shit. I suggest to use DEBUG mode and find what system is responsible. Give us more info.
  8. object is not iterable The data is None. Show Def RefreshQuest
  9. Go in your source directories and do the command. It's just a search to understand where is your problem. (you told don't know where is, I think it's not default thing). # <- means is a shell command.
  10. "The problem is that the npc disappears after a few seconds." Not possible. You have problem on c++ so... Btw using this function you will spawn only 1 time. The time second is useless. If you remove the npc, it won't spawn again.
×
×
  • 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.