Jump to content

Sonitexx

Members
  • Posts

    24
  • Joined

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sonitexx's Achievements

Newbie

Newbie (1/14)

57

Reputation

  1. Same till I started creating my own dungeons. YMIR used tricks to avoid this issue like using the same music in their dungeon as in the map from where you got teleported(Valkus-Blazing Purgatory) or starting the dungeon from the dungeon itself if that makes sense(Devil Tower/Devil's Catacomb).
  2. Hey community! When you specify which music you want to play in your dungeon map at settings.lua, it is always getting replaced with previous map's one(From which you were teleported to). This is happening because each dungeon has it's own unique map index and game cannot locate it from settings. Here is a simple fix to get original index of that map, it should work as long as you do not have like 3500 dungeon instances of same type, which isn't possible with current Metin2 player count I believe. In char.cpp search for: void CHARACTER::MainCharacterPacket() Replace this variable with the following: const unsigned mapIndex = GetMapIndex(); const unsigned mapIndex = GetMapIndex() < 10000 ? GetMapIndex() : GetMapIndex() / 10000; Greetings, Sonitex
  3. Here is another function that was not in the tutorial: Search in uiToolTip.py def AppendDescription(self, desc, limit, color = FONT_COLOR): if localeInfo.IsEUROPE(): self.__AppendDescription_WesternLanguage(desc, color) else: self.__AppendDescription_EasternLanguage(desc, limit, color) Paste below: def SetThinBoardSize(self, width, height = 12) : self.toolTipWidth = width self.toolTipHeight = height Thanks for the tutorial!
  4. Those serverfiles have been created by Danyel and was not meant to be released. Contains some of my work as well(City designs) so please can someone remove this?
  5. As tierri said the mysql folder is infected. Anyways, the serverfiles run smoothly. They have some nice systems(A lot more than the ones in pictures), which has a high chance of having bugs, if the creator used public releases. I would recommend them to people who know how to deal with bugs(C++/Python), those serverfiles are perfect for them Regards, Sonitex
×
×
  • Create New...