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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,037
» Latest member: Moses Bruen
» Forum threads: 6,546
» Forum posts: 54,021

Full Statistics

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

Latest Threads
Missing Roboforce 1997 Mi...
Forum: Part Requests
Last Post: Zack Uhlenhuth
Yesterday, 5:07
» Replies: 1
» Views: 279
Missing Adventurers Brick...
Forum: Part Requests
Last Post: Zack Uhlenhuth
Yesterday, 5:05
» Replies: 0
» Views: 75
Stickers from 6000 - LEGO...
Forum: General LDraw.org Discussion
Last Post: legolex76
2026-07-27, 9:51
» Replies: 15
» Views: 12,969
ModelScope XR - VR model ...
Forum: LDraw Editors and Viewers
Last Post: Wyatt Stone
2026-07-26, 17:19
» Replies: 2
» Views: 1,371
Missing Ninja 1998 Minifi...
Forum: Part Requests
Last Post: Zack Uhlenhuth
2026-07-25, 17:53
» Replies: 6
» Views: 790
Missing Adventurers Minif...
Forum: Part Requests
Last Post: Zack Uhlenhuth
2026-07-25, 15:21
» Replies: 2
» Views: 326
1970's - LEGOland and hob...
Forum: Official Models
Last Post: Takeshi Takahashi
2026-07-25, 2:38
» Replies: 155
» Views: 276,038
Wrong set name
Forum: Parts Authoring
Last Post: Chris Böhnke
2026-07-24, 16:27
» Replies: 3
» Views: 385
14290pb02 Chima Fox Mask
Forum: Part Requests
Last Post: Chris Böhnke
2026-07-24, 9:20
» Replies: 1
» Views: 258
Part request 7168 and 716...
Forum: Part Requests
Last Post: Jens Brühl
2026-07-23, 17:09
» Replies: 3
» Views: 507

 
  Color numbers
Posted by: dkd - 2022-03-25, 15:44 - Forum: Help - Replies (5)

Hi
Have looked in my folders (comp.) - would like a complete list of color codes - like bricks (mklist) - is it possible?
Thanks in advance  Smile 

Dan

Print this item

  Part request 79194
Posted by: Tony Wang - 2022-03-25, 14:41 - Forum: Part Requests - Replies (6)

79194 Plate, Round 1 x 1 with Bar Handle on Long Stem

It seems that the model of this part does not exist (only with the short version). Could someone work on this one if possible? Thanks

Print this item

  [LDCad] open Stud.io-file with correct colors
Posted by: Stefan Frenz - 2022-03-25, 11:13 - Forum: LDraw Editors and Viewers - Replies (7)

I got a stud.io file with all inlined parts, size is about 7 MB. Opening this file in Stud.io is nearly impossible as I'm waiting now for about 45 minutes and still having "parsing a file 0%", while LDCad opens it in a few seconds. Smile  Unfortunately, all colors are Stud.io/Bricklink-colors, so they are "MISSING" in LDCad.

Is there an easy way in LDCad to activate an import-filter replacing all Stud.io/Bricklink-colors by LDraw-colors on load or is there a small script to replace colors after loading? If so: does such a script exist already? As far as I understand, especially the -1 and -2 colors need special attention as they map to 16/24 in the LDraw universe.

Thanks for any hint, I'm willing to implement the converting script if this is the way to go and not done yet.

Print this item

  Simple LDCad script
Posted by: N. W. Perry - 2022-03-25, 4:27 - Forum: LDraw Editors and Viewers - Replies (10)

So, I wrote my first script for LDCad, hooray! Cool

It is a simple macro to transpose two colors in a selection. You might use it if you have built a huge checkered floor out of tiles and realized you have the pattern backwards!

I'm sure there are ways to improve it, but I'm actually pleased I was able to work it out in one day. Big Grin

Here it is:

Code:
genTools=require('genTools')

