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

Dustpuppy

Members
  • Content Count

    75
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Dustpuppy

  1. Have done some work on the gui. Most internal, but also put in a vertical slider, a chart and some other elements. Download link is the same as allways. Here's an overview of all functions. I will do a proper documentation, if i find the time, but i think my code is good enough to understand it.
  2. It's because ur using MC 1.10.2 The names of the blocks are changed in Open security, compared to MC 1.7.10. I will redo the programs with the new names for MC 1.20.2 if i find the time. At the moment i am working on my gui.
  3. I's ok. Find out that i am an idiot. Solved it :-)
  4. How do i access the player or the world object? If i do : local component = require("component") print(component.debug.getPlayer("Dusty")) all i get is li.cil.oc.server.component.DebugCard$WorldValue@329065a No Idea how to work with the debug card in the right way to get players coordinates.
  5. Hi, does anyone know, how i can locate a player? The problem (or challange) is, that the position of everything will change it self. It's for a Advance Rocketry warp ship and the absolute coordinates in the world (space) will change, as soon as the ship moves. That means, that really everything on the ship will change it's position. Also every scanner, sensor and the computers. Working with absolute coordinates is not possible.
  6. During coding a transporter system for RF Tools i found a little error in the list part. Corrected it and uploaded again. Same Pastebin then before.
  7. Do u have a link to the github, where i can find your code?
  8. You can connect a button to the bottom side of the computer. It checks if a redstone signal is changed and toggles the door then.
  9. Will check this, when i have time. Do you have the code of your program?
  10. I have updated the lib. Now it has charts and some file handling for saving tables. The documentation for the functions i do later. At the moment i am moving house and i have not that much time. Download link is still the same. To see all features i've made a program to control passive reactors with up to 25 rods. http://pastebin.com/2xEFeZC9
  11. What kind of bug? Can't find, what you mean.
  12. Good idea. At the moment i don't have time to play or for coding. If you want, make the lib bigger, or make some extentions. As soon as i have time again, i will see, what i can do :-)
  13. Here's the code of the screenshot. local component = require("component") local gpu = component.gpu local gui = require("gui") local prgName = "Gui-lib v" local version = gui.Version() function exitButtonCallback(guiID, id) local result = gui.getYesNo("", "Do you really want to exit?", "") if result == true then gui.exit() end gui.displayGui(myGui) end myGui = gui.newGui(2, 2, 78, 23, true) exitbutton = gui.newButton(myGui, "center", 21, "exit", exitButtonCallback) label1 = gui.newLabel(myGui, 2, 1, "A label") label2 = gui.newLabel(myGui, 2, 3, "A colored label", 0xFF0000, 0x
  14. I am working on a new Version. Can take a bit time.
  15. 1. Minimum is t1, if you use normal network cards. Only the userdb system needs a tier2 screen, because of the gui. 2. You can use it where ever you want, if you will not make money with it. ;-)
  16. It displays the address of the sender:port:action:info
  17. Was not as complicated as i thought. TheCryptek, here is your request :-) Just replace the mag card reader with a rfid reader and use this script. local accessLevel = 2 local cryptKey = {1, 2, 3, 4, 5} local modemPort = 199 local scanRange = 4 local component = require("component") local gpu = component.gpu local event = require("event") local ser = require("serialization") local term = require("term") local door = component.os_door local rfidreader = component.os_rfidreader local modem = component.modem local function convert( chars, dist, inv ) return string.char( ( string.by
  18. I am not sure, what you mean. You can see at the server screen all infos. If access is granted, or denied and why. I will have a look, when i find the time.
  19. And one more. As you see, i have nothing to do at the moment ;-) Insert radio buttons. Now it's enough. I have no idea what else is missing. If you have ideas let me know.
×
×
  • Create New...

Important Information

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