Jump to content
Metin2 Network
Create New...

Leaderboard

Popular Content

Showing content with the highest reputation on 10/21/2024 in all areas

  1. Check if you have this, if not, add this system [Hidden Content] this system is generally available in martysama files. Open: imput_main.cpp #Add #include "../../common/PulseManager.h" //pulse manager sayesinde anticheat #In imput_main.cpp search int CInputMain::Analyze(LPDESC d, BYTE bHeader, const char * c_pData) { LPCHARACTER ch; if (!(ch = d->GetCharacter())) { sys_err("no character on desc"); d->SetPhase(PHASE_CLOSE); return (0); } int iExtraLen = 0; #Add under if (bHeader == HEADER_CG_CHARACTER_MOVE) { if (ch && !PulseManager::Instance().IncreaseCount(ch->GetPlayerID(), ePulse::GuildComment, std::chrono::milliseconds(500), !POINT_MOV_SPEED)) { // ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Please stop anti-hack thank.1111111111111")); // ch->Move(pinfo->lX, pinfo->lY); ch->UpdatePacket();//anlik guncelleme // ch->UpdateSectree(); // ch->Update(); // ch->ComputePoints(); // ch->GetDesc()->DelayedDisconnect (7); return (iExtraLen); } } if (bHeader == HEADER_CG_ATTACK) { if (ch && !PulseManager::Instance().IncreaseCount(ch->GetPlayerID(), ePulse::CommandRequest, std::chrono::milliseconds(500), !POINT_ATT_SPEED)) { // ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Please stop anti-hack thank.1111111111111")); // ch->Move(pinfo->lX, pinfo->lY); ch->UpdatePacket();//anlik guncelleme // ch->UpdateSectree(); // ch->Update(); // ch->ComputePoints(); // ch->GetDesc()->DelayedDisconnect (7); return (iExtraLen); } } #In this documents packet.h packet_info.cpp input_main.cpp input_login.cpp #Change HEADER_CG_MOVE #With HEADER_CG_CHARACTER_MOVE if you get an error, change it like this while building char.cpp input_main.cpp packet.h HEADER_GC_MOVE Change with HEADER_GC_CHARACTER_MOVE
    2 points
  2. Hello, i've got some files for sell; Kimetsu2.com -> all the latest files with an repository [Hidden Content] Aeldra - all the files before it went down in 2022 with an gameplay and latest changes Nexus2international [Hidden Content] dc; dinar08217
    1 point
  3. A bot for people who can program [Detects automatically after photo]. Example usage: marian2.mp4.5698fd6a2b03671f42473252826498fa.mp4.bfd359ddd9df97ac9d8cd2db4e930162.mp4 metin2-opencv-bot-main.zip
    1 point
  4. 1 point
  5. pkg install -y boost-all devil cryptopp openssl googletest gcc llvm gmake makedepend python python2 python27 mysql80-server gdb compat8x-amd64 Download: [Hidden Content]
    1 point
  6. import os import shutil source_folder = '/txt/src' target_folder = '/txt/src2' if not os.path.exists(target_folder): os.makedirs(target_folder) ifdef = '#ifdef ' ifndef = '#ifndef ' define = 'ENABLE_SWITCHBOT' def process_files(source_folder, target_folder): for entry in os.scandir(source_folder): if entry.is_file() and entry.name.endswith(('.cpp', '.h')): with open(entry.path, 'r', encoding='latin1') as file: new_file = None copy = False lines = file.readlines() line_num = 0 for line in lines: if ifdef + define in line or ifndef + define in line: copy = True if not new_file: new_file = open(os.path.join(target_folder, entry.name), 'w', encoding='latin1') for i in range(max(0, line_num - 30), line_num): new_file.write(lines[i]) if copy: new_file.write(line) if '#endif' in line: if copy: new_file.write("\n // =================== INNA FUNKCJA ================= \n \n") new_file.write("// ====== WYSZUKAJ: ") new_file.write(define) new_file.write("\n// Tutorial wygenerowany automatycznie przez Grzyb.ovh \n") new_file.write("\n \n") copy = False line_num += 1 if new_file: new_file.close() elif entry.is_dir(): new_target_folder = os.path.join(target_folder, entry.name) if not os.path.exists(new_target_folder): os.makedirs(new_target_folder) process_files(entry.path, new_target_folder) process_files(source_folder, target_folder)
    1 point
  7. Download: [Hidden Content]
    1 point
  8. root/uichat.py: Search: def __SendChatPacket(self, text, type): Add: if len(text) >= 5 and text[0:4] == "/msg": args = text[5:].split(" ") if len(args) != 3: chat.AppendChat(1, "usage: /msg <player> <message>") return target = args[0].strip() message = " ".join(args[1:]).strip() if target != "" and message != "": net.SendWhisperPacket(target, message) else: chat.AppendChat(1, "usage: /msg <player> <message>") return
    1 point
  9. Download: [Hidden Content] Required bsd: [Hidden Content] Rar password: kaptanyosun extern for friends who get lib error /home directory and build the server. [Hidden Content] // costume_weapon system added. // quests replaced with martysama quests. // syseer dropping due to skilldesc has been fixed. // syseer was dropping due to missing items in the data file, the missing items have been fixed. // client png support has been added. // login interface has been changed. // Official-Additional-Equipment-Page-main has been added. // v24 item proto update has been made. //-----------------------------------------------------------------------------------// 01/08/2024 // 4 inventory systems have been added. // Official character interface has been added. (screen opened with the c key) //-----------------------------------------------------------------------------------// 03/08/2024 // costume_mount has been added. // All mounts from Official TR have been added. -------------------------------------------------------------------------------------// 05/08/2024 // costume_acce system has been removed from marty files and added. // all official generations have been added. // costume screen has been changed, aura infrastructure has been prepared. // added strength enchantment against texts. // added strong enchantment against bosses. //----------------------------------------------------------------------------------// 08/08/2024 // aura system removed from martysama. // acce and aura system's locale_strings adapted to files. // official character selection screen added. // skill proto issue fixed. //----------------------------------------------------------------------------------------------// 09/08/2024 // dracarys system options system added. // enviroment system added added. // Wide View Angle system added. // shadow setting added to game options. // hd shadow quality added. // effect accumulation fixed when client is minimized. // textures of 1st and 2nd villages changed. //----------------------------------------------------------------------------------------------// 10/08/2024 // __BL_CLIP_MASK__ -- A system was added that prevents text, buttons and images from extending outside the window in scrolling windows. // __BL_MOUSE_WHEEL_TOP_WINDOW__ -- Added a system that keeps scrolling using the mouse wheel on the last clicked window. // __BL_SMOOTH_SCROLL__ -- Added a system that allows the scroll bar to move smoothly. // __BL__DETAILS_UI__ -- Character details system added. // ENABLE_QUEST_RENEWAL -- Quest Page Renewal added. //--------------------------------------------------------------------------------------------// 11/08/2024 // ENABLE_CPP_PSM // fast loading added. // ENABLE_Storing_Affects // A system that allows you to control every effect on the character. // __BL_MOVE_CHANNEL__ // fast channel change system added. // WJ_NEW_DROP_DIALOG // wipe-sell system added. // ENABLE_ITEM_DELETE_SYSTEM // Bulk Delete-Sell module added. //--------------------------------------------------------------------------------------------// 15/08/2024 // (__BL_OFFICIAL_LOOT_FILTER__) // Enable Premium Usage of the Loot Filter System //--------------------------------------------------------------------------------------------// 17/08/2024 // ENABLE_SHOW_CHEST_DROP // Chest mirror system. // ENABLE_LARGE_DYNAMIC_PACKET // Large dynamic packet Utility. // Python-based auto collection system added. (Nonsense, I need a more proper auto collection, of course it will work compatible with loot filter.) // The problem with dragging and changing items from the inventory with the mouse has been fixed. // Loot filter has been added to game options. // Sequence has been completely removed. //------------------------------------------------------------------------------------------------// 24/08/2024 // official yohara system added // official 9th skills added //------------------------------------------------------------------------------------------------// 26/08/2024 // yohara debuf effects and exp problem solved // 9th skill deficiencies fixed, made psm compatible. // Emoji in TextLine added. // ctrl right x10 status giving added. //--------------------------------------------------------------------------------------------// 27/08/2024 // apply_mount reviewed, problems fixed. // infrastructure prepared for glove glove system gloves to glove converted client-server. // proto reader enchantment sorted checked again length.h char.h constad.cpp client packet.h all edited one by one and numbered. -------------------------------------------------------------------------------------// 31/08/2024 // apply_mount removed // all apply and point rows were compared and numbered on the client and game sides. // apply_random was added. // unused 3-4-5 count tables in the mysql item table were deleted. -------------------------------------------------------------------------------------// 02/09/2024 // __PENDANT_SYSTEM__ // official talisman system was added // __GLOVE_SYSTEM__ // official glove system was added // __ELEMENT_SYSTEM__ // official bonuses that came with 17.5 were added. // item_attr was corrected for talismans and gloves, set in completely official style. -------------------------------------------------------------------------------------// 03/09/2024 // official 6-7 enchantment adding system was added // locale_string adaptations were made. It was translated into Turkish. // missing locale_strings related to the acce system were added. // necessary arrangements were made to add 6-7 enchantments to gloves and talismans // problems in the chest mirror system were fixed, right click tooltip was added. // Teleportation quest has been edited. --------------------------------------------------------------------------------------------------// 04/09/2024 // WJ_ENABLE_TRADABLE_ICON added (effect of unsold, untradeable item) // __BL_ENABLE_PICKUP_ITEM_EFFECT__ system added (effect of new item added to inventory) // WJ_ENABLE_TRADABLE_ICON and __BL_ENABLE_PICKUP_ITEM_EFFECT__ systems adapted to aura, belt, clipmask and 6-7 enchantment systems // apply_random system adapted to aura system (only absorption adaptation was not made. I think it would be ridiculous to absorb bonuses that come with random into aura or belt.) --------------------------------------------------------------------------------------------------// 05/09/2024 // VIEW_TARGET_PLAYER_HP // Player HP Bar on TargetBoard * Author: N/A * // VIEW_TARGET_DECIMAL_HP // Monster HP Bar on TargetBoard * Author: N/A * // Fixed db syseri related to aura magic_pct. --------------------------------------------------------------------------------------------------// 07/09/2024 // ENABLE_DS_GRADE_MYTH // mitsi alchemy update // ENABLE_DS_SET // alchemy set bonus system // ENABLE_DSS_ACTIVE_EFFECT_BUTTON // active add-on for alchemy button in inventory while alchemy is open // ENABLE_DS_CHANGE_ATTR // added alchemy enchantment change system // Added an effect to appear in the alchemy window when alchemy is open // Belt bonus cleaning item problems have been resolved. // locale string adaptations of systems have been made and translated into Turkish --------------------------------------------------------------------------------------------------// 08/09/2024 // ENABLE_EXTENDED_DS_INVENTORY // alchemy inventory expansion plugin 3 inventory right now only 1. If you want to use it open (char_item.cpp WORD wBaseCell = ((192 + 32) * 0) + (ds_type * 32); ) edit // ENABLE_DRAGONSOUL_INVENTORY_BOX_SIZE // system that separates the alchemy inventory into sections and adds obstacles according to the fill rate when opening chests // ENABLE_REFINE_RENEWAL // addon that keeps the screen open for plus pressing screen // ENABLE_ELEMENTAL_TARGET // system that makes elements appear on TargetBoard (will be adjusted according to mob proto system) // WJ_SHOW_MOB_INFO // mob information system // ENABLE_SHOW_MOBAIFLAG // mob aggression feature on off // ENABLE_SHOW_MOBLEVEL // mob level feature on off // chest_drop system added occupancy query when opening cordraconis. When the inventory is full, it stops opening and items do not drop on the ground. // plus press screen added how many of the desired item are there system ------------------------------------------------------------------------------------- 12/09/2024 // __HIDE_COSTUME_SYSTEM__ // Costume Hide and Show added // ENABLE_FIX_MOBS_LAG // mob lag fix added // pet quest added a few pet quests have been added for now, but it would be nice if it was ported to C++, it will be researched.. // costume hide system has been adapted to weapon and acce ------------------------------------------------------------------------------------- 13/09/2024 // ENABLE_PET_SUMMON_AFTER_LOGIN // game entry pet control // ENABLE_PROTO_RENEWAL // levelless pet system c++ transportation quest deleted. // __COSTUME_ATTR_SYSTEM__ // official costume enchantment system added // ITEM_ANTIFLAG_TOOLTIP // item antiflag tooltip system added // ENABLE_7AND8TH_SKILLS // Official 7-8 Skill System added ------------------------------------------------------------------------------------- 20/09/2024 // ship_defese hydra dungeon added // hydra locale_string adapted // adapted for game and mysql frebsd work
    1 point
×
×
  • Create New...

Important Information

Terms of Service

Write what you are looking for and press enter or click the search icon to begin your search