Advertisement
Guest User

Client side GSystem 26.12.2014

a guest
Dec 26th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. # (C) 2014 Zetsu  #
  2. # For metin2dev.ORG #
  3. # you have to add these functions at the end of game.py:
  4.  
  5.     def ZetsuGiftSystem__show__(self):
  6.         self.GiftBox.Show()
  7.     def ZetsuGiftSystem__hide__(self):
  8.         self.GiftBox.Hide()
  9. # remember that last line of Game.py MUST BE EMPTY !!!!!!!!!!!!!!
  10.  
  11. #Search:
  12. def __ServerCommand_Build(self):
  13.     serverCommandList={
  14.  
  15. # add in case you hadn't it:
  16.         "giftsysshow" : self.ZetsuGiftSystem__show__,
  17.         "giftsyshide" : self.ZetsuGiftSystem__hide__,
  18.  
  19. # Now, it should work.(it must @_@ )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement