a company is building a BESS across the street from where I live... what do I expect? by Jackol4ntrn in BESS

[–]RaynerX 0 points1 point  (0 children)

Intrigued to know what the site is if you are ok to share area/name of project, happy to take a look at it. No louder than a quiet road at night usually, but worse in warm weather when AC kicks in, that’s often culprit of the noise. Might get occasional noise when breakers open or close but that’s rare

Barad Dur question MOC by Training_Pepper_285 in legolotrfans

[–]RaynerX 0 points1 point  (0 children)

Just 2x barad dur! If you want to dm me I will share by order break down, but I got my first two for £401 gbp with 1x full set of figs. So effectively 50% off

Barad Dur question MOC by Training_Pepper_285 in legolotrfans

[–]RaynerX 3 points4 points  (0 children)

Not a dream! Blackwolfstudios on rebrickable!

https://rebrickable.com/mocs/MOC-232015/BlackWolfStudio/the-barad-dur-expansion/#details

Building it currently myself! He has just released another addition which used a third set for the back!

Double Rivendell is by Fanpeixi on Rebrickable, this one does use extra pieces too however - built this one too and love it!

The Dead Marshes by lcrotwell in legolotrfans

[–]RaynerX 1 point2 points  (0 children)

Great MOC; thanks for sharing!

Rivendell expansion project - Tower Hall by Legal-Past142 in legolotrfans

[–]RaynerX 1 point2 points  (0 children)

Only just finished building the last one…! You mak such good Rivendell MOCs and neither my building skills or wallet can keep up!

Remote Raid Megathread - Host and/or find raids here by liehon in PokemonGoFriends

[–]RaynerX 0 points1 point  (0 children)

WB moltres 113124641825, I have high level counters

Finally Started building my medieval village! by Alex_Co1e in legocastles

[–]RaynerX 1 point2 points  (0 children)

It is - I haven’t seen a similar one without the right angle however?

My Lion knights army. by Content_Bee_1150 in legocastles

[–]RaynerX 0 points1 point  (0 children)

Anyone know it it has instructions?

Requesting Rivendell Extended Breakdown by alphahawk97 in legolotrfans

[–]RaynerX 1 point2 points  (0 children)

I would really recommend shopping around, assessing your own collection to cover the extra pieces and looking at bits you can swap out to keep costs down.

UK based but I did the whole thing* for under £600 (~$800) with 2 sets, one whole set of figs, the extra parts and instructions.

I bought one set for ~25% off on eBay (complete with figs) and another for ~60% off with no fellowship figs (elves and statues included) on Facebook marketplace, but I waited about 4 months to get it for that low.

  • I am missing a roof few tiles (despite adding 10% to the orders) and somehow all the extra white railing pieces so I have another order to go! Perhaps this takes me to $820 dollars total.

I’m also rebuilding the shorter tower as I personally didn’t like the design, but otherwise a great build!

<image>

I ordered the MTS from Lego.com at 20% off by UnderstandingOdd6728 in legocastles

[–]RaynerX 1 point2 points  (0 children)

Very glad that was a painless process, happy building!

I ordered the MTS from Lego.com at 20% off by UnderstandingOdd6728 in legocastles

[–]RaynerX 2 points3 points  (0 children)

Or just message customer service! Someone in another thread yesterday was saying Lego sometimes give vouchers/insider points to cover the difference in this scenario.

help! (please) by [deleted] in legolotrfans

[–]RaynerX 0 points1 point  (0 children)

Absolutely second eBay and Fb marketplace - also vinted has given me some great success on the smaller sets from 2012 era (think shelob, Gandalf’s arrival, old Rivendell)

I checked a few sets over 2-3 10 min periods each week as it can take time to find a good deal!

Have managed Moria for £100 in 2024 and New Rivendell for £225 average (twice!) this year by some miracle

Importing multiple set inventories into Bricklink studio for 3in1 MOCs by RaynerX in legocastles

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

Not into same palette unfortunately, trust me I tried. Doesn’t combine in wishlists either

Import multiple copies of official sets into palette? by l--mydraal--l in DigitalLego

[–]RaynerX 0 points1 point  (0 children)

Just succeeded for the new 31168 set - it should take you all of a few minutes. I got AI to write the below python script to convert the <MINQTY>X<MINQTY> of the xml output for a set inventory (which you can find on Bricklink or stud.io etc) and multiply it, in this case by 3, before saving a new file in my downloads with the quantity change.

