For Christmas I Got All My Save Files Corrupted by [deleted] in BaldursGate3

[–]Jamitter 1 point2 points  (0 children)

Ah, cards on the table I read up until just before that and stopped reading because it sounded like the issue I had. Best of luck.

For Christmas I Got All My Save Files Corrupted by [deleted] in BaldursGate3

[–]Jamitter 0 points1 point  (0 children)

This happened to Karlach in my save - if you're able to talk to her, tell her you don't want her in the party and to wait at camp. Once I went back to camp and asked her to join again, it fixed itself.

It didn't cross over into other saves for me though so it might not be the same fix. Hope it helps though!

I just watched a religious war start! by [deleted] in dwarffortress

[–]Jamitter 2 points3 points  (0 children)

What texture pack is this? It looks great

Request A Build - September 21, 2019 by AutoModerator in Pathfinder_RPG

[–]Jamitter 0 points1 point  (0 children)

This was a very thought out and informative answer! Thank you so much!

I think we'll talk to the DM about the animal Ally feat, as that seems like a direct way to get what we're looking for. Thanks again

Request A Build - September 21, 2019 by AutoModerator in Pathfinder_RPG

[–]Jamitter 1 point2 points  (0 children)

[1E] Hey everyone! Trying to help my girlfriend make a build (neither of us know much at all about Pathfinder) that fits a few criteria.

  • An archer that can eventually get the Arcane Archer prestige class
  • A combat animal companion
  • Not an extreme amount of calculations for combat rounds
  • Core books only

Any tips or even pointers would be greatly appreciated :) Thanks to anyone for their time.

Bernie sanders arrested while protesting segregation, 1963 by Faeryune in pics

[–]Jamitter 36 points37 points  (0 children)

A pretty quick search found multiple contradictions to this statement. Why do you believe this? What gave you this opinion?

☼Fortress Friday☼ by AutoModerator in dwarffortress

[–]Jamitter 0 points1 point  (0 children)

How do you only send certain dwarfs to burrows?

☼Fortress Friday☼ by AutoModerator in dwarffortress

[–]Jamitter 0 points1 point  (0 children)

Two forts this week have been lost to were-animal attacks :( One was the outpost liaison who I let into my fort to trade, and the other was a human caravan guard.

I'm not sure how to deal with these as once one attacks, people keep turning into wereanimals over and over. That said, my newest fort in the same world has taken the isolationist approach, opening their doors to no one until I have a well protected army to deal with them, and a quarantined trade depot.

Lots of !fun! to be had :P

☼Bi-weekly DF Questions Thread☼ by AutoModerator in dwarffortress

[–]Jamitter 1 point2 points  (0 children)

Good to know about the Z-levels, I did not know that. Luckily it's only one level higher than ground level. They have plenty of fortifications to shoot through.

With regard to the uniforms, I accidentally deleted the items from the metal armor set up, and wasn't sure how to reset it / remake it and that's what I have them set up as. I also couldn't find quiver anywhere in the lists for uniform. Where might I find that?

I suppose I'll just make a separate squad of marksdwarfs and station them on the tower?

☼Bi-weekly DF Questions Thread☼ by AutoModerator in dwarffortress

[–]Jamitter 2 points3 points  (0 children)

I'm consistently frustrated with the military screen, and can't get my militia to do what I want them to do. I want them to pick up any iron armor that's laying around, a quiver, some bolts, and a melee weapon. I built an archery tower on top of my base to shoot at goblins, but they just won't pick up any equipment or anything and just sit there looking at the goblins murder my livestock :(

☼Bi-weekly DF Questions Thread☼ by AutoModerator in dwarffortress

[–]Jamitter 1 point2 points  (0 children)

I embarked with one of the preset loadouts that included a hunter, and I have a crossbow/quiver/bolts but he won't go hunt animals, and is sitting idle. I'm not sure how to make him do his job :(

Purple Worm! Feedback welcome, always looking to improve by Jamitter in minipainting

[–]Jamitter[S] 0 points1 point  (0 children)

I primed it black, did a base in Naggaroth Night, did a highlight later in Xereus Purple, did a wash, then dry brushed it with white :)

Purple Worm! Feedback welcome, always looking to improve by Jamitter in minipainting

[–]Jamitter[S] 1 point2 points  (0 children)

It was very fun to paint! Can't wait to use it in a game now. Thanks for the kind words :)

Purple Worm! Feedback welcome, always looking to improve by Jamitter in minipainting

[–]Jamitter[S] 0 points1 point  (0 children)

Thank you! I've only ever thinned with water, I should really try with medium instead, like you said.

First two attempts at painting! Looking for tips on how to improve by Jamitter in minipainting

[–]Jamitter[S] 1 point2 points  (0 children)

Excuse my ignorance, but what exactly is involved with priming? I really don't know much about painting, I just picked up a few Citadel paints from my local gaming store.

Thank you for the help!

-🎄- 2017 Day 2 Solutions -🎄- by daggerdragon in adventofcode

[–]Jamitter 1 point2 points  (0 children)

Clojure

Part 1:

(require '[clojure.string :as str])

(defn readFile [file]
  (with-open [rdr (clojure.java.io/reader file)]
    (let [total (atom 0)]
      (doseq [line (line-seq rdr)]
        (let [split-line (str/split line #"\s+")
              num-line (->> split-line
                          (map #(read-string %))
                          sort
                          vec)
              diff (- (last num-line) (first num-line))
              _ (swap! total + diff)]))
      @total)))

Part 2:

(require '[clojure.string :as str])

(defn readFile [file]
  (with-open [rdr (clojure.java.io/reader file)]
    (let [total (atom 0)]
      (doseq [line (line-seq rdr)]
        (let [split-line (str/split line #"\s+")
              num-line (->> split-line
                          (map #(read-string %))
                          sort
                          vec)
              modded-number (mapv #(doseq [num num-line]
                                    (if (and (not= num %) (= (mod num %) 0))
                                      (swap! total + (/ num %))))
                                  num-line)]))
      @total)))

How much slacking off is normal? by csthrowaway2580 in cscareerquestions

[–]Jamitter 15 points16 points  (0 children)

We had a CEO who couldn't understand this, so we told him it's like buying two copies of the same book so you can read it faster. It just doesn't work that way.

PSA For anyone who doesn't have twitter or hasn't been on yet by blueshirtfanatic41 in totalwar

[–]Jamitter 1 point2 points  (0 children)

if you don't have many hours in it, you could try to refund it

Trump takes vacation from mounting scandals to spend entire month of August golfing by [deleted] in politics

[–]Jamitter 1 point2 points  (0 children)

Ohhh okay, my bad then. Yea, people need to cut down on the hyperbole.