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

meigrafd

Members
  • Content Count

    29
  • Joined

  • Last visited

Everything posted by meigrafd

  1. Cool OS - but many Programs like 'Geoscan', 'Holoclock' etc. are currently still in Russian-Language
  2. I think that the current state with a Computer-Case with Slots for RAM etc is already a combination of Mainboard+PSU+Case, just easier to handle But what you mean are the difference between CD, USB and Multicore-CPU apart of the texture?
  3. I guess Robot's crafted out 'Creative Computer Case' doesnt need Power
  4. Next time hit the EDIT button on the bottom-left of your Post and change everything you need.. That whould be better. As i posted in your other Thread: In /bin/ you find all Programs you can run. For a general help type helpFor a Help from the Program type E.g.:rm Please post a Screenshot.
  5. Its the same behavior like with Unix / Linux: cd bin ls cd .. cd lib cd /
  6. I've coded a simple methode with ComputerCraft to export all Items with a damage value of >= 6 : http://pastebin.com/NbC59sfW But with OpenComputers i still not have a working way
  7. Hello. Is it possible to add to next OC Version a Feature to edit a Database entry? I need to modify several Database Entries, but not over the .store() functions... Thanks!
  8. No. As i sayd: The Items have different damage values.. Well i can only add max. 81 entries to a Database but i have much more items with different damage values in my ME System (Uranium Rods are stackable but i have ~100 single stacks in the ME Network) The only idea i had was something with the inventory_controller or geolyzer but i dont know if the ME_Network can get handled like an Inventory? didnt tested that yet.. I need a way to add something to Database without extra peripheral.. something where i can directly access the Database and store/erase entries.... Does anyone k
  9. What is if you change 'binary' write-mode to normal? -> "w" instead of "wb" And does the directory 'bankAccounts/' exists? Add something like if not fs.isDir("bankAccounts") then fs.makeDir("bankAccounts") endbefore your loop..And btw: instead of using ev.pull("modem_message") inside of a loop you should use event.listen("modem_message", <yourfunction>) but after that you still need something so script doesnt quit -> a loop E.g.: if not fs.isDir("bankAccounts") then fs.makeDir("bankAccounts") end function messageReceived(event, localAddress, remoteAddress, port, se
  10. It was set to default and its max: 400 actually i have set it to 200 but on default the problem was there too.. That was just an example - i have more commands as only "off" Another example is, that the computer always sends a "ping" via broadcast and if a new client (robot) is in network it should get added to a GUI on computer.. but also this "pong" doesnt arrive allways but the robot doesnt repeats again... Maybe it get clear if you have a look to the code: Computer: http://pastebin.com/hfjT7e8s ...importend code for this begins @line 199 Robot: http://pastebin.com/FT4Uu
  11. Hm. The Problem is that i want to send Commands which the 'receiver' execute. It would be bad if the 'receiver' execute that Command more than one time only coz the 'sender' didnt know that his command got arrived... As example: I have a Computer with touch-screen. Now i click on a "OFF" button to tell Robot#1 to turn reactor off. The problem now is that this command not always arrives and i need to click it again... My idea now was to code something like a queue - a table with 'destinationAddress' and 'command' local commandQueue = {} remoteAddress = 'abcde-fghi...' commandQueue.remoteA
  12. Is there a way to verify that a modem_message was received? As i know a send() doesnt means that the message will 100% arrive - even like UDP. I want to send Commands over Wireless Network but need to be sure that it really arrive and if not to repeat sending it... like a command-queue or so.. An example code whould be helpful Thanks!
  13. Hi. Im searching for a methode to export damaged items from an AE2 Network. The Items have different damage values.. My situation: I have several Nuclear Reactor's which gets controlled by Robots. The Robot's sometimes drops not fully used Uranium Rods back into my AE2 Network to prevent explosion.. Im using a Quantum Network Bridge over 2 dimensions and have no ME_Controller where i want to export the damaged Items, so im using following Setup: - Adapter connected to a Computer. - ME_Interface placed on Adapter and connected to my AE2 Network. - right-clicked an Database
  14. I dont get it ... Where you mean should i right-(shift)click the upgrade ? //EDIT: Now i read it in the in-game-manual: right-clicking with the database in hand.
  15. I cant find Informations about how to add something to the Database component ... Only over the Inventory Controller store() but is there no other way?
  16. Which Informations needs to get add to the Database and how is the fastest/best/easiest way to add that?
  17. Solved: I must craft each Wireless card myself, else they dont get an unique address.
  18. I've also tested it with table.insert() etc but that did nothing change... But i now found out that all my Robots seems to have the same Address - how can that be? Does all wireless-cards have the same Address? Thought thats like a NIC mac and is always unique ? How can i change that?
  19. @Negi: If you/he do something wrong in /etc/rc.d/script.lua or in /etc/rc.cfg than the system will not boot anymore. So i guess its better to do it over /autorun.lua
  20. I have a strange behavior with an Table ... I have a Script which listens for 'modem_message' events and to get track about 'Clients' i have a same named Table where i want to add each client-robot to it... The Code looks reduced like: Real code: http://pastebin.com/hfjT7e8s The Problem is that 'rcount' doesnt get expanded. Its always same It receives a modem_message, so the event works - thats tested and is not the Problem. Also i know that #Clients can return the table length too but i have a good reason why i did it not that way (#tbl only works for numerical keys)
  21. The 'Creative' Computer-Case (tier 4) doesnt need Power.
  22. Well my english is bad so i hope its oke when i explain it in german? (coz your also from Germany) Ich hab einen Computer welcher als Wireless-Server fungiert und eine GUI bereitstellt.. Der Server pingt regelmäßig auf einem bestimmten wlan-Port via broadcast, also an "alle". Dann starte ich einen Client, welcher den PING empfängt, sich die serverAddress merkt und einen PONG mit weiteren Informationen zurück schickt. (sobald er die serverAddress gespeichert hat antwortet er nicht mehr auf den PING). Der Server soll dann eine weitere Zeile zur GUI hinzufügen, mit ON/OFF Butt
  23. Btw is it possible to generate lable / lablebox 's dynamic ? Something like: reactorTXT = {} reactorTXT[rcount] = gui.label(2,rcount,30,2,101,rgb.orange,rgb.black,nil,nil,txt) If i try that ill get an error 'not enough memory'
  24. Is there a way to get a list of all available / usefull basic functions which can be used? Maybe you can update the readme @ github or create a wiki? Thanks!
  25. Im currently not sure which Layout i should use: 1.: https://goo.gl/QQuazr 2.: https://goo.gl/nWW8wl 3.: https://goo.gl/dVs2nL Fastest sides are: front, up, down One of these i must use for Coolant. Maybe also as Trash/Drop to prevent explosion. But solong i use a Cable i loose one Side.. Now i saw in the API something about Get/Set the wireless redstone input. Whats that? How to use that?
×
×
  • Create New...

Important Information

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