...did Syrus just say they managed to fire a ballista/catapult in adventure mode?
I'm feeling kinda woozy after reading that, not sure if I'm hallucinating or not, but I don't see others freaking out about it so I'm confused.
Almost killed yourself...
Please, in the name of Armok tell me you almost did this:
No, sadly, as described above, loading yourself (or another absolutly willing test subject) into a ballista is not that easy. I just stood at the wrong end when firing the thing and whacked the ballista arrow out of the air.
Anyway, I have been trying to make some glass to properly seal off the (active) vulcano I've been living in for the last few days, but sadly I can't seem to figure out how to create glass using sand; or rather: how do I make the job realize that I got a bag of sand with me / on the floor?
EDIT:
Noticed that building North-South facing axles was not possible.
It seems you need to give the thing not just a width (West-East) and height (North-South) to toggle between building an axle west-east or north-south, but you also need to give it a direction.
For example you'd say "width = 1" and "height = 5" and it'd just build a 1x1 west-east axle. Putting "width = 5" and any height would make a 5 long west-east axle.
When I added a direction to the thing I'd give it for example "width = 1", "height = 5" and "direction = 1" and it'd make a 5 long north-south axle - pretty much what I wanted!
Of course, if you put in: "width = 5", "height = 1" and "direction = 1" it'd still give you a 1x1 north-south axle.
So you need to give it the right direction and set the right lenght-direction (width/height).
The change I did was in line 461 in advfort.lua:
455: function chooseBuildingWidthHeightDir(args)
--TODO nicer selection dialog[...]
461: [btype.AxleHorizontal]=makeset{"w","h"
,"d"}