Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,084
» Latest member: Damien Aquatikelfik
» Forum threads: 6,556
» Forum posts: 54,090

Full Statistics

Online Users
There are currently 7 online users.
» 1 Member(s) | 1 Guest(s)
Applebot, Baidu, Bing, Google, Yandex, Damien Aquatikelfik

Latest Threads
Please add Cat, Large (Li...
Forum: Part Requests
Last Post: Gerald Lasser
4 hours ago
» Replies: 7
» Views: 527
Town, Trains and Paradisa...
Forum: Official Models
Last Post: Takeshi Takahashi
Yesterday, 4:57
» Replies: 5
» Views: 8,084
Missing Stingrays/Hydrona...
Forum: Part Requests
Last Post: Chris Böhnke
Yesterday, 1:20
» Replies: 1
» Views: 350
Only real-world elements ...
Forum: Parts Author Tools
Last Post: Chris Böhnke
2026-08-10, 19:10
» Replies: 3
» Views: 396
New parts from Lego Instr...
Forum: Parts Authoring
Last Post: Willy Tschager
2026-08-10, 17:36
» Replies: 100
» Views: 132,672
‘Tile 8 x 16 Type 2 with ...
Forum: Part Requests
Last Post: Sylvain Sauvage
2026-08-10, 12:33
» Replies: 10
» Views: 1,213
Circle/curve generator?
Forum: LDraw Editors and Viewers
Last Post: mcgenerator
2026-08-08, 3:13
» Replies: 8
» Views: 29,625
Most Common Parts - 16 im...
Forum: Part Requests
Last Post: tom alphin
2026-08-08, 2:47
» Replies: 5
» Views: 1,727
(unofficial) Part 7684 - ...
Forum: Part Requests
Last Post: tom alphin
2026-08-08, 2:37
» Replies: 18
» Views: 1,433
Part Request: LEGO LION
Forum: Part Requests
Last Post: Denis Dyshlovenko
2026-08-07, 19:24
» Replies: 3
» Views: 4,448

 
  6367-1 Semi Truck custom Panel
Posted by: jmdsdavid - 2018-08-05, 9:16 - Forum: Part Requests - Replies (2)

Hi there.

Can anyone create the custom panel of the set 6367-1 Semi Truck  with the sticker parts/003440a.dat ([size=x-small][font=Verdana, Arial, Helvetica, sans-serif]Sticker 2.6 x 5.5 "International TRANSPORT") with 4215 [size=small][font=Tahoma, Arial]White Panel 1 x 4 x 3.[/font][/size][/font][/size]

[size=x-small][font=Verdana, Arial, Helvetica, sans-serif][size=small][font=Tahoma, Arial]Thanks.[/font][/size][/font][/size]

Print this item

Photo Model 8022-1
Posted by: Charles Farmer - 2018-08-04, 15:31 - Forum: Official Models - Replies (5)

Hi all,

I wanted to upload a model I made. I am totally new to this, so any feedback is more than welcome.

[Image: zEUEENM.png]

Best regards,
Charles



Attached Files
.mpd   8022-1 - Plane.mpd (Size: 5.73 KB / Downloads: 4)
Print this item

  Technic 2006
Posted by: Kevin Hendirckx - 2018-08-02, 11:46 - Forum: Official Models - Replies (12)

                   
Download MPD
Known errors: No stickers
Done with LDCad 1.6a

Print this item

  Interesting build technique in Voltron set
Posted by: Travis Cobbs - 2018-08-01, 5:33 - Forum: Off-Topic - Replies (7)

Take a look at step 45 here:

[Image: z9gjs7Q.jpg]

Notice in particular the use of two red 1x2 plates underneath the 2x2 plate, instead of simply stacking two 2x2 plates on top of each other. As far as I can tell, this is done because there are only two studs underneath, and the 1x2 plate has more grip than half a 2x2 plate. I don't think I've seen that done in any official LEGO sets that I have put together in the past.

The grip above the 1x2 plate (onto the underside of the 2x2 plate) would be the same as if two 2x2 plates were stacked, but I think the presence of the second 1x2 plate, and the fact that that is up a bit higher, makes it so that the whole bit that is added in step 45 is less likely to come off.

Do you think that is why it's built this way?

Print this item

  Naming convention: Trophy
Posted by: Willy Tschager - 2018-07-29, 19:39 - Forum: Parts Authoring - Replies (3)

Guys,

I'm gonna submit:

https://www.bricklink.com/v2/catalog/cat...ge?P=10172

And I'd like to get some input on the naming. BL currently lists:

https://www.bricklink.com/v2/catalog/cat...ge?P=10172
https://www.bricklink.com/v2/catalog/cat...ge?P=89801
https://www.bricklink.com/v2/catalog/cat...ge?P=72092

where 89801 is already an official and 72092 is on the PT. I like Santeri's "Minifig Trophy Cup  5L" naming scheme a lot and would like to know your opinion about. Obviously this would require a renaming of 89801. (The only problem I could see is that I have forgotten how we measure the "L" and more embarrassing - there is no documentation on our site).

w.

Print this item

  Motor animation
Posted by: NEMOOZ - 2018-07-29, 19:04 - Forum: Rendering Techniques - Replies (5)

Hi everyone,
I am wondering how is it possible to animate motor in LDCad?
I found great LDCAD animation on youtube :

I found Scripting API on Melkert website 

Here the model:
[Image: Motor_animation_view.png]

I am able to rotate the camshaft with this script:

Code:
--[[Sripted by Co for NEMOOZ]]
function register()

--****************************************************************************************
-- "Dissolve" script makes parts disappear progressively from the model ("Build" inverse)
--****************************************************************************************
    local ani=ldc.animation('Motor')

   --Set the length of the animation in seconds
   ani:setLength(10)
    
   ani:setEvent('start', 'motorStart')
   ani:setEvent('frame', 'motorFrame')
end

function motorStart()
     mainSf=ldc.subfile()
end

function motorFrame()

   local ani=ldc.animation.getCurrent()
   local ori=ldc.matrix()
 
   local angle=1800*ani:getFrameTime()/ani:getLength()
   
   local ax1=mainSf:getRef('axe_motor.ldr')
   ori:setRotate(angle, 1, 0, 0)
   ax1:setOri(ori)
end

register()


I searched the forums and found nothing on that particular subject.

Regards



Attached Files
.zip   Motor_animation.zip (Size: 921.15 KB / Downloads: 11)
Print this item

  PT Status Mail
Posted by: Johann Eisner - 2018-07-28, 12:18 - Forum: Website Suggestions/Requests/Discussion - Replies (13)

Hi
After PT moved to the new server, i get no more status mail from PT.
Submit a few parts, but I did not get any mail that I had submit.

Regards Johann

Print this item

Information Item No: 98135
Posted by: Chirileac - 2018-07-26, 19:17 - Forum: Part Requests - Replies (2)

The part I would like to request: 
98135 - Propeller 1 Blade 16L with Axle
[Image: 98135.png]

Aditional information
1. Brickset
2. BrickLink
3. I not found this item in LEGO Digital Designer

Thanks in advance

Print this item

Information Item No: 24204
Posted by: Chirileac - 2018-07-26, 9:15 - Forum: Part Requests - Replies (2)

Hello -
First post here, I believe I looked in all the places I could to be sure that the part I am seeking isn't already catalogued.

The part I would like to request:
24204 - Appendage Bladed with Pin
[Image: 24204.png]
Aditional information
1. Brickset
2. BrickLink
3. I not found this item in LEGO Digital Designer

Thanks in advance

Print this item

  Models referenced by file path - Who is Willy?
Posted by: Alexander U. - 2018-07-26, 5:51 - Forum: General LDraw.org Discussion - Replies (2)

I have installed the optional LEGO Model LDraw files.

This is how the Fort Legoredo looks like: https://i.imgur.com/m9RkjRE.png

Certain Technic models (e.g. 42039) look even worse.

The issue seems to be caused by model references that do not resolve to a file; one of the paths is shown in the tooltip.

So: Who is Willy? Big Grin

Print this item