Jump to content

iFreakTime~.~

Member
  • Posts

    120
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by iFreakTime~.~

  1. I have this error after update client binary/lib to python27. I tried for 5 hours to resolve but .. nothing .. please help. (Sorry for my bad English.)

    I give ??????????? error after 5-10 seconds played in map1. I post ErrorLog.txt because syserr.txt is empty.

    Module Name: D:\Metin2.pl client\Metin2Distribute.exe
    Time Stamp: 0x582c8a9e - (null)
    
    Exception Type: 0xc0000005
    
    eax: 0x0000004f	ebx: 0x0063ea36
    ecx: 0x0000006f	edx: 0x00000000
    esi: 0x0000006f	edi: 0x0301ef2c
    ebp: 0x0014ecf4	esp: 0x0014ecec
    
    0x0045a71e	D:\Metin2.pl client\Metin2Distribute.exe
    0x00541be8	D:\Metin2.pl client\Metin2Distribute.exe
    0x00541bae	D:\Metin2.pl client\Metin2Distribute.exe
    0x004d0611	D:\Metin2.pl client\Metin2Distribute.exe
    0x004cedb3	D:\Metin2.pl client\Metin2Distribute.exe
    0x004d143b	D:\Metin2.pl client\Metin2Distribute.exe
    0x1e0eb707	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ee8fa	D:\Metin2.pl client\python27.dll
    0x1e09c601	D:\Metin2.pl client\python27.dll
    0x1e07a7dc	D:\Metin2.pl client\python27.dll
    0x1e086420	D:\Metin2.pl client\python27.dll
    0x1e07a7dc	D:\Metin2.pl client\python27.dll
    0x1e0ea04c	D:\Metin2.pl client\python27.dll
    0x1e07a782	D:\Metin2.pl client\python27.dll
    0x005bd477	D:\Metin2.pl client\Metin2Distribute.exe
    0x005bcfc5	D:\Metin2.pl client\Metin2Distribute.exe
    0x0056f6c2	D:\Metin2.pl client\Metin2Distribute.exe
    0x0046f890	D:\Metin2.pl client\Metin2Distribute.exe
    0x004726ab	D:\Metin2.pl client\Metin2Distribute.exe
    0x1e0eb707	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ea211	D:\Metin2.pl client\python27.dll
    0x1e0eb784	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ee8fa	D:\Metin2.pl client\python27.dll
    0x1e0ee952	D:\Metin2.pl client\python27.dll
    0x1e0eeb36	D:\Metin2.pl client\python27.dll
    0x1e0ecb94	D:\Metin2.pl client\python27.dll
    0x1e0ee8fa	D:\Metin2.pl client\python27.dll
    0x1e0ea273	D:\Metin2.pl client\python27.dll
    0x1e0eb784	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ea211	D:\Metin2.pl client\python27.dll
    0x1e0eb784	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ea211	D:\Metin2.pl client\python27.dll
    0x1e0eb784	D:\Metin2.pl client\python27.dll
    0x1e0ed98e	D:\Metin2.pl client\python27.dll
    0x1e0ee8fa	D:\Metin2.pl client\python27.dll
    0x1e0ee952	D:\Metin2.pl client\python27.dll
    0x1e0eeb36	D:\Metin2.pl client\python27.dll
    0x1e0ecb94	D:\Metin2.pl client\python27.dll
    0x1e0ee8fa	D:\Metin2.pl client\python27.dll
    0x1e0ee952	D:\Metin2.pl client\python27.dll
    0x1e1151cb	D:\Metin2.pl client\python27.dll
    0x1e11621c	D:\Metin2.pl client\python27.dll
    0x005bdea8	D:\Metin2.pl client\Metin2Distribute.exe
    0x005be009	D:\Metin2.pl client\Metin2Distribute.exe
    0x005bde62	D:\Metin2.pl client\Metin2Distribute.exe
    0x004d2ae7	D:\Metin2.pl client\Metin2Distribute.exe
    0x004d2d3b	D:\Metin2.pl client\Metin2Distribute.exe
    0x004d30db	D:\Metin2.pl client\Metin2Distribute.exe
    0x005ca6b2	D:\Metin2.pl client\Metin2Distribute.exe
    0x75e28e94	C:\WINDOWS\System32\KERNEL32.DLL
    0x77bfe9f2	C:\WINDOWS\SYSTEM32\ntdll.dll
    0x77bfe9c1	C:\WINDOWS\SYSTEM32\ntdll.dll
    
    

     

  2. No errors on compile binary.

    But , I enter the game , normally it need to show this : [VIP] Lv %d, this function:

     if (IsVIP())
      sprintf(szText, "|cFF00CCFF[VIP]|r Lv. %d", level);

    But, it show this function :

    else if (IsPC())

    sprintf(szText, "|cFF00CCFF[Player]|r Lv. %d", level);

    The server not identify the VIP from this, with "if (IsGameMaster())" works perfectly.

  3. Hi all. I want to add a new 'fuction' by this system : https://metin2dev.org/board/index.php?/topic/11839-release-vip-system-from-src/

    And I added In level function "void CInstanceBase::UpdateTextTailLevel(DWORD level)" a VIP function name like this :

     if (IsVIP())
      sprintf(szText, "|cFF00CCFF[VIP]|r Lv. %d", level);

    But not working, binary is compiling with succes but show players title

    else if (IsPC())

    sprintf(szText, "|cFF00CCFF[Player]|r Lv. %d", level);

    Please help me.

    PS: Sorry for my bad English.

     

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