Jump to content

Mali

Honorable Member
  • Posts

    918
  • Joined

  • Days Won

    876
  • Feedback

    100%

Everything posted by Mali

  1. input_login.cpp / static void _send_bonus_info(LPCHARACTER ch)
  2. M2 Download Center Download Here ( Internal ) You need to install this first: [Hidden Content] You can use it in guild wars, tournaments etc.
  3. @ASIKOO is experienced in these unpack things. I'm sure he has it. Send some messages to him.
  4. I directly lock the Wheel. There may be other short ways. At least it's working. #Intrologin.py: #Find app.SetCamera(map_random['dis'], map_random['pit'], map_random['rot'], map_random['height']) #Add app.LockMouseWheel(True) #Find background.Destroy() #Add app.LockMouseWheel(False) // PythonApplication.h //Find void SetMouseHandler(PyObject * poMouseHandler); ///Add void LockMouseWheel(bool bLock) { m_bLockMouseWheel = bLock; } //Find bool m_isFrameSkipDisable; ///Add bool m_bLockMouseWheel; // PythonApplication.cpp //Find m_isFrameSkipDisable(false), ///Add m_bLockMouseWheel(false), // PythonApplication.cpp ///Change : void CPythonApplication::OnMouseWheel(int nLen) void CPythonApplication::OnMouseWheel(int nLen) { if (m_bLockMouseWheel) return; CCameraManager& rkCmrMgr=CCameraManager::Instance(); CCamera* pkCmrCur=rkCmrMgr.GetCurrentCamera(); if (pkCmrCur) pkCmrCur->Wheel(nLen); } // PythonApplicationModule.cpp PyObject* appLockMouseWheel(PyObject* poSelf, PyObject* poArgs) { bool bLock; if (!PyTuple_GetBoolean(poArgs, 0, &bLock)) return Py_BuildException(); CPythonApplication::Instance().LockMouseWheel(bLock); return Py_BuildNone(); } { "LockMouseWheel", appLockMouseWheel, METH_VARARGS },
  5. i forgot to say. I removed the reload with sql update.
  6. M2 Download Center Download Here ( Internal ) [Hidden Content] [Hidden Content]/releases/latest
  7. The idea is old but gold. by the way what we do is almost the same
  8. r_item.m_Sold = std::unique_ptr< SShopSoldItemData >(new SShopSoldItemData(ch->GetName(), r_item.pkItem));
  9. M2 Download Center Download Here ( Internal ) [Hidden Content]
  10. M2 Download Center Download Here ( Internal ) [Hidden Content] I did this 4 months ago out of necessity. Maybe it will be useful for someone. SubSlicer's author: sanii187 [Hidden Content] password: black
  11. # 1.2: Now you can get _proto files from packaged protos. Do not use them directly because some values are not packed when closing proto. Use for preview purposes.
  12. M2 Download Center Download Here ( Internal ) [Hidden Content] You can get the proto files from the packaged protos with the reverse setting: password: black
  13. Sorry! I won't write comments if its not neccesary
  14. Love the rules or not. If you are here, you must follow the rules of this place. The rule is very clear. And please don't be a dumb, it's not about social justice warrior or etc.
  15. Just build discord project with c++14. What does it matter?
×
×
  • 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.