Jump to content

Mali

Honorable Member
  • Posts

    918
  • Joined

  • Days Won

    876
  • Feedback

    100%

Everything posted by Mali

  1. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) I saw this feature when playing PUBG
  2. M2 Download Center Download Here ( Internal ) Download Here ( GitHub )
  3. I haven't tested topic but if you have problem you can use py: def TestStoreAffect(self): if self.affectShower.CheckAffect(chr.NEW_AFFECT_AUTO_HP_RECOVERY): chat.AppendChat(chat.CHAT_TYPE_INFO, "activated") else: chat.AppendChat(chat.CHAT_TYPE_INFO, "deactivated")
  4. You need initialize main.cpp find: LogManager log_manager; add: CEventsManager EventsManager; CAutoNotice AutoNoticeManager; find: MessengerManager::instance().Initialize(); add: EventsManager.Initialize(); find: OXEvent_manager.Destroy(); add: EventsManager.Destroy(); service.h: #define ENABLE_AUTO_NOTICE #define ENABLE_AUTO_EVENTS
  5. Bug: Find in Client/UserInterface/PythonPlayerInputMouse.cpp: if (pkInstMain->NEW_GetDistanceFromDestPixelPosition(kPPosPickedItem)<20.0f) Change: float distance = 20.0f; if (pkInstMain->IsMountingHorse() || pkInstMain->IsNewMount()) distance = 110.0f; if (pkInstMain->NEW_GetDistanceFromDestPixelPosition(kPPosPickedItem) < distance)
  6. Thanks for you message. Just delete player.player from deleter map that's all
  7. M2 Download Center Download Here ( Internal ) Download Here ( GitHub )
  8. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) It's removing (logs, characters, items, etc.) of banned accounts. /clean
  9. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) Usage: Result:
  10. #Update: *DevIL-1.8.0 *lzo-2.10 For manual: [Hidden Content]
  11. Why don't you add new Python-3.8? -Because you need to change too many things in source. ex.[Hidden Content] etc. If you really want to see, here: Python-3.8.0
  12. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) Prepared src packages: *Granny 2.11.8 *libjpeg-9a *Python-2.7 *Crypto++ 8.4.0 *DevIL-1.6.5 *lzo-2.10 Archive password: black
  13. Thanks! For py usage: PythonPlayer.cpp: PythonPlayer.h: PythonPlayerModule.cpp: Example: def TestDSFull(self): for i in xrange(player.DRAGON_SOUL_EQUIPMENT_PAGE_COUNT): if player.IsDSPageFull(i): chat.AppendChat(chat.CHAT_TYPE_INFO, "Page Full: %d" % i) else: chat.AppendChat(chat.CHAT_TYPE_INFO, "Page Not Full: %d" % i)
  14. Thank you? I've added mute functions. like i said, this is just the c ++ side. Many things can be done with the python side. An example is here for to one player:
  15. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) Petit exemple. Juste une partie c ++:
  16. #I've added code for who don't like boost library. music:[Hidden Content] sample:[Hidden Content]
  17. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) Bug:
  18. So true. This codes cannot be copy paste because nobody can write like this shit codes expect you
  19. 190 euro for this shit xd And he was saying to me you are copy paster
  20. Think about like game src LPEVENT. For better understanding. I have add examples. Example "You are active x minute in this map" message: Result:
  21. M2 Download Center Download Here ( Internal ) Download Here ( GitHub ) An event handler without thread and sleep for client source. You can add many things etc. Example: EventHandler::Instance().AddEvent("exampletest",[]() { IAbstractChat::GetSingleton().AppendChat(CHAT_TYPE_INFO, "Test Message"); }, 5, 10 ); // ten time, delay 5 sec.
×
×
  • 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.