Exemplo n.º 1
0
    def ShowCharacterInfo(self, arg):
        "Show information of character (vid)"
        if arg.isdigit():
            vid = int(arg)
        else:
            vid = 0

        info = chrmgr.GetVIDInfo(vid)
        self.Print(info)
Exemplo n.º 2
0
 def ShowPickedCharacterInfo(self):
     "Show information of picked character"
     vid = chrmgr.GetPickedVID()
     info = chrmgr.GetVIDInfo(vid)
     self.Print(info)