Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Tyler1q1q

  1. T

    WZ Harepacker traces.

    The server is not detecting any 'traces' left behind HaRepacker. They are either providing the files themselves modified with a special header that HaRepacker is not re-creating when you are saving it, or they are checking other things like the hash of the file. There is no way around it...
  2. T

    [v175] Mushy Source

    Assisted swndug in the Discord, turns out he created a new project instead of opening the current project that comes with the Github clone/download. Never create a new project, this will force you to manually add the dependencies to the project, file->open project will let you use the pomf.xml...
  3. T

    [Release] 174.2 Opcodes + IDB

    I generated a FLIRT signature of your 174 and applied it to a fresh IDB of the localhost that was posted for 176.1 and a KMST Sig I had laying around. I haven't really checked it, but there are numerous fields named. You must be registered for see element. Edit: Fixed CField::OnPacket not able...
  4. T

    [v175] Mushy Source

    You have to extract your own WZ Files from WZExplorer or HaRepacker.
  5. T

    RE:Release KrystalLite v175 missing dist

    Re: Release KrystalLite v175 missing dist Use Mushy.
  6. T

    [LEAK] MapleStory Korea Test v.1029 raw EXE w/ debuggables

    ayy. Although it isn't much due to it being KMS, atleast we have directories. Appreciate it
  7. T

    [LEAK] MapleStory Korea Test v.1029 raw EXE w/ debuggables

    Thanks for the insight on that. Would it not be possible to still build the list and silently eat the exception? Having a partial list of 10500 and losing 700 or so strings seems like a better idea then not being any to view any strings!
  8. T

    [LEAK] MapleStory Korea Test v.1029 raw EXE w/ debuggables

    Amazing release per usual, Diamondo. I attempted to gather an enumeration list from STREDIT for this, but it looks like it fails to open it. Would you by chance have a fix for this, or a work around? I attempted to use all three variations of STREDIT without any luck, just to see if they work...
  9. T

    [Help] News System Problem

    It would be great if you could post the error you get.
  10. T

    Checking for Potential State of an Equip

    I'm sorry, I don't quite follow. What are you trying to accomplish that the original script did not do? If you are attempting to make sure all potential lines are of a certain rank, then your idea should be fine. You are able to change a specific line, you would just have to make any change to...
  11. T

    Blocking 3rd party clients??

    I stated client, but I meant launcher. The term is too interchangeable now a days. I had it set up with a custom C# launcher that sent a heartbeat packet to the server every thirty seconds or so. If it failed to send one the connect would be closed, preventing any type of third party software...
  12. T

    Checking for Potential State of an Equip

    Ah, I do apologize. Reading variable names incorrectly can be bad. In reference to the sums, if you add them up and they are atleast 1, then it's rare. If not, then there are no pots on the item. For the other ranks, simply check each potential id separately if it is atleast that number.
  13. T

    [HELP] IP from server

    It's simply not possible. If you open any type of connection on the computer, be prepared for that connection to be revealed. Whether it be through looking through local connections or sniffing packets sent through the network, it'll be revealed one way or another.
  14. T

    Blocking 3rd party clients??

    You can also just do a generic heartbeat. If the server doesn't receive a unique heartbeat packet from the client then you can just close the connection and disconnect them. Hell, it doesn't even need to be unique, really. I've used this previously on a 30 second interval that worked out perfectly.
  15. T

    Checking for Potential State of an Equip

    Does this not return the correct value for you? getPotState(statsSel) You can just add up the potentials as a sum if it doesn't work for you. Rare = (sum >= 1 && sum < 20000) Epic = (sum >= 20000 && sum < 30000) Unique = (sum >= 30000 && sum < 40000) Legendary = (sum >= 40000)
Back
Top