Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/16/19 in all areas

  1. M2 Download Center Download Here ( Internal ) Download: [Hidden Content] VirusTotal: [Hidden Content]
    3 points
  2. M2 Download Center Download Here ( Internal ) File Name: Oblivion trees & shrubs File Submitter: Hirabi File Submitted: 03 Feb 2014 File Category: 3d Models 79 trees and 30 shrubs from the game The Elder Scrolls: Oblivion, converted to the Speedtree 3 format used by Metin2. Property files included.
    1 point
  3. Consinfo.py add def GetInjectText(text): characters = ["SELECT","TRUNCATE","INSERT","REPLACE","DELETE",'/', '>', '<', '|', ';', ':', '}', '{', '[', ']', '%', '#', '@', '^','&'] succes = False for j in xrange(len(characters)): if text.find(characters[j]) != -1: succes = True break return succes use def __SendShoutChatPacket(self, text): if constInfo.GetInjectText(text): chat.AppendChat(chat.CHAT_TYPE_INFO, " SQL INJECT") return quote from turkish forum
    1 point
  4. Some stuff to clean your db: TRUNCATE TABLE account.account; TRUNCATE TABLE common.gmlist; TRUNCATE TABLE log.attr_transfer; TRUNCATE TABLE log.bootlog; TRUNCATE TABLE log.change_name; TRUNCATE TABLE log.command_log; TRUNCATE TABLE log.cube; TRUNCATE TABLE log.dragon_slay_log; TRUNCATE TABLE log.dragonlair_dungeon; TRUNCATE TABLE log.exo_bank_log; TRUNCATE TABLE log.fish_log; TRUNCATE TABLE log.gmhost; TRUNCATE TABLE log.gmlist; TRUNCATE TABLE log.goldlog; TRUNCATE TABLE log.hack_crc_log; TRUNCATE TABLE log.hack_log; TRUNCATE TABLE log.ingame_ban_log; TRUNCATE TABLE log.levellog; TRUNCATE TABLE log.locale; TRUNCATE TABLE log.locale_bug; TRUNCATE TABLE log.log; TRUNCATE TABLE log.loginlog; TRUNCATE TABLE log.loginlog2; TRUNCATE TABLE log.meley_dungeon; TRUNCATE TABLE log.money_log; TRUNCATE TABLE log.okay_event; TRUNCATE TABLE log.pcbang_loginlog; TRUNCATE TABLE log.quest_reward_log; TRUNCATE TABLE log.refinelog; TRUNCATE TABLE log.sash; TRUNCATE TABLE log.shout_log; TRUNCATE TABLE log.speed_hack; TRUNCATE TABLE log.voucher_log; TRUNCATE TABLE log.whisper_log; TRUNCATE TABLE player.affect; TRUNCATE TABLE player.guild; TRUNCATE TABLE player.guild_comment; TRUNCATE TABLE player.guild_grade; TRUNCATE TABLE player.guild_member; TRUNCATE TABLE player.guild_war; TRUNCATE TABLE player.guild_war_bet; TRUNCATE TABLE player.guild_war_reservation; TRUNCATE TABLE player.horse_name; TRUNCATE TABLE player.item; TRUNCATE TABLE player.item_award; TRUNCATE TABLE player.marriage; TRUNCATE TABLE player.messenger_list; TRUNCATE TABLE player.player; TRUNCATE TABLE player.player_deleted; TRUNCATE TABLE player.player_index; TRUNCATE TABLE player.quest; TRUNCATE TABLE player.safebox; Your log tables may differ.
    1 point
  5. I am not 100% sure what is going on there but it seems like a very, very, very small amount of money also when it is calculated as korean wons. 1 KRW is 0.000747Euro but probably I am just dumb af because it makes no sense for company as Webzen is, to pay total operating costs only 8Euro............:D
    1 point
  6. At the normal way you can clean your database manual or with SQL-Statements. If you have to do it often, you can write a script or an application which checks and deletes. For showing the data inside the tables you want to clean just use the SELECT statement. For deleting just rows in a table you can use the DELETE FROM Statement with specyfying what to delete. If you want to clear a whole table you can use the TRUNCATE Statement if you have no foreign keys to other tables. I hope this was what you want to hear. I dont know if there is already some script or application which does this, because normally its not this much work to clean the database manually. Edit: Please make sure you clean the Guild Mark symbols also, that you dont have guild symbols from old guilds of old servers into your new guilds.
    1 point
  7. 1 point
  8. check in source codes of your system.
    1 point
  9. Some epic "Journey" music mix New Armin van Buuren - This is just amazing
    1 point
  10. std::vector<int> fish_map {113,41}; const auto it = std::find(fish_map.begin(), fish_map.end(), GetMapIndex()); if (it == fish_map.end()) return;
    1 point
  11. maybe you can search it as: ChatPacket(CHAT_TYPE_INFO , "ManagerBioSystem ........other things......."); you have to change CHAT_TYPE_INFO with CHAT_TYPE_COMMAND or if you don't need use this system you can easly comment it (using "//" at the begin of the line)
    1 point
  12. 1 point
  13. 1 point
  14. If someone have same problem, check your item proto.
    1 point
  15. Try this In char.cpp find this (ch->m_speed_hack_count > SPEEDHACK_LIMIT_COUNT) replace with this: (ch->m_speed_hack_count > SPEEDHACK_LIMIT_COUNT * 3) Good Luck !
    1 point
×
×
  • 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.