Jump to content

estrella2

Inactive Member
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    0%

About estrella2

Informations

  • Gender
    Female

Recent Profile Visitors

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

estrella2's Achievements

Collaborator

Collaborator (7/16)

  • Conversation Starter
  • Reacting Well
  • Dedicated
  • First Post
  • Week One Done

Recent Badges

6

Reputation

  1. Use this : #include <vector> #include <cmath> int get_Mob_RaceFlag_Value(std::string inputString) { #ifdef ENABLE_NUMERIC_FIELD if (_IsNumericString(inputString)) return std::stoi(inputString); #endif std::vector<std::string> arRaceFlag = {"ANIMAL","UNDEAD","DEVIL","HUMAN","ORC","MILGYO","INSECT","FIRE","ICE","DESERT","TREE", "ATT_ELEC","ATT_FIRE","ATT_ICE","ATT_WIND","ATT_EARTH","ATT_DARK", "METIN", "BOSS", "DUNG"}; int retValue = 0; std::vector<std::string> arInputString = StringSplit(inputString, ","); for (size_t i = 0; i < arRaceFlag.size(); i++) { std::string tempString = arRaceFlag[i]; for (const auto& tempString2 : arInputString) { if (tempString2 == tempString) { retValue += (1 << i); } } } return retValue; }
  2. This Python program is designed to locate and remove duplicate files among files with identical names within a specified root directory and its subdirectories. It is particularly useful for folders containing a large number of files, where duplicates may unnecessarily occupy storage space. How It Works: Collecting Files: The program first traverses the specified root directory and its subdirectories. It filters specific subdirectories where potentially duplicated files are expected. Identifying Duplicates: For each filename, it creates a list containing all instances, including their full paths and modification dates. Keeping the Latest Version: It retains only the most recent version of files with the same name. To achieve this, the program sorts the list of files by modification date and keeps only the first (most recent) item. Deleting Redundant Files: It deletes all other instances of files with identical names from the respective subdirectories. During deletion, the program handles errors and notifies if any issues occur while deleting files. Creating a Deletion Log: The program logs the paths of deleted files into a log file. Additionally, it logs the total size of deleted files in megabytes. Feedback: Upon completion, the program informs the user where to find the log files containing lists of deleted files and the amount of disk space freed up.
  3. I've brought you some files for optimizing your client. The first file examines whether there are any entities in the mob_proto that are missing from the npclist.txt. These entities might remain unseen in your client, making them invisible to you. The second file is designed to purge the missing entries from the mob_proto. This step will help clean up and enhance the efficiency of your client. The third program's purpose is to inspect the unpacked version of your client and identify any NPCs or creatures that are not listed in your npclist. You have the option to manually remove these entities and then repackage your client. By implementing these optimizations, you can effectively rid your client of unnecessary elements. These entities won't burden your client's memory during startup, potentially resulting in significant RAM savings. Missing_ids.py mob_proto_delete.py show_folders_need_to_delete.py show_missing_ids.py
  4. U can change in the client, uiquest.py
  5. Hi! Its use item_proto.txt not SQL in navicat. Look the item_proto.txt in (Maybe CONF folder, or DB folder) in your FTP.
  6. What was the solution? I have the same bug.
×
×
  • 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.