• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compare map files

hellboy

Intermediate OT User
Joined
Apr 6, 2008
Messages
544
Solutions
6
Reaction score
121
Location
player:getTown()
Is there any simple way to compare every sqm in two otbm files an show differences as list of positions? Something like diff for txt files.
 
Solution
You could overlay the old map unto the new map, and look for any specific changes with specific itemids (are you looking for improperly placed MPAs/DSM/SoV/etc?, then that could help, otherwise:), or you could also make an implementation into otbmloader.cpp where it loads both maps and prints the differences found.
Never heard about something like that, the "best" way would be to do a source edit and add another function to compare them and display them in a list.
 
Never heard about something like that, the "best" way would be to do a source edit and add another function to compare them and display them in a list.
Ditto that. You could also import the map and look for any differences in the map per relevant itemids. You could either source edit this into RME or the OTS tbh.
 
You could overlay the old map unto the new map, and look for any specific changes with specific itemids (are you looking for improperly placed MPAs/DSM/SoV/etc?, then that could help, otherwise:), or you could also make an implementation into otbmloader.cpp where it loads both maps and prints the differences found.
 
Solution
For the record. It took me only 6 years to get it :D
 
Back
Top