Jump to content

NXS

Member
  • Posts

    11
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by NXS

  1. The folder is added here. Everything works perfectly in battlepass, so I get those errors. |share/locale/english/battlepass|
  2. Up, same syserr: SYSERR: Jul 30 14:48:42 :: ReadNormalBattlePassMissions: battle_pass.txt : battlepass_normal SYSERR: Jul 30 14:48:42 :: ReadPremiumBattlePassMissions: battle_pass.txt : battlepass_premium SYSERR: Jul 30 14:48:42 :: ReadEventBattlePassMissions: battle_pass.txt : battlepass_event
  3. **Sometimes when I enter in the game the name is displayed ok and sometimes it's displayed too low.** Same
  4. 2024 UPPPPPP!!
  5. 0625 18:04:19009 :: Unknown packet header: 84, last: 3 3
  6. Yes! in CHAR.CPP /source/game/ In: bool CHARACTER::CanMove() const change: if (get_dword_time() - m_fSyncTime < 50) return false; to: // if (get_dword_time() - m_fSyncTime < 50) // return false; In bool CHARACTER::SetSyncOwner(LPCHARACTER ch, bool bRemoveFromList) change: m_fSyncTime = get_dword_time(); to m_fSyncTime = get_float_time(); In: bool CHARACTER::IsSyncOwner(LPCHARACTER ch) const change if (get_dword_time() - m_fSyncTime >= 100) return true; to if (get_float_time() - m_fSyncTime >= 3.0f) return true; In: void CHARACTER::Initialize() change m_fSyncTime = get_dword_time(); to m_fSyncTime = get_float_time() - 3;
  7. You solved? I also had this problem, and it was from the source to the client. (binary) But I don't know how I solved the problem...
  8. SOLVING In the file: root/uitarget.py search for: def SetEnemyVID(self, vid): self.SetTargetVID(vid) Here you will find: if app.ENABLE_SEND_TARGET_INFO: (textWidth, textHeight) = self.name.GetTextSize() Replace with this: if app.ENABLE_SEND_TARGET_INFO: if vnum >= 101: (textWidth, textHeight) = self.name.GetTextSize()
  9. PythonPlayerSettingsModule.cpp #ifdef ENABLE_CUSTOM_TAG_EFFECTS {pkBase.EFFECT_AFFECT + CInstanceBase::AFFECT_GA, "Bip01", "d:/ymir work/effect/team_ranks/ga.mse"}, {pkBase.EFFECT_AFFECT + CInstanceBase::AFFECT_GM, "Bip01", "d:/ymir work/effect/team_ranks/gm.mse"}, {pkBase.EFFECT_AFFECT + CInstanceBase::AFFECT_SA, "Bip01", "d:/ymir work/effect/team_ranks/sa.mse"}, #endif How can I change it to work on the client? in the file playersettingmodule.py??
×
×
  • 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.