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

Search the Community

Showing results for tags 'drone'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • OpenComputers
    • Announcements
    • Feedback
    • IRC
  • Code Central
    • Support
    • Showcase
    • Tutorials
  • Addons & More
    • Addons Mods
    • Architectures
    • OpenEngineering Task Force
  • General
    • Lounge
    • Forum Games
    • Showcase
    • Servers
  • Archives
    • Public Archives

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Minecraft


GitHub


IRC


Fediverse ID


Location


Interests

Found 18 results

  1. Once I wanted to automatically farm using OpenComputers. First I made robot, but 1.7.10's block update stutter made active robot annihilate framerate. Thus I opted for entity-based agent and made code to operate drone for autonomous farming. And now I decided to release the code for everyone to enjoy my work. Feel free to improve upon it, or use as is. Example setup: Inventory of active drone: Drone minimum components: Drone Case (Tier 1) Geolyzer Inventory Upgrade Central Processing Unit (CPU) (Tier 1) Memory (Tier 1) EEPROM wi
  2. Hi everyone, I'm trying to make a drone delivery service which works using pickup points. The drone departs at the warehouse, then it has to travel 28 THOUSAND BLOCKS to get to the spawn and from there it will either move to the next pickup point and drop off the order there or it will drop it off at the spawn and return to the warehouse. The only problem is that i need a navigation system to send the drone to chosen pickup point, and it will have to charge several times on its way. How would i do this, knowing that even the biggest map possible would not be enough to navigate from the wa
  3. Ok!!! Hello! So... I was going along. Coding more for the OpenComputer RFTools Dialing Program when I found out about DRONES! I immediately went and checked them out, and found out there "Basically the microcontrollers of robots." Witch I was sorta sad that you cant have a hard drive on them and so forth, Plus you only have a limited space in the bios that the drone runs on. Anyway, I wanted to find a way to run all the stuff remotely so the drone wouldn't have to do any of the processing. Like a separate computer would tell the drone what to do over a wireless network, but because I wanted i
  4. I did watch a video from YouTube. This video about an android app for drones in Opencomputers Mod. I want use this app but loader didn't give any link for download the app. I'm developing remote control app for drones with Sketchware but I don't know I where to start. I designed UI but how can I program it. Link of video mentioned in this topic
  5. So... I'm back...you know radars are expensive... that makes radar upgrades for each drone more expensive...which defeats the purpose of having a dispensable army. This is my attempt at fixing this issue: Instead of having each of your drone fly around with equipment worth half of the US military budget, why not have a single radar and a computer to tell the swarm where to buzz around?. Here's the new stuff that you need: a Waypoint block named "yeet" -- or something else if you want, just don't forget to change it in the code Radar block --from computronics a computer
  6. Hi, are you tired of your mundane minions? do you have a s@$# ton of drones and have no idea what to do with them? are you tired of havi- you know what here's the code for your Drone Army (I don't know what else to say to convince you that this is a program worth playing with): Le client.lua (this goes in your tablet): local component = require("component") local event = require("event") local serialization= require("serialization") local computer= require("computer") local modem = component.modem modem.open(2412
  7. I've been searching far and wide on the forums, and i have seen a single script so far that was supposed to get a Drone to follow the player, which I've painstakingly tried, I've went through anything i could think of, but the code did not seem to work. The post, which i am referring to: And so, i'd like to ask if anyone could help me code a script or anything like that of such nature, or point me to a post where this has been done and is working fine even now. would be highly appreciated. I'm also not sure if this is the right section to post such a request/question.
  8. Mystery

    Drone usage?

    Hello. I have recently decided to create an exploration drone which will scan the world using geolyzer and transfer data to the server via linked card (400 blocks range is not enough far for me). However, I have faced a major problem - linked card requires tier 3 slot. I was surprised even more when I have figured out that internet card, which is more powerful for my opinion, requires tier 2 slot. And now I am really confused: Is there at least any job in which drones are better than robots? Sorry for my English.
  9. Drone Tree Farmer - Introduction - This is an automatic tree farmer script for drones harvesting spruce wood in king size (2x2). Just place a chest next to the drone and 8 or more saplings in the first slot and it should be be able to go on forever. No coal is needed, no charge pads, the solar panel upgrade will power the drone. This is not the fastest way to get wood, but it's pretty cheap, easy setup and doesn't need maintenance. Built for: OpenComputers-MC1.10.2-1.6.2.7, Lua 5.2. Also works on OpenComputers-MC1.7.10-1.6.2.12-universal, Lua 5.2, othe
  10. Ok!!! Hello! So... I was going along. Coding more for the OpenComputer RFTools Dialing Program when I found out about DRONES! I immediately went and checked them out, and found out there "Basically the microcontrollers of robots." Witch I was sorta sad that you cant have a hard drive on them and so forth, Plus you only have a limited space in the bios that the drone runs on. Anyway, I wanted to find a way to run all the stuff remotely so the drone wouldn't have to do any of the processing. Like a separate computer would tell the drone what to do over a wireless network, but because I wanted i
  11. So, I've built a few programs here and there for OpenComputers (using the FTB - Beyond modpack) and I got curious about the drones. Started fiddling with them and quickly realized I was over my head. I've watched some tutorials here and there, read some posts from every corner of the internet and can not, for the life of me get the drone to do anything. Are there any tutorials anywhere on the internet that are up to date? Thanks in advance!
  12. I placed a drone in creative. Sneak+right click is failing to pick it back up, and I can't destroy it. What, if anything, am I failing to do here?
  13. With this eeprom you can send the drone any lua command via network message in port 123 and it will execute it and send the response as a broadcast in the same port (if there's no response you'll get a bunch of nil) local m = component.proxy(component.list("modem")()) m.open(123) local typ local data while true do while typ ~= "modem_message" do typ,_,_,_,_,data = computer.pullSignal() end local f = assert(load(data)) w,x,y,z = f() m.broadcast(123, w,x,y,z) typ = nil f = nil end
  14. I decided to work on the drones, and I tried to run this command in my processor for the DRONE: L = component.leash (RETURNED NOTHING) L.leash(5) [string "L.leash(5)"]:1: attempt to index a nil value (global 'L') And I tried the same thing with just the component: component.leash.leash(5) [string "component.leash.leash(5)]:1: attempt to index a nil value (field leash) And yes, I've tried both restarting the drone AND the computer, and even replacing it. Before you even ask: YES I HAVE THE LEASH UPGRADE.
  15. Hey guys, has somebody ever used the leash upgrade in drones? Can somebody tell me what i have to typ in so that the drone pick up a animal with a leash and fly with them in a circle or something like that? thx Bene
  16. So I built a drone, and finally managed to get a custom bios running for test purposes. The problem is that I can't seem to get it to sleep (so that a move command can finish). Each time I try, I get the following error: bios:6: attempt to call field 'sleep' (a nil value) The code I'm using is: --local os = require("os") local drone = component.proxy(component.list("drone")()) while true do drone.move(1,1,1) --print("zomgwtf") os.sleep(1) drone.move(-1,-1,-1) end (The print and require statements were leftovers of various debugging attempts.) There's got to be a way to slee
  17. Hi I'm trying to use a Drone as a M.A.L.P. (Mobile Analytic Laboratory Probe) and my problem is that even if i set the drone.move command to stop at the event horizon it goes through the gate, (which is good), but then it tries to immediately go to the point directly behind the sending gate, (which is not so good). How to I tell the drone to stop moving altogether so that it stops on the other side of the gate?
  18. I played around with drones today and just for fun I wanted to create some kind of bombing drone. To do that it would need to carry some payload to specified coordinates and "deliver" it there. The problem is the last part: Drones can't place blocks in midair and you can't give them an Angel Upgrade. Was that on purpose to make robots more powerful or is it an oversight?
×
×
  • Create New...

Important Information

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