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

Gorzoid

Members
  • Content Count

    111
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Gorzoid

  1. You can't access player inventory with just open computers, I believe Peripherals++ has a Player Interface component which allows you to interact with your inventory so you would need that installed, I think random things mod also had a block that acts as an ISidedInventory block for a players inventory.
  2. You kinda need give us more info, this post says almost nothing about what you are trying to do. item of what? if you mean a component then no the address is the only info you get on the component which you can see at the bottom of the item description. what function? "object" is not even a type in lua turning table to a string is just tostring(tbl) but I'm guessing that's not what you want...
  3. Is there any way to sleep until a signal is pushed? Atm I am using this: #define pullSignal(buffer) asm volatile(\ "1:\n\t" \ "STC p3, c0, %0\n\t" \ "BVS 1b \n\t" \ ::"m"(buffer)) to wait for a signal but when I do that the emulator starts using 70% of my cpu while running. I tried using "MRC p3, 0, r0, cr2, cr0" like you do in the tetris but that gives same amount of lag. Also would it be easy to link libc so I can use strcmp and such? I tried linking the compiled objects in newlib but it gives the error arm-none-eabi-ld: error: ../newlib-jarm-build/libc/string/lib_a-strcmp.o
  4. should have named your variables after presidents of united states, nothing describes the number of tanks needed better than "georgeWBush"
  5. It was working, it just spammed that alot, I didn't notice anything bad happening because of it. I got my code working to print a few x's on the screen and got your lua bootloader working. I didn't use -addrinfocmd as I am using windows and I only have arm-none-eabi on my raspberry pi which I build the roms on. anyway, good to see your still active
  6. Do you know why the emulator spams this error when you step/run? Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException Looking at https://github.com/SolraBizna/jarm/blob/master/src/name/bizna/ocarmsim/SimThread.java#L255 I don't see how addrInfoLock could be null unless the constructor threw an error which it didn't.
  7. This can be done the same way as irl gps using trilateration. Try converting computercrafts gps code into oc code.
  8. The only thing you can make read only is the eeprom, but that can't hold much data.
  9. Gorzoid

    Nanomachines

    Has anyone done anything with them? When they came out I played with em a bit but I found them too much work to be of any use, going through each input to find out what does what and repeatedly eating more nano machines untill you find a set with good inputs. So does anyone use them and made program for em or are they just a forgotten feature now.
  10. Gorzoid

    A question

    Devs get their special thingers #dev2win #scalaprejudice #luadevsmatter
  11. Gorzoid

    OCJam?

    Didn't something like this happen during better than minecon?
  12. How to destroy: drop in lava. How to wipe: shift right click(or just right click can't remember) and swap to unmanaged and back. I think you can also put it in crafting grid to wipe not sure tho
  13. Gorzoid

    Robot.move

    if your talking about drones it's robot.move(x,y,z) so robot.move(0,1,0) would go 1 block up
  14. World saves can be shipped with Resource packs as of 1.8 iirc and it automatically enables it. Should be much easier than what your planning here, the programs for modeling in for resource packs are much simpler and better than the one for open computers.
  15. I think I actually made a test version of what you are talking about, I never finished it but if I may start up MC and try make it again, it would work alot better
  16. or just give EEPROM's a seperate nbt tag saying what architecture it is for. and the CPU won't run EEPROM's from different architectures
  17. Try not to go too overkill with this, as someone may end it taking it as a challenge to crack it.
  18. I don't know what OETF is, could a moderator add a stickied post saying what this subforum is for.
  19. I guess I will try compile it on my virtual server and see if thats any better --Edit-- Nope get the same error
  20. Do I need any special gcc if I am compiling on an ARM machine? Or will normal gcc work for me, cus when I compile your jarmrom I get fatal error: 'sys/cdefs.h' file not found cdefs.h is for x64 and x86 architecture right?
  21. xD the "Pop-Up!" made me laugh. If someone is going to make this, it must include "Single Russian women in your local area!"
  22. what exactly are you putting in the prompt? what is the error you get, like comon give us something to work on we are not mind readers
  23. I first saw it in minecraft but I was not able to understand it, a bit later I started looking at the lua in garrys mod (and half life 2 mod with a lua framework) and that's when I started learning lua, I mostly just read and if I did not understand what something meant I would look it up e.g. pairs() function.
  24. and as i said, use the real internet to do this, I once tried to do this with a php server, posting data to send with the address to send to, and then the php stores it until the other computer sends get request to it. the php worked and because i am lazy i never finished it. I never make finished projects, only proof of concepts
  25. There is already a thing that does this, it's called the real internet and an internet card
×
×
  • Create New...

Important Information

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