01-21-2025, 08:57 PM
01-21-2025, 09:11 PM
PACK's statsgen does this, see the "Checking mask coverage" section of:
https://github.com/iphelix/pack
https://github.com/iphelix/pack
01-24-2025, 06:24 PM
(01-21-2025, 09:11 PM)penguinkeeper Wrote: [ -> ]PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows?
https://github.com/iphelix/pack
01-24-2025, 06:37 PM
(01-24-2025, 06:24 PM)Atlantis Wrote: [ -> ](01-21-2025, 09:11 PM)penguinkeeper Wrote: [ -> ]PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows?
https://github.com/iphelix/pack
Python works on both, linux and windows
01-28-2025, 06:50 PM
(01-24-2025, 06:37 PM)Snoopy Wrote: [ -> ]OK, how to make an exe out of these files?(01-24-2025, 06:24 PM)Atlantis Wrote: [ -> ](01-21-2025, 09:11 PM)penguinkeeper Wrote: [ -> ]PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows?
https://github.com/iphelix/pack
Python works on both, linux and windows
01-28-2025, 08:37 PM
(01-28-2025, 06:50 PM)Atlantis Wrote: [ -> ]OK, how to make an exe out of these files?
install python for windows https://www.python.org/ and just run/execute these files
p.a.c.k. is quite old but still good, it was written in the style of python 2.7, which is now obsolete, this leads to some incompatibilities, you will have to change/modify all print statements, example given
old python 2.7
print "test"
to new python 3.*
print("test")