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!

weapons add/delete trough .dll file?

Junior Spellweaver
Joined
Mar 10, 2009
Messages
194
Reaction score
2
Is it easier to store weapons data in .dll files? or isn't this smart?
I tought this would be possible since maps also can be loaded from a .dll file :laugh:
This would also be easier for people to add/delete weapons right?
 
Moderator
Staff member
Moderator
Joined
Feb 22, 2008
Messages
2,404
Reaction score
723
Well it can be done, all you need to do is verify how the items are stored in game.exe and then, in your dll, you re-create that exact table and then you update all the references of the old table to your new one. I guess vormav already did that, check the releases section
 
Custom Title Activated
Member
Joined
May 26, 2007
Messages
5,545
Reaction score
1,314
If the DLL was not specific to client or server, that would certainly make things easier. Just make sure you import the same DLL into both. However, since the offsets are different... Syncing between the two is the point where people usually slip up. It's easy to do, even if you know exactly what you're doing. Once done, it's *very* difficult to debug and you're usually better off starting again from scratch. :(
 
Back
Top