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

webbster64

Members
  • Content Count

    6
  • Joined

  • Last visited

Posts posted by webbster64

  1. what you also and do is add multi user register as well as access limiting like level 1 to level 3 door access 

    and also user logging eg. (door name, door access level, player name)

     

    if i may all take a look and see what i can do to add this, but its still a cool program thanks for sharing 

  2. i managed to fix the top code

    local drone = component.proxy(component.list("drone")())
    local modem = component.proxy(component.list("modem")())


    --local d = component.proxy(component.list("drone")())
    --local t = component.proxy(component.list("tunnel")())
    while true do
      local evt,_,sender,_,_,name,cmd,a,b,c = computer.pullSignal()
      if evt == "modem_message" and name == drone.name() then
        if cmd == "gst" then
          modem.send(drone.name(),"gst",drone.getStatusText())
        end
        if cmd == "sst" then
          modem.send(drone.name(),"sst",drone.setStatusText(a))
        end
        if cmd == "mov" then
          drone.move(a,b,c)
        end
        if cmd == "gos" then
          modem.send(drone.name(),"gos",drone.getOffset())
        end
        if cmd == "gve" then
          modem.send(drone.name(),"gv",drone.getVelocity())
        end
        if cmd == "gmv" then
          modem.send(drone.name(),"gmv",drone.getMaxVelocity())
        end
        if cmd == "gac" then
          modem.send(drone.name(),"ga",drone.getAcceleration())
        end
        if cmd == "sac" then
          drone.setAcceleration(a)
        end
        if cmd == "glc" then
          modem.send(drone.name(),"glc",drone.getLightColor())
        end
        if cmd == "slc" then
          drone.setLightColor(a)
        end
        if cmd == "dct" then
          local b, s = drone.detect(a)
          modem.send(drone.name(),"dct",b,s)
        end
        if cmd == "cmp" then
          modem.send(drone.name(),"c",drone.compare(a))
        end
      end
    end

     

    but i just cant get it to work with te bottom part of the script

     

×
×
  • Create New...

Important Information

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