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

Lizzian

Administrators
  • Content Count

    250
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by Lizzian

  1. Waitt a minute, i'm not Sangar... OpenComputers 1.6.0 is out for MC 1.7.10, 1.8.9, 1.9.4 & 1.10.2 The long awaited 1.6.0 update is here! As always, remember to make a backup of your world before updating. Download on Curse. Changes: Added: Rack mountable floppy disk drive. Added: Ability to interact with some item inventories using the inventory controller. Added: Support for RotaryCraft power (uses same conversion ratio as AE2). Added: Possiblity to define a viewport on GPUs, allowing to copy data from off-screen for performance trickery. Added: Cables will now remember which color
  2. Hi all. On Saturday the 19th of November (roughly a week from this post) at approx. 1900 (GMT0) the forums will be undergoing maintenance and upgrades. The whole process should only take a maximum of 2 hours to complete and the forums will be completely unavailable during the process of the migration. (The forums will be in offline mode from 1845 in preparation for the migration of the data. As soon as I have finished moving the data and setting stuff up I will change the IP endpoint and bring them back online.) The forums will be moving to a new server as I am retiring the old server that
  3. The problem is that Reika makes all his blocks act like cables, thus even if you're directly connected to a machine using an adapter, the machine is still acting as a cable and connecting itself an any other Reika-block that it's touching (recursively) to the computer. If I remember correctly the issue has been reported to Reika before though he discarded it saying "it's not my problem"
  4. You could try with the wake on redstone / network stuff, not sure on the specifics of those though. Check the wiki
  5. Have you created an issue on the Issue Tracker? That is generally the better place for issues&crashes in OC itself
  6. have you put the internet floppy in the computer then ran the install program? that should give you a fairly strightforward menu to install the internet api to the system
  7. you can use the component.proxy() function by passing the UUID of the individual component you want to control, you can then use it like a normal component
  8. Your regulars may use non-premium accounts but please don't make it obvious on the forums please (if people ask in pm, you can tell them that it is there but not on the main topic) Also your images are broken.
  9. Lizzian

    Corrupt a wish

    Granted but it would cost you 100$ per wish I wish I had a TARDIS
  10. Vexatos would be your guy, I'll go poke him
  11. Unlocking this topic for people to ask questions about the new server. I'll make a new thread for it when I get aroudn to actually starting it up
  12. It's ported, you'll need to look for the "Internet" floppy disk. There is discussion on the issue tracker about how 'driver' programs should be handled, see https://github.com/MightyPirates/OpenComputers/issues/1866 for example
  13. If you're not worried about addressing individual squares (or at least, not easily), you could try: local Shapes = {} function CreateSquares( Values ) -- Where values is a table like so: { {x=2,y=2,w=3,h=3}, {x=3,y=4,w=5,h=2} } for i,v in pairs( Values ) do -- iterates over the table, so the first iteration: i would be 1 and v would be {x=2,y=2,w=3,h=3} local sq = glasses.addRect() sq.setPosition( v.x, v.y ) -- these reference the x&y variables in the table sq.setSize( v.w, v.h ) table.insert( Shapes, sq ) end end -- then call it like so. CreateSquares( { {x=2,
  14. You could use a table and then store them in that. So like: local shapes = {} function CreateSquares() shapes.SquareA = glasses.createSquare() ... end Obviously replacing bits with the actual code, I haven't dabbled much with Open Glasses so don't know it's functions.
  15. IIRC, in the world folder there should be an OpenComputers folder. Inside that there should be a folder that reads something like "state", if you go into there and delete the files the state will be reset (note, when you boot the world back up all pcs will be off and not persist, cause you deleted the state )
  16. Lizzian

    A question

    Wrong forum, moving to correct one.
  17. Does this server use any sort of world guard/protection?
  18. Lizzian

    Corrupt a wish

    But as a result you know everyones dirty desires I wish i could turn invisible Note: Derp
  19. @sharpturn & @ tim4242 https://github.com/MightyPirates/OpenComputers/tree/master-MC1.9 may be of use to you @joserobjr AFAIK Sangar is still mainly on 1.7.10 and just porting the changes over to 1.8/1.9
×
×
  • Create New...

Important Information

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