GreatStoneEx / hi2txt-xml

Games specific XML files, allowing hi2txt utility to decode hiscores saved by mame
GNU General Public License v2.0
8 stars 0 forks source link

How to use and read .hi file #26

Open kalpitshah72 opened 4 years ago

kalpitshah72 commented 4 years ago

I want to fetch high score that is stored in .hi file, https://greatstoneex.github.io/hi2txt-doc/

referring this but not getting how and what to do.

GreatStoneEx commented 3 years ago

@kalpitshah72 You can have a look into: https://greatstoneex.github.io/hi2txt-doc/doc/index.html The section "How to read high scores from a mame installation?" is giving you the needed information.

In short, you can launch, for the java version:

  1. go into the "hi2txt" installation folder (where hi2txt.bat is located)
  2. then call hi2txt: hi2txt.bat -hiscoredat /plugins/hiscore/hiscore.dat -r /hi/.hi hi2txt.bat -hiscoredat C:/mame/plugins/hiscore/hiscore.dat -r C:/mame/hi/ddonpach.hi or without check on hiscoredat validity: hi2txt.bat -r C:/mame/hi/ddonpach.hi

for the c# version, replace hi2txt.bat by hi2txt.exe

Is it clearer now?