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

Molinko

Members
  • Content Count

    451
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Molinko

  1. I like this idea.. Maybe a set of cables would be good, such as... Network cable: only network messages would pass through. Power cable: ... Component cable: ... Custom cables: any combination of cable in one. Made by crafting any or all types of base cables together in desired functionality.
  2. Take a look at skex bios by shadowcat. Its a small bios for microcontrollers with an event system api built in. Works well enough. Or if you're up to it you should have access to the computer api with pullSignal and pushSignal for event binding
  3. It might be that when unbinding, the previous screen is clearded...
  4. Would someone mind showing me a basic example of using Magik6 network utility. Maybe a basic 3-5 node network demo?? or maybe just some sample api usage.. thx
  5. Molinko

    Lua minifier

    the closest thing to what you want that is available is miniOS or even skex bios. both are smaller lightweight. skex is particularly great for microcontrollers
  6. edit: i need to think about it management script: local arg = ... local process = require "process" local component = require "component" local RF_BUFFER_MIN, RF_BUFFER_MAX, running = 1000000, 9000000, false local REACTORS = {} -- // your list of reactors in the for loop of program local thisProcess if arg == "-s" then if running then error("program already running!") end -- // process.load will feed this programs environment or local scope to your program, thus, -- // defining component and rf buffer limits in here so we can change them if we get more complex later. thisProcess =
  7. To simply make this loop run forever you can simply wrap up the current code in a while loop. local component = require("component") --// just a tip. especially if running in the background, -- if you're not sharing this variable with other programs... localize it.. local RF_BUFFER_MAX = 9000000 local RF_BUFFER_MIN = 1000000 local running = true -- set to false to kill the program while running do -- your code for _, reactor in pairs(REACTORS) do if reactor.getEnergyStored() >= RF_BUFFER_MAX then reactor.setActive(false) print("Reactor is offline") else if reac
  8. Part of the reason you can't detect newline characters is because your data variable will only ever be one char where the newline pattern is a 2 char string. As for the rest I don't see the point of reading files with a custom lua func. The java Scala background can do this better than the ingame lua interpreter.. Reason?
  9. This is awesome! Can i rip through you code for this??
  10. Molinko

    skex-BIOS

    Happy to help thanx the for the cred on your page. Its then little things:)
  11. Molinko

    skex-BIOS

    I noticed v 1.1. I really like the event functions you implemented. I've come upon a bug in skex. 1.insert code into buffer from client 2.execute the buffer 3.clear the buffer 4.re-enter insert mode and enter a line into buffer. 5.crash- dont know why... Thanks for skex. I'm learning a lot from your stuff
  12. Are microcontrollers not supposed to have access to adjacent components?? I have been truing to get the motion sensor to work with the microcontroller teirs 1 and 2 and neither seem to be up to the job? Is this intended? And if so, WHY :'( ? Also, if it is a matter of balance. Could we maybe think of adding access to adjacent components if the microcontroller was built with a component bus? Similar to the old OC versions of computers or the current OC servers.
  13. Molinko

    skex-BIOS

    I like it! It took me a little while to figure out how to commit line changes and enter some working code but all in all this is fantastic! I think ill write something similar but a bit more easy to use. Maybe just a proper client will do. Also adding a little more help on how to use all the functionality with some examples would be very helpful. Thanks for this I made a small change to the client to fix a bug aswell.
  14. Molinko Age: 26 In-game name: Molinko IRC: Molinko I've been wanting to join a server with other programmers / aspiring programmers to help and learn more about programming and just to make cool stuff in general. K, thx, bye.
  15. You want to look at the component GPU methods on the wiki. Particularly the GPU.set and GPU.fill methods
  16. What are the minimum requirements to make a boot able medium. What files are required? Do they need a certain name? How do you go about making a very small shell and what is the minimum required to start that? Suggestions, tips, advice, halp... All welcome, thanks.
  17. Your code actually is very concise and readable. Don't beat yourself with that crowbar.. I have a small button api I'll upload for you soon. At work ATM.
  18. I think the problem might be in example 2 where the monitor is connected through the switch and a network cable from the same computer as said monitor is also connected to the switch. All component blocks act as network cable with the exception being power distributors, server racks on the internal setting, and 1 more thing I'm probably forgetting.. Let me know if I could be clearer..
  19. happy to help. honored really. this map looks like you've bled for it
  20. Slots are ordered 1,16 with one inventory upgrade. the first row being slots 1-4. crafting takes place in slots 1-3,5-7,9-11. The other slots are for the relevant materials to be used. the other nine slots remain open for valid crafting recipes
  21. Look here for all the documentation on the screen and gpu components. Basically you will have to bind the gpu to the relevant screen you want to manipulate and call the functions available in the gpu library to manipulate the monitor for drawing and setting text. i.e local component = require "component" local gpu = component.gpu -- you must have a gpu installed in your computer! This is the primary if there is more then one. It is bound by default to the fist screen it finds. gpu.set( 1,1,"Hello world" ) gpu.fill(2,2,4,4,"+") gpu functions
  22. Hmmm. That is a problem huh.. The first idea I have would actually involve coroutines like you suggested so sorry for not answering your initial question directly.. Didnt mean to make you go through hoops for help.. It seems like you need a call and response stack of some sort to manage connections. Here is what I know about coroutines in lua.. -- coroutines are made with functions like so local co = coroutine.create( function() print( "doing stuff" ) end ) coroutine.resume( co ) --> "doing stuff" coroutine.resume( co ) --> "error: cannot resume a dead coroutine" --shit.. --[[ basical
  23. Even better! You sneaky wizard you... I cant wait to check it out, I noticed your holoogram handy work on another post and couldnt wait to get more details on what it was about. Lemme know if you wan beta testers or something . Also, in the photo with the hologram and the two screens with "The breach"; will that hologram draw out the player created jaunt points??
  24. This is frickin' awesome! If you're feeling up to it would you make a short video of your world and your program. They're both beautiful
×
×
  • Create New...

Important Information

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