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 Matynator

  1. Matynator

    Maty Kal Map Editor - Git Repo

    You must be registered for see element. :thumbup1:
  2. Matynator

    I will be honest...

    for looking up what parameter was parsed to that string as a dword you should actually look where this string is used within the programs functions and you will also find the correct address to overwrite or intercept this way.. to find these kind of things IDA Pro is a useful tool if you do not...
  3. Matynator

    e.pk problem

    just as a little headsup.. im not sure about engine.dll and what r3vo did.. but sounds like he patches the engines password on dll load.. if so.. it is not hexable as it would simply be overwritten at runtime anyway..
  4. Matynator

    The Bloody Emperor [Armor + Weapons]

    You kinda reopened a really old thread, but just for info sake.. i think i made these with blender and *Phantom 's gb importer and exporter scripts.. these days i don't use blender at all. stepped to 3ds max 2009 instead (importer/exporter are in the dev section somewhere) not sure if you can...
  5. Matynator

    3ds max 2009 exporter

    Because i took the time to compile this version. Also the time to translate it haha . About the dungeon checkbox it is not in that version of the exporter.. It's an older one without that functionallity
  6. Matynator

    How to add Sound Effect for Ejecting Drive like USB & CD

    You could do this within windows itself.. within the configuration for hardware and sound, there is a option to change or modify system sounds with your own.. you can do this for hardware connect and disconnect for example and browse for your own wave sound file and add it this way.. hope it...
  7. Matynator

    pimp rate

    @You must be registered for see element. always feel free to post a help thread with specific questions if your stuck.. ;) i will still read most of them and support where i can and see fit.. since i am moving country soon and leave my pc behind for a while until i can get it over in 1 piece i...
  8. Matynator

    pimp rate

    press ctrl + g.. go to offset D5B88 wich is the first adress i gave you... minus the 0x004 upfront as this hexeditor uses 0x00000000 as its base adress while the kal mainserver bases at 0x00400000 to begin with... reading is a gift some people should really use more often haha :D
  9. Matynator

    pimp rate

    i already gave you all info you need :) now its up to you to find out how to use the information properly, you would not learn a thing if i give out everything but i actually already did in this case, 0x004D5B88 is the adress of the first array.. 0x004D5C48 is the adress of the second array...
  10. Matynator

    pimp rate

    CItemWeapon::Charming Adr 0x00429100 that is the function you need to modify in the server for it.. there is a table for the upgrade chance if ( *(v9 + 112) < 20 && dword_4D5C48[*(v9 + 112)] >= sub_406E10(1, 10000000) ) if ( *(v9 + 100) < 20 && dword_4D5B88[*(v9 + 100)] >= sub_406E10(1...
  11. Matynator

    DLL support / Help

    wouldnt it be better to completely forget doing this in the database server and actually adapt the mainserver itself for that? :) you could modify the character create to do the check and leave the database server as it was :) might be alot easier and safer too..
  12. Matynator

    DLL support / Help

    Interface<ITools> Tools; DWORD Level; Server::_CDB db; Server::CDB::CDB(&db); // construct cdb Server::CDB::Bind_Dword(&db, &Level); // bind the level param //Server::CDB::Prepare("SELECT TOP [Level] FROM Player WHERE UID = %d ", nUID); // this is unneeded it is not prepare it is console...
  13. Matynator

    3ds Max 8

    That is just the last service pack they released for it.. you would still need to get the actual program installed before that.. Zipp well only way how i could find it was through torrents about 2 years ago.. atm i am moving house so i wont have the time to upload it or anything, if i find it...
  14. Matynator

    Dungeon 1 Stones

    all you need to take out is at the bottom of macro.dat at the initmap section remove these lines: ( mapobj ( xy 6 4 ) ;¹ö·ÁÁø ¹«´ý ( objinfo (filepath "MAP\lib\stone01") (scale 1.0 1.0 1.0) (rotation 90.0 0.0 0.0) (position 2038.70 2477.14 1999.36) ) ( objinfo (filepath "MAP\lib\stone01")...
  15. Matynator

    New Engine Snow Event - Effect

    By pure coincidence i found out how to apply the snow effect in the newest engine.. If you add the BState 0x10 to the character with the server it displays the snow effect in the client :) Hope this helps you any further! Edit: there is actually more then just 1 snow effect in there as i...
Back
Top