Jump to content

B0ne

Member
  • Posts

    41
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by B0ne

  1. Sorry to turn the topic back on, but maybe it will help someone. Go go char_manager.cpp void CHARACTER_MANAGER::DestroyCharacterInMap(long lMapIndex) Inside search these if (pkChr && pkChr->GetMapIndex() == lMapIndex && pkChr->IsNPC() && !pkChr->IsPet() && pkChr->GetRider() == NULL) change to if (pkChr && pkChr->GetMapIndex() == lMapIndex && pkChr->IsNPC() && !pkChr->IsPet() && !pkChr->IsPrivShop() && pkChr->GetRider() == NULL) thats all. and now the shops dont disappear after /reload_regen
  2. Navicat -> Player DB -> Design Shop_Item Table -> Search count -> Change to smallint and 4
  3. Thanks, works nice and no problems!
  4. uitooltip line 864 - you have tab error. ckeck your tabs
  5. Nice System and works good, but my Character is Lv 120 (max) and if i change Conq.Lv to 1, the AttachTitle dont change the normal playerlevel to conq. level If i ride a horse, the level will be updated for 2 seconds and then change back to lv. 120
  6. uiInventory.py Search: def RefreshBagSlotWindow(self): Find this: self.wndItem.RefreshSlot() if self.wndBelt: self.wndBelt.RefreshSlot() Add below: if 53001 <= itemVnum and 53051 >= itemVnum: metinSocket = [player.GetItemMetinSocket(slotNumber, j) for j in xrange(player.METIN_SOCKET_MAX_NUM)] if slotNumber >= player.INVENTORY_PAGE_SIZE*self.inventoryPageIndex: slotNumber -= player.INVENTORY_PAGE_SIZE*self.inventoryPageIndex isActivated = 0 != metinSocket[1] if isActivated: self.wndItem.ActivateSlot(slotNumber) else: self.wndItem.DeactivateSlot(slotNumber)
  7. Following problem: I have added the shoulder sash system. The shoulder strap goes into the imaginary costume braid. The effect that it has been equipped is also displayed. In the item_proto, the value3 is adapted to the index in the .msm (root) (since no scale). The paths to the respective .gr2 files of the sash are correct. Granny was also upgraded from 2.4 to 2.9 and The Granny (.gr2) also with the Bulkconverter. Now the sash are still invisible ....
  8. Nice. Without Source: Go to: ../ymir work/npc2 ... pwahuang1.msm search: { Radius Position } edit like this: { Radius -100.000000 Position -100.000000 -100.000000 -100.000000 }
  9. binary source -> UserInterface / InstanceBaseEffect.cpp -> void CInstanceBase::UpdateTextTailLevel(DWORD level)
×
×
  • 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.