Jump to content

Abel(Tiger)

Active+ Member
  • Posts

    196
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by Abel(Tiger)

  1. Check these functions in uitooltip.py : [Hidden Content] Probably you have a new function in your uitooltip.py like : def __IsNewHair4(self, itemVnum): return itemVnum > 76000 and itemVnum < 77000
  2. Replace: if (ch->IsPC() && ch->IsDead()) { if (ch->GetDesc()) { LogManager::instance().HackLog("GHOSTMODE", ch); ch->GetDesc()->DelayedDisconnect(3); } } with: if (ch->IsPC() && ch->IsDead()) { if (ch->GetDesc()) { LogManager::instance().HackLog("GHOSTMODE", ch); ch->Show(ch->GetMapIndex(), ch->GetX(), ch->GetY(), ch->GetZ()); ch->Stop(); return; } }
  3. uiinventory.py: search: self.inventoryTab[3].SetEvent(lambda arg=3: self.SetInventoryPage(arg)) add after: self.inventoryTab[0].Down()
  4. Is the same thing dude , when you leave aplication with camera active she just stop .
  5. I know , but not all players know alt+tab.
  6. When you move camera and minimize client in the same time mouse remains blocked and you need to maximize client , stop move camera and minimize again .
  7. An annoying bug which need a fix. Gif with the problem (from ѕeмa™) : // PythonApplicationProcedure.cpp // After: if (m_isWindowFullScreenEnable) { __MinimizeFullScreenWindow(hWnd, m_dwWidth, m_dwHeight); } // Just add: OnMouseMiddleButtonUp(0, 0);
  8. M2 Download Center Download Here ( Internal ) Pictures: [Hidden Content] Link: [Hidden Content]
  9. PythonEventManager.cpp const long c_lNormal_Waiting_Time = 0;
  10. This is official effect : [Hidden Content] [Hidden Content] ------------------------------------------------------------------------------ #playersettingmodule.py chrmgr.RegisterEffect(chrmgr.EFFECT_REFINED+21, "Bip01", "D:/ymir work/pc/common/effect/armor/acc_01.mse") ------------------------------------------------------------------------------ This is acc_01.mse : [Hidden Content]
  11. [Hidden Content] all stuff
  12. In input_main.cpp in function : int CInputMain::MyOfflineShop(LPCHARACTER ch, const char * c_pData, size_t uiBytes) add: if (ch->GetExchange() || ch->IsOpenSafebox() || ch->GetShopOwner() || ch->IsCubeOpen() || ch->GetOfflineShopOwner() || ch->IsAcceOpen()) { ch->ChatPacket(CHAT_TYPE_NOTICE, ("This nigga try to make a bug -> %s."), ch->GetName()); return (iExtraLen); }
  13. Contact creator (Vegas) and he help you if you bought this system.
  14. PythonEventManager.cpp const long c_lNormal_Waiting_Time = 0;
  15. In locale_game.txt search GAME_PICK_MONEY and replace %d with %s . In game.py search function def OnPickMoney(self, money): and replace with: chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.GAME_PICK_MONEY % (localeInfo.NumberToMoneyString(money)))
  16. For luzzo pet system - [ File: /Src/game/char_battle.cpp ] #1.) Search: #ifdef NEW_PET_SYSTEM if (to->GetNewPetSystem()) { if (to->GetNewPetSystem()->IsActivePet() && to->GetNewPetSystem()->GetLevelStep() < 4) { int tmpexp = iExp * 9 / 20; iExp = iExp - tmpexp; to->GetNewPetSystem()->SetExp(tmpexp, 0); } } #endif #2.) Replace with: #ifdef NEW_PET_SYSTEM if (to->GetNewPetSystem()) { if (to->GetNewPetSystem()->GetLevel() < 120) { if (to->GetNewPetSystem()->IsActivePet() && to->GetNewPetSystem()->GetLevelStep() < 4) { int tmpexp = iExp * 9 / 20; iExp = iExp - tmpexp; to->GetNewPetSystem()->SetExp(tmpexp, 0); } } } #endif - [ File: /Src/game/New_PetSystem.cpp ] #1.) Search: else if(type == 3) { if(itemxp->GetType() == 1 || itemxp->GetType() == 2) { SetExp(itemxp->GetShopBuyPrice() / 2, 1); ITEM_MANAGER::instance().RemoveItem(itemxp); } } #2.) Replace with: else if(type == 3) { if (GetLevel() < 120) { if(itemxp->GetType() == 1 || itemxp->GetType() == 2) { SetExp(itemxp->GetShopBuyPrice() / 2, 1); ITEM_MANAGER::instance().RemoveItem(itemxp); } } else { m_pkOwner->ChatPacket(CHAT_TYPE_INFO, "Your pet has a maximum level."); } }
  17. Very fast loading . I do not know you but you are good. =))
  18. With check_name function you can't use space in title and lenght must be less than 12 characters ...
×
×
  • 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.