Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

Michiyo

Moderators
  • Content Count

    83
  • Joined

  • Last visited

  • Days Won

    32

Posts posted by Michiyo

  1. there's a "printer.obj",there's even a "printer - Copy.obj"

    the problem seems to be that forge can't load the model

    and what is the printer.mtl?

     

    edit : renaming the printer - Copy.obj to printer.obj (and removing the original printer.obj) doesn't fix it,the problem isn't caused by the model itself but seems to be a code problem,on which version of forge this mod have been done?

    maybee the way forge load model changed since

    Built on 1.7.2-10.12.1.1060, nothing has changed in the model loader class.  Also http://puu.sh/8penP.jpg  1.7.2 forge 1060

  2. Hello all, I'd like to announce a new addon for OpenComputers: OpenPrinter!  I was stuck using CC's printer and a adapter to print stuff with OC, so I set about to write a printer exclusively for OpenComputers.
     
    1.6.4: build.png
    Source: https://github.com/PC-Logix/OpenPrinter/tree/master

    1.7.2/1.7.10: build.png
    Source: https://github.com/PC-Logix/OpenPrinter/tree/1.7
     
    1.7.2 builds work with 1.7.10 with no issue.
     
    Builds 73+ are MC 1.7.10 and OC 1.4+ compatible and will not work with earlier versions of either.

    Builds 120+ are MC 1.7.10, and require OC 1.5+
     
    Downloads:

    https://minecraft.curseforge.com/projects/OpenPrinter
    Also, the mod has a auto update checker, like most mods, but this one is based on the M.U.D of Battlegear2 mod, and includes the ability to download updates to the mod from within the game. (restart still required)


    A Printed page:
    ss (2014-04-15 at 08.43.02).jpg
     
    Recipes:
    The Printer:
    ss (2014-04-14 at 04.18.22).png
    4 Iron Ingot,
    2 tier 1 ICs,
    2 Redstone,
    1 PCB.
     
    Color Ink Cartridge:
    ss (2014-04-14 at 06.03.28).png
    1 Rose Red,
    1 Cactus Green,
    1 Lapis Lazuli
    1 Iron Ingot.
    100 uses by default, changeable in the config.
     
    Black Ink Cartridge:
    ss (2014-04-14 at 06.04.00).png
    3 Squid Ink
    1 Iron Ingot
    100 uses by default, changeable in the config.
     
    Ink Refill recipe, use the proper recipe above, but replace the iron nugget with a partially used ink cartridge.
     
    Printer Paper Roll (256 sheets of paper in one item)
    ss+(2014-10-16+at+08.18.32).png
    4 stacks of 64 Minecraft Paper
     
    Methods:

    op = component.openprinter
    op.writeln("String", [0xHEXCOLOR], ["center"])
    

     
    Color, and center are optional, format is 0xRRGGBB, using this will add one use of your color ink cartridge, center will attempt to render the string in the center of the page, instead of left justified.  you CAN use Minecraft's chat formatting control codes with calls to writeln, http://minecraft.gamepedia.com/Formatting_codes  EACH CALL to a COLOR set will add one use of the color ink cartridge, calls to format codes will NOT.

    op.setTitle("String")

    Sets the "name" of the printed page, this also effects the item display in your inventory, never forget which page is which!

    op.getPaperLevel()

    Returns the amount of paper in your printer, 0-64 for Normal MC paper, or 0-256 for a paper roll.

    op.getColorInkLevel()
    op.getBlackInkLevel()
    

    returns the number of uses left in the ink cartridge 0-100 (default)

    op.clear()
    

    Will clear everything set by previous calls to op.writeln()

    op.print()

    Calling this method will print all previous calls to writeln to the printer.

    op.printTag("String")

    will print data to a Name Tag, op.printTag("Dinnerbone") and op.printTag("jeb_") :D
    This can be disabled via the config because this usually costs XP to set, using this method it is free.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.