Jump to content

danhakhavro

member
  • Posts

    138
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by danhakhavro

  1. 6 hours ago, Pisti95 said:

    Check out my files.

    This is the hidden content, please

     

    Thanks for your reply. Now i got this error:

     

    0614 14:14:46801 :: Traceback (most recent call last):
    
    0614 14:14:46801 ::   File "uiSkillBookCombination.py", line 224, in OnPressEscapeKey
    
    0614 14:14:46801 ::   File "uiSkillBookCombination.py", line 40, in Close
    
    0614 14:14:46801 ::   File "uiSkillBookCombination.py", line 174, in SetCanMouseEventSlot
    
    0614 14:14:46801 :: AttributeError
    0614 14:14:46801 :: : 
    0614 14:14:46801 :: 'NoneType' object has no attribute 'GetInventoryPageIndex'
    0614 14:14:46801 :: 

     

    Line 174:

    	def SetCanMouseEventSlot(self, idx):
    		if not isinstance(idx, types.NoneType):
    			if app.WJ_SPLIT_INVENTORY_SYSTEM:
    				if self.inven or self.invenSpecial:
    					page = self.inven.GetInventoryPageIndex() # range 0 ~ 1
    					special_page = self.invenSpecial.GetInventoryPageIndex()
    					
    					if (page * INVENTORY_PAGE_SIZE) <= idx < ((page + 1) * INVENTORY_PAGE_SIZE): # range 0 ~ 44, 45 ~ 89
    						idx = idx - (page * INVENTORY_PAGE_SIZE)
    						self.inven.wndItem.SetCanMouseEventSlot(idx)
    
    					elif self.invenSpecial.GetInventoryType() == 0:
    						if (item.SKILL_BOOK_INVENTORY_SLOT_START + (special_page * SPECIAL_INVENTORY_PAGE_SIZE)) <= idx < (item.SKILL_BOOK_INVENTORY_SLOT_START + (((special_page + 1) * SPECIAL_INVENTORY_PAGE_SIZE))):
    							idx = idx - (item.SKILL_BOOK_INVENTORY_SLOT_START + (special_page * SPECIAL_INVENTORY_PAGE_SIZE))
    							self.invenSpecial.wndItem.SetCanMouseEventSlot(idx)

     

    If i make:

                #    if self.inven or self.invenSpecial:
                    if self.invenSpecial:

     

    Than happen the previous bug: GIF

    • Metin2 Dev 4
    • Good 1
    • Love 2
  2. On 4/26/2021 at 10:44 PM, eeevil123 said:

    the effects on the weapons are not seen 😕

    I have a problem the effects on the weapons are not seen and the effects on the armor yes

    spacer.png

     

    Same problem. The effect doesnt show and the sysser are empty. Maybe the configuration is wrong. If / When i discover what happen i will update the topic.

     

    FIX: The system is incomplete and there are bugs made on purpose, here I leave the resolution:

     

     

    Locale_inc.h

    ADD:
    
    #define ENABLE_SHINING_SYSTEM

     

    PythonApplication.cpp

    Find: if (!rkItemMgr.Loa******ngTable(szShiningTable))

    and replace with:

    if (!rkItemMgr.LoadShiningTable(szShiningTable))

     

    And at InstanceBase.cpp

    Add the bracket (red color on screenshot)

    mchHPOO.png

     

    • Metin2 Dev 1
    • Not Good 1
    • Love 1
  3. Hello,

    I am registering a new account in the website, the site says that the account was registered successfully but it doesnt add any account to my database.

    I already change the website, use a simple 1 page register, allow all columns in account.account to NULL, nothing works.

    But if i use one id that already exist, the website say that i cant create account, the ranking is working also fine.

    Does anyone have an idea of what it might be?

    Thanks

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