Am sa va prezint un tutorial scurt prin care va voi arata cum puteti adauga prieteni in timp ce purtati o conversatie in soapta, va arata cam asa:

Instalare:
Decriptam root.epk/eix mergem in uiwhisper.py si cautam urmatoarea linie:

Code:
def OpenWithoutTarget(self, targetName):

Sub aceasta adaugam:

Code:
   self.friendButton.SetPosition(119, 10)
         self.friendButton.SetUpVisual("d:/ymir work/ui/game/windows/messenger_add_friend_01.sub")
         self.friendButton.SetOverVisual("d:/ymir work/ui/game/windows/messenger_add_friend_02.sub")
         self.friendButton.SetDownVisual("d:/ymir work/ui/game/windows/messenger_add_friend_03.sub")
         self.friendButton.SetText("")
         self.friendButton.SetEvent(ui.__mem_func__(self.AddFrind))
         self.friendButton.Show()

   def AddFrind(self):
        net.SendMessengerAddByNamePacket(self.targetName)
        self.friendButton.Hide()