Jump to content

tarikboyka

Member
  • Posts

    5
  • Joined

  • Last visited

  • Feedback

    0%

About tarikboyka

Informations

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

tarikboyka's Achievements

Explorer

Explorer (4/16)

  • Dedicated
  • First Post
  • Reacting Well
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Thanks so much im waiting, also i have a bug after relog or teleport affect timer is frozen and not updating and ideas on fix? def OnUpdate(self): try: currentTime = app.GetGlobalTime() if currentTime - self.lastUpdateTime > self.TOOLTIP_UPDATE_INTERVAL: self.lastUpdateTime = currentTime for image in self.affectImageDict.values(): if not image.isToolTipVisible: continue if image.GetAffect() in [chr.NEW_AFFECT_AUTO_HP_RECOVERY, chr.NEW_AFFECT_AUTO_SP_RECOVERY]: image.UpdateAutoPotionDescription() elif image.IsSkillAffect(): image.UpdateSkillDescription() else: image.UpdateDescription() except Exception as e: print "AffectShower::OnUpdate error:", e if app.ENABLE_RENEWAL_AFFECT_SHOWER: def SyncAffectImages(self): for image in self.affectImageDict.values(): image.isToolTipVisible = False image.toolTip.HideToolTip() def __QuestionRemoveAffect(self, arg, affect, name): self.RemoveQuestionDialog = uiCommon.QuestionDialog() self.RemoveQuestionDialog.SetText(localeInfo.AFFECT_REMOVE_QUESTION % name) self.RemoveQuestionDialog.SetAcceptEvent(lambda arg=True: self.AnswerRemoveAffect(arg)) self.RemoveQuestionDialog.SetCancelEvent(lambda arg=False: self.AnswerRemoveAffect(arg)) self.RemoveQuestionDialog.affect = affect self.RemoveQuestionDialog.Open() def AnswerRemoveAffect(self, flag): if not self.RemoveQuestionDialog: return if flag: net.SendChatPacket("/remove_affect %d" % self.RemoveQuestionDialog.affect) self.RemoveQuestionDialog.Close() self.RemoveQuestionDialog = None def UpdateDescription(self): if not self.toolTip: return if not self.description: return self.toolTip.ClearToolTip() self.toolTip.AutoAppendTextLine(self.description, self.BONUS_COLOR) if self.endTime > 0: remaining_time = self.endTime - app.GetGlobalTimeStamp() # If duration is absurdly large (e.g., 2+ years), treat as permanent if remaining_time > 63113904: # 2 years in seconds timeText = "(Permanent)" self.toolTip.AutoAppendTextLine(timeText, self.NORMAL_COLOR) else: leftTime = self.FormatTime(remaining_time) timeText = "(%s : %s)" % (localeInfo.LEFT_TIME, leftTime) self.toolTip.AutoAppendTextLine(timeText, self.NORMAL_COLOR) if self.Canberemoved: self.toolTip.AutoAppendTextLine(localeInfo.AFFECTSHOWER_REMOVE_TEXT, self.NORMAL_COLOR) self.toolTip.AlignHorizonalCenter() self.toolTip.ResizeToolTip()
  2. when i try to remove the buffs its gives syschat "This command does not exist" any fix?
  3. 0216 22:43:17832 :: Traceback (most recent call last): 0216 22:43:17832 :: File "game.py", line 778, in RefreshEquipment 0216 22:43:17832 :: File "interfaceModule.py", line 562, in RefreshInventory 0216 22:43:17832 :: File "uiTaskBar.py", line 804, in RefreshQuickSlot 0216 22:43:17832 :: File "ui.py", line 1387, in SetSlotCoolTime 0216 22:43:17833 :: File "ui.py", line 1237, in EnableSlotTimeInfoText 0216 22:43:17833 :: AttributeError 0216 22:43:17833 :: : 0216 22:43:17833 :: 'module' object has no attribute 'EnableSlotTimeInfoText' 0216 22:43:17833 :: i get this in syserr anyone help me pls??
  4. i get this client syserr 0320 12:45:38318 :: CMapBase::LoadProperty(FileName=zylon_dung_new\MapProperty.txt) - LoadMultipleTextData ERROR ÆÄÀÏÀÌ ¾øÀ» °¡´É¼ºÀÌ ¸¹½À´Ï´Ù. 0320 12:45:38318 :: CMapManager::LoadMap() Invalid Map Type 0320 12:45:38319 :: CPythonBackground::SelectViewDistanceNum(int eNum=0) mc_pcurEnvironmentData is NULL
  5. Anyone knows or can make tutorial on how to add the quest renewal on clean characterwindow.py so i dont have to replace it ?
×
×
  • 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.