Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/22/20 in all areas

  1. Basically what @hachiwari said. Also, if you got Lycan this is still wrong. char_battle.cpp: if (pAttacker->IsMonster() && pAttacker->IsDeathBlower() && pAttacker->IsDeathBlow()) { if (number(JOB_WARRIOR, JOB_MAX_NUM - 1) == GetJob()) { IsDeathBlow = true; dam *= 4; } } length.h: enum EJobs { JOB_WARRIOR, JOB_ASSASSIN, JOB_SURA, JOB_SHAMAN, #ifdef ENABLE_WOLFMAN_CHARACTER JOB_WOLFMAN, #endif JOB_MAX_NUM }; There you go.
    2 points
  2. M2 Download Center Download Here ( Internal )
    1 point
  3. M2 Download Center Download Here ( Internal ) Download Virustotal
    1 point
  4. M2 Download Center Download Here ( Internal ) Hi all, Since I'm too busy nowadays, I decided to release all of my old works that I got scammed with. Due to lack of time, my services are suspended for more than 6 months now. Hope that I can help newbies to learn some new techniques. Tbh, I was a newbie too when I made these, but I learned a lot while I was working on them. You have all rights to use all of them, just please leave my name in the footer. Langara2 webdesign (coded with metin2cms, I don't recommend to use it since as I remember this version have some exploits) Have fun with them, font are included.
    1 point
  5. If someone has the same issues as me with elements sometimes being shown wrong replace this part of function in char.cpp: for (int i = RACE_FLAG_ATT_ELEC; i <= RACE_FLAG_ATT_DARK; i *= 2) { int diff = raceFlag - i; if (abs(diff) <= 1024) break; } to this: for (int i = RACE_FLAG_ATT_ELEC; i <= RACE_FLAG_ATT_DARK; i *= 2) { curElementBase++; if (raceFlag & i) break; }
    1 point
  6. char_battle.cpp search: pAttacker->IsDeathBlower() underneath is: if (number(1, 4) == GetJob()) change number(1, 4) to: number(JOB_WARRIOR, JOB_MAX_NUM - 1) (GetJob() can return value from 0-3 (JOB_WARRIOR - JOB_SHAMAN) so Ymir thanks for that ) And done. All characters will be have this same chances for DeathBlow.
    1 point
  7. Greetings RPG Community; As you know, in 2014 we have officially finalized the right of acting over most of you MagicToMaster Online MMORPG project. I have recently decided to open the project as a manager because of the negative factors that have been developed by some people. Why are we opening this up here? We are looking for team members who will work voluntarily for our developing project. Which team is searching for a team in MagicToMaster? C ++ / C # / Java / HeroScript has a problem-solving intelligence that reads and understands the field of programming. At least masters the English language. Will be able to comprehend Hero Game Engine with a short review. Solve / edit and write functions. Having knowledge and experience about graphics / particle effects. So what is this MagicToMaster? A new MMORPG Metin 2 project, combined with a new game engine (HeroEngine) and a very professional team with Java and C + programming language. Work conditions; • Corporate identity will be given. • Work according to B.G.Y.S (Information Security Management System) Protocol. • B.G.Y.S Acceptance / Contracting contract will be made. • Service provider for access to the engine, Laniatus Game Hungary Zrt. E-mail of the company will be used. • The ISO27001 Protocol will be followed and accepted & committed. Visual assistance / information and clue about the project; https://www.facebook.com/typhon.f Pre-vision and informative visual about the game; In my personal social media account, you can keep track of my shares and submit your comments and suggestions. You can write a custom message / comment for the application. Or E-Mail; [email protected] Good work..
    1 point
  8. Hello, Whenever i logged in on my test-server i wanted to be more like X-Men movies (Welcome Professor!!! famous quote), so i wanted to create a human friendly environment, of course you can modify this to your needs, but this is my script that i want to share with you. Final result will be this: What does it do: Only after you successfully login in FreeBSD it will: Clear console so it will be clean and shiny! Print a welcome message. Print weather automatically parsed from your location (you need to set your location, i will show you how, it is very easy). Change directory (cd) to your desirable location (in my case i wanted to change directory in my start.sh location so i don't have to make the same command every time i login.). Of course you can do whatever else you want it to do. How to make this happen: Login press the following command ee ~/.login Notice that this command is not guaranteed to work on every FreeBSD version but should work on most cases Append the following commands: cd /usr/home/game #Where the change directory should go clear #Clear console after login echo "Welcome $USER!" #Welcome message ($USER variable is the current user logged in) curl -s [Hidden Content] | head -7 | tail -5 #This is the weather info, change "thessaloniki" with the city of your choice. Now press ctrl + C and "exit" (Without quotes, this will save the above information and exit to command line.). Now reboot or logout and login again and see the difference, much cleaner, isn't it?
    1 point
  9. Original download link: mega.co.nz/#!k80WnRwY!ZSNsFyOmVZJSAETBKy58gw_IUxSOVxCqCOxoOoU4EgM
    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.