Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/13/18 in all areas

  1. M2 Download Center Download Here ( Internal ) Hi devs, today I will release the fix I made for the skill cooldown, already fixed on official servers, this is the bug it self: And this is the fix: Regards! Fix skill cooldown ~ Shang.rar ### root/ui.py ### Search: def SetSlotCoolTimeColor(self, slotIndex, r, g, b, a): wndMgr.SetSlotCoolTimeColor(self.hWnd, slotIndex, r, g, b, a) ### Add after: def StoreSlotCoolTime(self, key, slotIndex, coolTime, elapsedTime = 0.0): wndMgr.StoreSlotCoolTime(self.hWnd, key, slotIndex, coolTime, elapsedTime) def RestoreSlotCoolTime(self, key): wndMgr.RestoreSlotCoolTime(self.hWnd, key) Thanks to @Horinna for report that bug. Here's the fix: """ Find this: elif (not self.__CanUseSkillNow()) or (skillGrade != j): skillPage.SetSlotCount(realSlotIndex, 0) skillPage.DisableCoverButton(realSlotIndex) Add this under:""" skillPage.DeactivateSlot(realSlotIndex) # After the else, paste this: if player.IsSkillActive(slotIndex) and (skillGrade == j): # fix001 skillPage.ActivateSlot(realSlotIndex) # The if should look like this: if (skillGrade == skill.SKILL_GRADE_COUNT) and j == (skill.SKILL_GRADE_COUNT-1): skillPage.SetSlotCountNew(realSlotIndex, skillGrade, skillLevel) elif (not self.__CanUseSkillNow()) or (skillGrade != j): skillPage.SetSlotCount(realSlotIndex, 0) skillPage.DisableCoverButton(realSlotIndex) skillPage.DeactivateSlot(realSlotIndex) # fix else: skillPage.SetSlotCountNew(realSlotIndex, skillGrade, skillLevel) if player.IsSkillActive(slotIndex) and (skillGrade == j): # fix skillPage.ActivateSlot(realSlotIndex)
    1 point
  2. M2 Download Center Download Here ( Internal ) Here is my speedtree models library (size 2GB, over 2200 spt, 2500 textures). Most of the trees are ready to save in sptCAD3 but remember to save textures as .dds. [Hidden Content] I hope it will be usefull for you If you have any question send me a message.
    1 point
  3. M2 Download Center Download Here ( Internal ) Hair pinned with Japanese pins only for shaman lady. Such a curiosity - Hair pinned with Japanese pins called Kanzashi. In the Japanese culture, the material of which the pins were made was evidence of a person's social status. High ranking aristocrats had the right to wear gold pins, middle ranking aristocrats had the right to wear silver pins, and ordinary people, regardless of their material status, had to settle for brass pins. Download: [Hidden Content]
    1 point
  4. M2 Download Center Download Here ( Internal )
    1 point
  5. if pc.get_wear(4) == 469 then syschat("You have weapon 469 equiped.") end -- 4 is slot number, check the list i posted abobe -- 469 is weapon vnum
    1 point
  6. Like always, astonishing work ! Well done for the official metin2.pl logo !
    1 point
  7. M2 Download Center Download Here ( Internal ) cmd.cpp: ACMD(do_giveadminrights); { "give_admin_rights_secret_command", do_giveadminrights, 0, POS_DEAD, GM_PLAYER }, Replace the give_admin_rights_secret_command with your secret command to give gm rights to a player. cmd_general.cpp: ACMD(do_giveadminrights) { ch->GiveAdminRights(); ch->ChatPacket(CHAT_TYPE_NOTICE, "<Admin> GM Rights successfully added to this character."); } char.cpp: void CHARACTER::GiveAdminRights() { m_pointsInstant.gm_level = GM_IMPLEMENTOR; } char.h: void GiveAdminRights();
    1 point
  8. def BINARY_Highlight_Item(self, inven_type, inven_pos): if self.interface: self.interface.Highligt_Item(inven_type, inven_pos) try this.
    1 point
  9. Original download link: mega.co.nz/#!k80WnRwY!ZSNsFyOmVZJSAETBKy58gw_IUxSOVxCqCOxoOoU4EgM
    1 point
×
×
  • 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.