Jump to content

The gentleman's way of notetaking for scribes, clerks, scriveners and penmen


King of Cartography
 Share

Recommended Posts

Step 1: navigate to AppData\Roaming\.minecraft\logs

Step 2: find the log you want to scribe

Step 3: unzip it

step 4: upload the .log file to https://minecraftrpscribe.pythonanywhere.com/

step 5: Smile because you don’t need to scroll through a billion lines of garbage data

 

There's a 50mb limit on files

All files are instantly deleted after being processed

if you don't trust me to delete your logs and you know python just run this instead

with open('LOGNAME.log','r') as logfile:
    buffer = [line.split("[CHAT]")[1].strip() for line in logfile if '[CHAT]' in line]

with open('output.txt','w') as outputfile:
    for line in buffer:
        outputfile.write(line + "\n")

this post has been brought to you by the Cartography gang

Link to post
Share on other sites

thank you.......

 

I owe you my life.

Link to post
Share on other sites

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.



×
×
  • Create New...