Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/09/16 in all areas

  1. The type of costume that some people will be like, but others are not ;p https://www.youtube.com/watch?v=TSxGrqRgEXw
    1 point
  2. Hi Dev`s, I designed this effects for weapons. The doubt is about the code from client binary. The code was posted? I remember one server who had this effects, but I remember too that had a part of code in his source. I also remember that it was published. If there is anything I know, it is necessary to touch the binary to make it work. If they know it's posted let me know please. Srry for my english. Regards. The weapons effects: [Hidden Content] - [Hidden Content]
    1 point
  3. i was studying programing but now i now how to write codes thanks anyway
    1 point
  4. Class Button have arguments to SetText for button, so this is: self.btnHorse = self.GetChild("buttonHorse") self.btnHorse.SetEvent(self.RecvSummon) self.used = 0 def AppendTextLine(self, token): if token == 1: self.btnHorse.SetText("Summon") else: self.btnHorse.SetText("UnSummon") def RecvSummon(self): if self.used == 0: net.SendPacketHorseSummon() self.AppendTextLine(2) self.used = 1 elif self.used == 1: net.SendPacketHorseUnSummon() self.AppendTextLine(1) self.used = 0
    1 point
  5. As you know, Webzen is developing new functions for the new systems. I made the new class of MoveImageBox. Part of C++ is still missing because of the packed binary. I'll try to do something about this as soon as possible I can. Here are a new class and the functions. # This function is only using by Mini Game class MoveImageBox(Window): def __init__(self, layer = "UI"): Window.__init__(self, layer) self.event = None def __del__(self): Window.__del__(self) def RegisterWindow(self, layer): self.hWnd = wndMgr.RegisterMoveImageBox(self, layer) def MoveStart(self): wndMgr.MoveStart(self.hWnd) def MoveStop(self): wndMgr.MoveStop(self.hWnd) def GetMove(self): return wndMgr.GetMove(self.hWnd) def SetMovePosition(self, x, y): wndMgr.SetMovePosition(self.hWnd, x, y) def SetMoveSpeed(self, speed): wndMgr.SetMoveSpeed(self.hWnd, speed) def OnEndMove(self): if (self.event): self.event() def SetEndMoveEvent(self, event): self.event = event // New Functions of Move ImageBox wndMgr.RegisterMoveImageBox(hWnd) wndMgr.MoveStart(hWnd) wndMgr.MoveStop(hWnd) wndMgr.GetMove(hWnd) wndMgr.SetMovePosition(hWnd, x, y) wndMgr.SetMoveSpeed(hWnd, speed) Kind Regards ~ Ken
    1 point
  6. M2 Download Center Download Here ( Internal ) hello people, today I bring many logos in metin. psd, which is good because it can change xD Sorry for my english ! I'm used to the Portuguese... Download: [Hidden Content] [Hidden Content] Credits: Me - Upload mayanpack - logos
    1 point
  7. Open locale_game.txt and replace all +%, with +%. Good luck !
    1 point
×
×
  • 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.