Jump to content

Toki.San

Contributor
  • Posts

    59
  • Joined

  • Last visited

  • Days Won

    11
  • Feedback

    0%

Toki.San last won the day on January 9

Toki.San had the most liked content!

4 Followers

About Toki.San

  • Birthday 05/15/1996

Informations

  • Gender
    Male
  • Country
    Italy
  • Nationality
    Italian

Recent Profile Visitors

3982 profile views

Toki.San's Achievements

Experienced

Experienced (11/16)

  • Reacting Well
  • Very Popular Rare
  • Dedicated
  • First Post
  • Collaborator Rare

Recent Badges

2.5k

Reputation

  1. The problem is that you are treating the costume and the hair as one piece when instead you should treat them separately and forget about AI, what it proposes is wrong from every point of view.
  2. Download Alternative download links → Mega.nz This fix properly updates the effect positions calculated during movement. This bug occurs because, while an effect is being updated, m_worldMatrix has not yet been updated with the character’s new position (it still contains the old position). Before: After:
  3. It's surely a very intersting system. It's sad the fact that you are forced to share your work for free because of resellers. Hard work should always be recognized and rewarded, but this community, more often than not, doesn't care about that.
  4. The ReadQuestCategoryFile function operates by reading each line of the questcategory.txt file using the getline function. This function reads each line by recognizing a specific end-of-line character (\n). Then split each line by the '\t' character: the first part represents the quest type, and the second part represents the quest name. This allows us to compare the quest name found in the file with the name retrieved by the quest index. However, if the file is edited with certain text editors (like Notepad++ or in general in Windows environment), the newline character might be '\r\n' instead of '\n', resulting in lines like: quest_name = collect_quest_lv50 name = collect_quest_lv50\r With the extra '\r' character, the comparison between name and quest_name will fail, and the quest index is always 0 (main quest). To resolve this, you need to remove the '\r' character as well: int type = stoi(line.substr(0, line.find('\t'))); string name = line.substr(line.find('\t') + 1); //Add this if (!name.empty() && name.back() == '\r') { name.pop_back(); } This should ensure that the "\r" character is properly removed, allowing the comparison to succeed.
  5. Paylaşım için teşekkürler
  6. Download Alternative download links → Mega As you know, several new features have been included among the latest updates, one of these concern the Serpens set. The peculiarity of this set is that, in addition to having the 3 new random bonuses that can come out, the attack and the magic attack assume minimum and maximum values that fall within a range defined in the protos, in new columns. As you can see, in addition to other columns that have been added over the years, these 6 new columns identified new sockets in which, through particular conversions, attack and magic attack values (minimum and maximum) are returned for weapons and armor defense. The first two columns identify the minimum (first column) and maximum (second column) magic attack value, followed by the minimum (third column) and maximum (fourth column) attack. Column five and six remain a mystery at the moment. Through appropriate rules, the value inserted in the columns, if present, is converted into a number, to then become attack/magic attack of the weapon or defense of the armour. The attachment shown above refers to the Serpent Blade, a sword usable only by the suras that has attack and magical attack. As you can see here the minimum values that a weapon can have are in yellow and the maximum attacks in orange. The minimum and maximum values are separated by a hyphen. Below you will find the preview of the system. [Hidden Content]
  7. Did you buy this system? We no offer support for leaked products
  8. If you bought server files from Owsap, ask him directly or in his discord channel. If you are using leaked files, you should know that metin2dev does not give assistance for leaked files.
  9. Update: Since there are a lot of people that use the drag bar version, I decided to make a specific version of it. This version use dds, it is a different version than that of @ Distraught
  10. Download Github(link) This is a small adjustment for the minimap when we using the Field of View. In fact, in the normal system, the FoV of the minimap remains unchanged. Normal: Large: Update: Since there are a lot of people that use the drag bar version, I decided to make a specific version of it. Video
  11. M2 Download Center Download Here ( GitHub ) Download Here ( Internal ) There is already a similar system on metin2dev, (here) but it was a bit inconvenient, since you had to change every setting.txt. This new version is no longer needed. -If the map has no WaterType then set the normal water texture. -If the map has the WaterType then look for the folder called "water_x" where x means the type entered in the watertype. -It is possible to use watertype 0. Negative values are not allowed. -255 water textures(not frame) can be inserted.
      • 274
      • Metin2 Dev
      • Love
      • Love
      • Good
      • Dislove
      • Scream
      • Confused
      • Lmao
      • Think
      • Sad
      • Cry
      • Angry
  12. Paylaştığın için teşekkürler
  13. Well you need to dump the item_proto from db and set the result on pack/locale inside your client. If you make some change on source you should tell us what kind of change are or, alternatively, tell us what type of system or modify you add.
  14. You need to set specular on item_proto. It's between socket5 and socket_pct
  15. Because it's not worth all this money. I did it in a short time and I can say that it is worth much less.
×
×
  • 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.