function runColorSwap()

  local ses=ldc.session()
  local sel=ses:getSelection()
  local cnt=sel:getRefCount()
 
  if not ses:isLinked() then
    ldc.dialog.runMessage('No active model.')
    return
  end

  if cnt==0 then
    ldc.dialog.runMessage('No selection active.')
    return
  elseif cnt<2 then
    ldc.dialog.runMessage('At least two items must be selected.')
    return
  end

  local colors={}
 
  local function has_value (tab, val)
    for k, v in ipairs(tab) do
        if v == val then
            return true
        end
    end

    return false
  end

  for i=1,cnt do
    local ref=sel:getRef(i)
    local col=ref:getColor()
    if not has_value(colors, col) then
      table.insert(colors, col)
    end
  end

  if #colors==2 then
    for i=1,cnt do
      local ref=sel:getRef(i)
      local col=ref:getColor()
      if col==colors[1] then
        ref:setColor(colors[2])
      elseif col==colors[2] then
        ref:setColor(colors[1])
      end
    end
  else ldc.dialog.runMessage('The selection must contain exactly two colors.')
  end
end
--===================

function register()

  local macro=ldc.macro('Color swap')
  macro:setHint('Transposes two colors in a selection.')
  macro:setEvent('run', 'runColorSwap')
end

register()

Suggestions are welcome!

Print this item

  Lego dinosaur parts
Posted by: Sloan - 2022-03-24, 22:32 - Forum: Part Requests - No Replies

can anyone point me in the direction of any lego dinosaurs? particularly the "Raptor10" Big One that appears in Jurassic Park Velociraptor Chase?

Print this item

  LDraw All-In-One-Installer 2022-02 v1 now available
Posted by: Willy Tschager - 2022-03-24, 20:31 - Forum: LDraw.org Announcements - Replies (1)

An updated version of the LDraw All-In-One-Installer, in short AIOI, containing the LDraw Parts Library update 2022-02 with 366 new files (including 196 new parts and 12 new primitives) has been released.

The AIOI supports Windows XP (Home and Pro), Windows Vista or higher (all versions). There are two installer files available: Use the 64 Bit AIOI to install all the main 64 Bit programs, while the older 32 Bit programs are offered in a separated .exe file. Please note that only the 64 Bit version contains the LDraw Parts Library. If you want to use the 32 Bit programs it is mandatory that the library has been installed previously. The Installer will NOT run on Windows 95, 98, ME, NT Ver 4, 2000, or XP below SP2.

It contains the following changes:

* Update to Parts Library 2022-02
* Update to MLCad.ini 2022-02
* Update to Offline Parts Catalog 2022-02
* Update to LDView 4.4.1

You can download the AIOI from:

LDraw.org >> Help >> Get Started >> Windows >> LDraw All-In-One-Installer

Many thanks to all the programmers who contributed to this release.

Willy Tschager
(LDraw.org Content Manager)

Print this item

  Axle primitives incompatibility with HD primitives
Posted by: Max Murtazin - 2022-03-23, 7:43 - Forum: Official File Specifications/Standards - Replies (12)

Recently I have noticed that some axle primitives are incompatible with HD circular primitives. On almost any model using axle primitives have holes show up in some places. Probably, we can introduce series of HD axle primitives that would match the HD circular primitives?
   

Print this item

  Selecte same height
Posted by: Jaco van der Molen - 2022-03-23, 6:45 - Forum: LDraw Editors and Viewers - Replies (4)

Hi all,

In LDCad it is possible to select a part and then select same part, same part and color, same color, same step...

But now I am looking for a way to select all parts that are at the same height, i.e. y-coordinate.

@Roland: I'd like to suggest that for a next version?

For now: can this be done with a script?

Thanks!

Jaco

Print this item

Thumbs Up Part request: 78c13
Posted by: Thom Kok - 2022-03-20, 20:45 - Forum: Part Requests - Replies (13)

I was not able to find 78c13 on the parts tracker and would like to use it in my Rock Raiders Power Station moc. I would like to request 78c13.

Print this item

  The Lego and Batman Movie minifigs parts
Posted by: Sloan - 2022-03-19, 19:29 - Forum: Part Requests - Replies (13)

hello i am in need of some headgear from the legomovie and lego batman movie.

36853pb01 LEGO Batman Reggae man batsuit cowl.

28149pb01 lego batman movie Dick Grayson hair piece

28149pb02 Lego Batman Movie Robin hair piece

15864c01pb01 Lego movie Lord Buisiness helmet

Print this item