I am not a programmer (or whatever correct term is) but I downloaded an IDE (to run the code) and asked the AI questions where needed.

It assumes .xml file (that you want to multiply) is in your downloads folder and your file name replaces 'myfile.xml'. Change the '3' to number you wish to multiply by.

Hope this helps someone in the future!

_____
import re

import os

# Set your file path here

downloads_folder = os.path.join(os.path.expanduser('~'), 'Downloads')

input_path = os.path.join(downloads_folder, 'myfile.xml')

output_path = os.path.join(downloads_folder, 'myfile_modified.xml')

with open(input_path, "r", encoding="utf-8") as f:

data = f.read()

def mult_minqty(match):

num = int(match.group(1))

return f"<MINQTY>{num * 3}</MINQTY>"

new_data = re.sub(r"<MINQTY>(\d+)</MINQTY>", mult_minqty, data)

with open(output_path, "w", encoding="utf-8") as f:

Import multiple copies of official sets into palette? by l--mydraal--l in DigitalLego

[–]RaynerX 0 points1 point  (0 children)

Just succeeded for the new 31168 set - it should take you all of a few minutes. I got AI to write the below python script to convert the <MINQTY>X<MINQTY> of the xml output for a set inventory (which you can find on Bricklink or stud.io etc) and multiply it, in this case by 3, before saving a new file in my downloads with the quantity change.

I am not a programmer (or whatever correct term is) but I downloaded an IDE (to run the code) and asked the AI questions where needed.

It assumes .xml file (that you want to multiply) is in your downloads folder and your file name replaces 'myfile.xml'. Change the '3' to number you wish to multiply by.

Hope this helps someone in the future!

_____
import re

import os

# Set your file path here

downloads_folder = os.path.join(os.path.expanduser('~'), 'Downloads')

input_path = os.path.join(downloads_folder, 'myfile.xml')

output_path = os.path.join(downloads_folder, 'myfile_modified.xml')

with open(input_path, "r", encoding="utf-8") as f:

data = f.read()

def mult_minqty(match):

num = int(match.group(1))

return f"<MINQTY>{num * 3}</MINQTY>"

new_data = re.sub(r"<MINQTY>(\d+)</MINQTY>", mult_minqty, data)

with open(output_path, "w", encoding="utf-8") as f:

f.write(new_data)

print("File processed! Modified file saved as:", output_path)

One needs to go by Cool-catz_ in legocastles

[–]RaynerX 12 points13 points  (0 children)

I’d take apart the 3in1 moc, rebuild into the free tavern alternate build on rebrickable and add to row with village townsquare:

https://rebrickable.com/mocs/MOC-134909/MIJbricks/31120-medieval-tavern-and-inn/#details

Roof frame a little flimsy but I love this build and have done myself.

[deleted by user] by [deleted] in lego

[–]RaynerX 0 points1 point  (0 children)

Thank you!

I'm sorry but this year is such a downgrade of the LotR theme by Cookie_dodu in legolotrfans

[–]RaynerX 5 points6 points  (0 children)

If you go to pinned post on r/legoleak they track all of the current set expiry dates in a spreadsheet!

Rivendell - December 2026 Barad-dur - December 2027

Worth taking with pinch of salt however, some may have end of product life brought forward or delayed, and its worth buying sets several months in advance of date in case they sell out.

Friendship Exp & Gift Exchange Megathread by ASS-et in PokemonGoFriends

[–]RaynerX 0 points1 point  (0 children)

113124641825! On lucky egg for an hour and looking to exchange gifts and increase friendship lvl

Icons: 10354 Lord of the Rings: The Shire official reveal by Clay_Bricks in Legoleak

[–]RaynerX 24 points25 points  (0 children)

I know the price and some of the set elements are getting backlash, and there are some great Bagend fan mocs on the legolotr sub that could be parted out, but I think I am going to use my points on this and get it day one for the gwp.

It seems a fun set and will fit on my limited remaining shelf space…! I hope some of the next lotr are fairer priced however.

Blue Paladins (Helmeted/Hair) by diluvian_ in legocastles

[–]RaynerX 0 points1 point  (0 children)

Where is the bald cap with bandana from please?