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 HaXXoR75

  1. HaXXoR75

    ItemManager.cpp Error

    That error, in english, translates out to "Item already exists: 700", its telling you that an item with ID 700 was just added, but there was already another item with that ID, only one of them will end up working. Unless you've done significant changes to the item IDs and actually have an item...
  2. HaXXoR75

    Enchant message modification

    It should be message 2285 for success and 2321 failure, inside systemmsg.bin, unless you / someone else changed the message IDs inside your client source code. If that's the case, you can find the correct message IDs inside ItemManager.h inside the CItemManager::Process() function.
  3. HaXXoR75

    How to change starting items of characters

    Starting items are set in the database, theyre located inside the MP_CHARACTER_CreateCharacter stored procedure, near the bottom there will be several lines such as the one bellow that give each newly created character certain items in inventory. insert tb_item(character_idx, item_idx...
  4. HaXXoR75

    Need Help Remembering how to Decode Date code from installer numbers

    09041501 is 2009/04/15 client number 1. last digit is to enable more then one client version being released in a single day if they ever had to do so. The format for the verinfo files follows the same format
  5. HaXXoR75

    Decrypt the bins please.

    Hi, In order to retrieve the AES key you'll have to provide the client the .bin file came from. At a minimum the main luna client .exe, preferably the entire client installer.
  6. HaXXoR75

    AES key for .bin files with version

    In order to retrieve the AES key you'll have to let us know / provide the client the .bin file came from. At a minimum the main luna client .exe, preferably the entire client installer.
  7. HaXXoR75

    help luna plus grapihc

    That looks like the games normal fog system kicking in, normally the fog just obscures the draw distance cut off so you dont see things dissappearing in the distance, but since fog is based on camera position and you've zoomed out so far, its obscuring your view. As for "fixing" it, its...
  8. HaXXoR75

    Full Release Luna 2 (Luna Plus) Server + Client Source Code.

    EYA Interactive went bankrupt many years ago, was reopened as EYASoft, who went bankrupt again shortly after. EYA's luna development team then purchased the rights to all the luna assets and started their own company, hoping to do better without the rest of eya's baggage. They go by "FUNTIME...
  9. HaXXoR75

    v5 source not able to read resource?

    Update: Now in world after reworking CHARACTER_STR in the db to match what the server is expecting, most of the work required was reworking how the bank table is loaded. Highly doubt its very stable, and since i've only worked on the one section of the stored proc that is used for login (S8) the...
  10. HaXXoR75

    v5 source not able to read resource?

    After some more testing i've determined theres nothing wrong in the database server really, its the database itself. It looks like the database is slightly newer then this source and has extra inventory slots used for costume items, this source doesnt support those slots and thats what causes...
  11. HaXXoR75

    v5 source not able to read resource?

    Unfortunately i am stuck in the same place currently. There seems to be something wrong with deleting the cMover as it goes out of scope during the player list loading but i haven't managed to figure out what or why. I'll let you know if i find a solution, and would appreciate it if you did the...
  12. HaXXoR75

    v5 source not able to read resource?

    Normal in a way, in debug configs it attempts to load the core shaders from files alongside the client rather then the copies embedded into the exe, presumably so that they could test changes rapidly without having to recompile everything. Either put the shaders where it expects them to be, or...
  13. HaXXoR75

    v5 source not able to read resource?

    The define isn't used in newer sources, but the code is. Aeonsoft at some point later in development went through many of the older defines and hardcoded on things that had become absolutely necessary. After a quick check of the v15 source, it looks like all of _MSVR is hardcoded ON, so this...
  14. HaXXoR75

    v5 source not able to read resource?

    Not currently using vs17, still vs2003. Decided to get things as functional as possible in the older VS before introducing more issues with the VS update. As for the server list, not sure what the issue would be there, haven't done much testing on it since it's essentially non functional with...
  15. HaXXoR75

    v5 source not able to read resource?

    Congrats on getting the client working! Do continue to update us all on your progress and any other issues you run into, more then happy to help when i can. Goodluck getting the servers running and getting in game! @You must be registered for see element. Bonus in game screenshot for funs You...
Back
Top