Jump to content

ALLWPP

Inactive Member
  • Posts

    35
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by ALLWPP

  1. Hi , I CAN ADDED CONFIG

     

    XTRAP_ENABLE: 1

     

    And

     

    Client Add Locale_inc.h

     

    #define ENABLE_XTRAP

     

    And 

     

    ENV LDPRELOAD="..../libxtrap.so" ./game &

     

    but

     

    SYSERR: Feb 23 18:31:34.400447 :: LoadXTrapModule: XTrap-failed to load at least one client map file. map file name should be map1.CS3 or map2.CS3

     

    this error and return false .

  2.  

     

     

    try 

     

    PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs)
    {
    return Py_BuildValue("ll", CPythonPlayer::Instance().GetStatus(POINT_GOLD));
     
    return PyLong_FromLongLong(CPythonPlayer::Instance().GetStatus(POINT_GOLD));
    }

     

     

    https://metin2.download/picture/0tQxtLcr58a67bjF51CgJQAmUY5GFpPP/.jpg

     

    Not Fix.

     

    try

    PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs)

    {

    return Py_BuildValue("K", CPythonPlayer::Instance().GetStatus(POINT_GOLD));

    }

     

    https://metin2.download/picture/PIgl65nOOD3FYYdsI4mmR88x4x1k0kCl/.jpg

     

    Not Fix.

  3. I Can Change PythonPlayerModule.cpp ;

     

    //PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs)
    //{
    //return Py_BuildValue("i", CPythonPlayer::Instance().GetStatus(POINT_GOLD));
    //}
    
    
    PyObject * playerGetElk(PyObject* poSelf, PyObject* poArgs)
    {
    return Py_BuildValue("LL", CPythonPlayer::Instance().GetStatus(POINT_GOLD));
    }

    uicommon.py ;

     

    money = 0
    if text and text.isdigit():
    try:
    money = LongLong(text)
    except ValueError:
    money = 500000000000

    But This Error :

     

    https://metin2.download/picture/wr4t20tmBNuvOc68w6UC5KY70qeIIqA9/.jpg

     

×
×
  • 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.