Moinsen,
ich versuche grad die Buffs per klick wegzumachen, aber es lässt sich nicht löschen.
Bei syserr werde ich grad nicht schlauer.
global name 'net' is not defined muss ich jetzt da oben import net eingeben oder was soll ich damit anfangen?
Bitte melden Sie sich an, um diesen Link zu sehen.
0206 15:13:37197 :: Traceback (most recent call last):
0206 15:13:37197 :: File "ui.py", line 1396, in CallEvent
0206 15:13:37197 :: File "uiAffectShower.py", line 364, in <lambda>
0206 15:13:37197 :: File "uiAffectShower.py", line 378, in OnCloseBuffQuestionDialog
0206 15:13:37198 :: NameError
0206 15:13:37198 :: :
0206 15:13:37198 :: global name 'net' is not defined
0206 15:13:37198 ::
Code
- if app.ENABLE_AFFECT_BUFF_REMOVE:
- def OnBuffQuestionDialog(self):
- skillIndex = self.skillIndex
- if not skillIndex or skillIndex == 66:
- return
- self.buffQuestionDialog = uiCommon.QuestionDialog()
- self.buffQuestionDialog.SetWidth(350)
- self.buffQuestionDialog.SetText(localeInfo.BUFF_AFFECT_REMOVE_QUESTION % (skill.GetSkillName(skillIndex)))
- self.buffQuestionDialog.SetAcceptEvent(lambda arg = skillIndex: self.OnCloseBuffQuestionDialog(arg))#364
- self.buffQuestionDialog.SetCancelEvent(lambda arg = 0: self.OnCloseBuffQuestionDialog(arg))
- self.buffQuestionDialog.Open()
- def OnCloseBuffQuestionDialog(self, answer):
- if not self.buffQuestionDialog:
- return
- self.buffQuestionDialog.Close()
- self.buffQuestionDialog = None
- if not answer:
- return
- net.SendChatPacket("/remove_buff %d" % answer)#378
- return TRUE
Ich bin für jeden Dankbar der mir versucht zu helfen.
MfG