Jump to content

dukaibalu1

Inactive Member
  • Posts

    116
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by dukaibalu1

  1. PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return Py_BuildValue("K", CPythonPlayer::Instance().GetStatus(POINT_GOLD)); } K is worked... My gold is "long long"
  2. Hello metin2dev someone please tell me the cause of the error? 0217 20:59:19349 :: game.py(line:232) Open game.py(line:654) StartGame game.py(line:806) RefreshCharacter interfaceModule.py(line:573) RefreshCharacter uiCharacter.py(line:1106) RefreshCharacter uiCharacter.py(line:1175) __SetSkillSlotData uiCharacter.py(line:848) RefreshSkill uiCharacter.py(line:785) __RefreshSkillPage uiCharacter.py(line:1226) __GetRealSkillSlot GameWindow.Open - <type 'exceptions.RuntimeError'>:skill.CanUseSkill - Failed to find skill by 170 0217 20:59:19349 :: ============================================================================================================ 0217 20:59:19349 :: Abort!!!!
  3. Hello metin2dev Does anyone know how to add the client to the cython source files? The cython files have been translated, so they already .cpp files.
  4. Hello Someone got the translate.lua English German Hungarian official version? or any part of it?
  5. source game you have long long int? long long yang_max = 200000000000LL;
  6. PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return Py_BuildValue("K", CPythonPlayer::Instance().GetStatus(POINT_GOLD)); }
  7. userinterface pythonplayermodule.cpp try change this PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return Py_BuildValue("i", CPythonPlayer::Instance().GetStatus(POINT_GOLD)); } Not Work PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs) { return PyLong_FromLongLong(CPythonPlayer::Instance().GetStatus(POINT_GOLD)); }
  8. Hello everyone, Today i tried to increase the maximum gold limit. The edited gamefile worked fine and the limit is increased (serverside). The problem is the Clientside part. I've managed to fix the packets but it does not show the amount of Gold Ingame in the Inventory. I hope that someone can help me. Navicat 5,000,000,000 gold... Ingame 705,032,704. This is problem!
×
×
  • 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.