Oh, that print link is very useful, makes screen scrapping a thread a lot easier. Here is a very quick and dirty 5 minute python hack that uses the print page to screen scrape the story down. It needs a bunch of cleaning up e.g. to just get the story you will need to remove people quoting each other and remove the bracketed comments. But here it is (it's very rough):
import requests
from BeautifulSoup import BeautifulSoup
from html2text import html2text
html = requests.get('https://gunsoficarus.com/community/forum/index.php?action=printpage;topic=3086.0').text
p = BeautifulSoup(html)
print ' '.join([html2text(text.text).strip() for text in p.findChildren('dd')])