Jump to content
Issues with Images is known, we are working on it. ×

nitrofurano

Eurobricks Citizen
  • Posts

    169
  • Joined

  • Last visited

Everything posted by nitrofurano

  1. 623 - White Car and Camper [1970] http://bricksafe.com/pages/nitrofurano/623_whitecarandcamper errors: none (please help verifying)
  2. because i’m not totally sure if they are really misplaced (i really need help there... :S ), and in most cases they are related to maxifig arms, which are quite difficult to have them placed properly (these parts are mostly a bit “out of grid” and quite difficult to verify if they are fitting right) - what really helps is having a kind of ready template for copying from and saving some time in the process, but improving it is a kind of ongoing process (which i’m always trying to constantly improving my efficiency on the process, just compare my last posts with my previous ones in their first versions! ;) ) - as i am constantly reviewing and updating everything i posted here, specially when you help notifying where the mistakes are - on the "errors" part i’m trying to notify the worst that can be expected, even if it can’t get confirmed
  3. 361 - Tea Garden Café with Bakers Van [1974] http://bricksafe.com/pages/nitrofurano/361_teagardencafewithbakersvan errors: missing stickers;
  4. 211 - Mother with Baby and Dog [1976] http://bricksafe.com/pages/nitrofurano/211_motherwithbabyanddog errors: missing wigs;
  5. 697 - Stagecoach [1976] http://bricksafe.com/pages/nitrofurano/697_stagecoach errors: none (please help verifying)
  6. 696 - Bus Stop [1976] http://bricksafe.com/pages/nitrofurano/696_busstop errors: missing "bus stop" traffic signal;
  7. 258 - Zoo with Baseboard [1976] http://bricksafe.com/pages/nitrofurano/258_zoowithbaseboard errors: missing minifig hats and hairs; wrong minifig head; misplaced minifigs arms (to be fixed soon); missing baseboard; missing flags; missing stickers;
  8. 620 - Fireman’s Car - 1978 http://bricksafe.com/pages/nitrofurano/620_firemanscar errors: none (please help verifying)
  9. btw, i have some few dozens started, about to be "minimally" ready soon (that peeron template download script i posted somewhere in this forum helped a lot! :D ) would be great if we could have a kind of .ldr database, and see the "requests" from there anyway, i started something using google spreadsheets, but that is still hugely far from minimally organized... :S (i need to add there everything posted in this thread, and everything about to be modeled)
  10. thanks! (overtime i’m trying to avoid those mistakes i made previously, and progressively fixing them as well! :) )
  11. 316 - Farm Tractor [1964] http://bricksafe.com/pages/nitrofurano/316_farmtractor errors: none (please help verifying)
  12. 331 - Dump Truck [1967] http://bricksafe.com/pages/nitrofurano/331_dumptruck errors: none (please help verifying)
  13. 345 - House with Mini Wheel Car [1969] http://bricksafe.com/pages/nitrofurano/345_housewithminiwheelcar errors: none (please help verifying)
  14. 372 - Tejas Rangers [1977] http://bricksafe.com/pages/nitrofurano/372_tejasrangers errors: missing stickers
  15. 212 - Scooter [1976] http://bricksafe.com/pages/nitrofurano/212_scooter missing maxifig wigs (do official .dat of them exist?);
  16. 609 - Aeroplane [1972] http://bricksafe.com/pages/nitrofurano/609_aeroplane errors: none (please help verifying)
  17. 620 - Fire Truck [1970] http://bricksafe.com/pages/nitrofurano/620_firetruck errors: none (please help verifying)
  18. 293 - Piano [1973] http://bricksafe.com/pages/nitrofurano/293_piano errors: missing stickers;
  19. 606 - Ambulance [1978] http://bricksafe.com/pages/nitrofurano/606_ambulance errors: missing stickers
  20. 646 - Mobile Site Office [1971] http://bricksafe.com/pages/nitrofurano/646_mobilesiteoffice errors: none (please help verifying)
  21. 683 - Articulated Lorry [1971] http://bricksafe.com/pages/nitrofurano/683_articulatedlorry errors: none (please help verifying)
  22. 350 - Spanish Villa [1971] http://bricksafe.com/pages/nitrofurano/350_spanishvilla errors: missing tree; probably used wrong parts (made using an incomplete instruction documentation found from google picture search - toysperiod server is not working properly, and i can’t find it elsewhere);
  23. 393 - Norton Motorcicle [1976] http://bricksafe.com/pages/nitrofurano/393_nortonmotorcycle errors: wrong tires; 4 wrong black 1x2 bricks (missing holes); missing stickers;
  24. based on this script i improved it for creating a .ldr template from peeron.com online database we just need to enter something like sdlBrt templatefrompeeronwebsite.sdlbas 293-1 and then the script downloads the respective peeron.com webpage ( http://peeron.com/inv/sets/293-1 in this case - i'm only using peeron for now, it seems far easier for extracting information ), extracts the parts inventory information from there, creates a .ldr file, and opens LeoCad with that curl (for downloading the webpage, weirdly wget doesn’t work) and grep (for "cleaning" the html page) are needed as dependency (on Ubuntu and Debian, grep comes preinstalled, curl needs to be installed, like from "sudo apt install curl") - cat and rm are very known gnu-tools! ;) model$="210-1" '- default model used when no model is added in the command line argument if argv(2)<>"" then: model$=argv(2):end if shell("curl http://www.peeron.com/inv/sets/"+model$+" > tmp1.html") shell("cat tmp1.html | grep td | grep href | grep part > tmp2.html") shell("rm tmp1.html") finp$="tmp2.html" function lstinf$(a$,b$,c$) adra=1:adrb=1:blngt=len(b$):d$="" while adrb<=blngt if mid$ (a$,adra,1)=mid$ (b$,adrb,1) then:adrb+=1:end if adra=adra+1 end while while mid$(a$,adra,1)<>left$(c$,1) d$=d$+mid$(a$,adra,1):adra=adra+1 end while lstinf$=d$ end function fout$=model$+".ldr" open finp$ for input as #1:open fout$ for output as #2 dst=100:vamt=0 while eof(1)=0 setcaption(finp$+"line:"+str$(vamt)) file input #1,trln$ trln$="> "+trln$+" 0 0 0 " amnt$=lstinf$(trln$,"><td>","<td>") prtn$=lstinf$(trln$,"><td><td><td><a>","<a>") clrk$=lstinf$(trln$,"><td><td><td><a><a><td><td>","<td>") v2=val(amnt$) '----- this list is still way incomplete '----- old solid colours: 0..2,4,7,14..15, if lcase$(clrk$)="black" then:clrk$="0":end if if lcase$(clrk$)="blue" then:clrk$="1":end if if lcase$(clrk$)="green" then:clrk$="2":end if if lcase$(clrk$)="red" then:clrk$="4":end if if lcase$(clrk$)="grey" then:clrk$="7":end if if lcase$(clrk$)="oldgray" then:clrk$="7":end if if lcase$(clrk$)="lightgray" then:clrk$="7":end if if lcase$(clrk$)="yellow" then:clrk$="14":end if if lcase$(clrk$)="white" then:clrk$="15":end if if lcase$(clrk$)="multi" then:clrk$="15":end if '----- translucent colours: 33..47,52,54,57, if lcase$(clrk$)="transdarkblue" then:clrk$="33":end if if lcase$(clrk$)="trdkblue" then:clrk$="33":end if if lcase$(clrk$)="transgreen" then:clrk$="34":end if if lcase$(clrk$)="trgreen" then:clrk$="34":end if if lcase$(clrk$)="transbrightgreen" then:clrk$="35":end if if lcase$(clrk$)="trbtgreen" then:clrk$="35":end if if lcase$(clrk$)="transred" then:clrk$="36":end if if lcase$(clrk$)="trred" then:clrk$="36":end if if lcase$(clrk$)="transdarkpink" then:clrk$="37":end if if lcase$(clrk$)="trdkpink" then:clrk$="37":end if if lcase$(clrk$)="transneonorange" then:clrk$="38":end if if lcase$(clrk$)="trneonorange" then:clrk$="38":end if if lcase$(clrk$)="transverylightblue" then:clrk$="39":end if if lcase$(clrk$)="transblack" then:clrk$="40":end if if lcase$(clrk$)="trblack" then:clrk$="40":end if if lcase$(clrk$)="smoke" then:clrk$="40":end if if lcase$(clrk$)="transmdediumblue" then:clrk$="41":end if if lcase$(clrk$)="trmdblue" then:clrk$="41":end if if lcase$(clrk$)="transneongreen" then:clrk$="42":end if if lcase$(clrk$)="trneongreen" then:clrk$="42":end if if lcase$(clrk$)="translightblue" then:clrk$="43":end if if lcase$(clrk$)="trltblue" then:clrk$="43":end if if lcase$(clrk$)="translightpurple" then:clrk$="44":end if if lcase$(clrk$)="trltpurple" then:clrk$="44":end if if lcase$(clrk$)="transpink" then:clrk$="45":end if if lcase$(clrk$)="trpink" then:clrk$="45":end if if lcase$(clrk$)="transyellow" then:clrk$="46":end if if lcase$(clrk$)="tryellow" then:clrk$="46":end if if lcase$(clrk$)="transparent" then:clrk$="47":end if if lcase$(clrk$)="transclear" then:clrk$="47":end if if lcase$(clrk$)="trclear" then:clrk$="47":end if if lcase$(clrk$)="clear" then:clrk$="47":end if if lcase$(clrk$)="transpurple" then:clrk$="52":end if if lcase$(clrk$)="trpurple" then:clrk$="52":end if if lcase$(clrk$)="transneonyellow" then:clrk$="54":end if if lcase$(clrk$)="trneonyellow" then:clrk$="54":end if if lcase$(clrk$)="transorange" then:clrk$="57":end if if lcase$(clrk$)="trorange" then:clrk$="57":end if '----- recent solid colours: 3,5..6,8..13,16..20,22..23,25..31,92, if lcase$(clrk$)="darkturquoise" then:clrk$="3":end if if lcase$(clrk$)="dkturquoise" then:clrk$="3":end if if lcase$(clrk$)="darkpink" then:clrk$="5":end if if lcase$(clrk$)="dkpink" then:clrk$="5":end if if lcase$(clrk$)="brown" then:clrk$="6":end if if lcase$(clrk$)="darkgray" then:clrk$="8":end if if lcase$(clrk$)="dkgray" then:clrk$="8":end if if lcase$(clrk$)="lightblue" then:clrk$="9":end if if lcase$(clrk$)="ltblue" then:clrk$="9":end if if lcase$(clrk$)="brightgreen" then:clrk$="10":end if if lcase$(clrk$)="btgreen" then:clrk$="10":end if if lcase$(clrk$)="lightturquoise" then:clrk$="11":end if if lcase$(clrk$)="ltturquoise" then:clrk$="11":end if if lcase$(clrk$)="salmon" then:clrk$="12":end if if lcase$(clrk$)="pink" then:clrk$="13":end if if lcase$(clrk$)="maincolour" then:clrk$="16":end if if lcase$(clrk$)="lightgreen" then:clrk$="17":end if if lcase$(clrk$)="ltgreen" then:clrk$="17":end if if lcase$(clrk$)="lightyellow" then:clrk$="18":end if if lcase$(clrk$)="ltyellow" then:clrk$="18":end if if lcase$(clrk$)="tan" then:clrk$="19":end if if lcase$(clrk$)="lightviolet" then:clrk$="20":end if if lcase$(clrk$)="ltviolet" then:clrk$="20":end if if lcase$(clrk$)="purple" then:clrk$="22":end if if lcase$(clrk$)="darkblueviolet" then:clrk$="23":end if if lcase$(clrk$)="dkblueviolet" then:clrk$="23":end if if lcase$(clrk$)="orange" then:clrk$="25":end if if lcase$(clrk$)="magenta" then:clrk$="26":end if if lcase$(clrk$)="lime" then:clrk$="27":end if if lcase$(clrk$)="darktan" then:clrk$="28":end if if lcase$(clrk$)="dktan" then:clrk$="28":end if if lcase$(clrk$)="brightpink" then:clrk$="29":end if if lcase$(clrk$)="btpink" then:clrk$="29":end if if lcase$(clrk$)="mediumlavender" then:clrk$="30":end if if lcase$(clrk$)="mdlavender" then:clrk$="30":end if if lcase$(clrk$)="lavender" then:clrk$="31":end if '----- more recent solid colours: 68..?..92, if lcase$(clrk$)="verylightorange" then:clrk$="68":end if if lcase$(clrk$)="reddishbrown" then:clrk$="70":end if if lcase$(clrk$)="redbrown" then:clrk$="70":end if if lcase$(clrk$)="flesh" then:clrk$="92":end if '----- more recent solid colours: 100..?..503, if lcase$(clrk$)="lightsalmon" then:clrk$="100":end if if lcase$(clrk$)="ltsalmon" then:clrk$="100":end if if lcase$(clrk$)="mediumlime" then:clrk$="115":end if if lcase$(clrk$)="mdlime" then:clrk$="115":end if if lcase$(clrk$)="lightlime" then:clrk$="120":end if if lcase$(clrk$)="ltlime" then:clrk$="120":end if if lcase$(clrk$)="rust" then:clrk$="216":end if if lcase$(clrk$)="brightlightyellow" then:clrk$="226":end if if lcase$(clrk$)="btltyellow" then:clrk$="226":end if if lcase$(clrk$)="maerskblue" then:clrk$="313":end if if lcase$(clrk$)="darkorange" then:clrk$="484":end if if lcase$(clrk$)="dkorange" then:clrk$="484":end if if lcase$(clrk$)="verylightgray" then:clrk$="503":end if '----- special colours: 21,24, if lcase$(clrk$)="glowindarkopaque" then:clrk$="21":end if if lcase$(clrk$)="unknown" then:clrk$="24":end if '----- unknown if lcase$(clrk$)="mdstone" then:clrk$="24":end if '----- for l2=1 to v2 stou$="1 "+clrk$+" "+str$(vamt*dst)+" -24 "+str$((l2-1)*dst)+" 1 0 0 0 1 0 0 0 1 "+prtn$ print #2,stou$ next vamt=vamt+1 wend close #1:close #2 shell("rm tmp2.html") shell("leocad "+model$+".ldr") of course the script needs to be improved a lot! :D - but it is really a "productivity booster" for me, and all lego-cad developers are welcome on including it (or something like or far better than it! :D ) as feature or plugin, since the result is really a huge time saver! ;)
  25. 1607 - Trial Size Imagination [1987] http://bricksafe.com/pages/nitrofurano/1607_trialsizeimagination errors: none
×
×
  • Create New...