DarkPikachu 3 Posted July 26, 2015 Share Posted July 26, 2015 for those of you who want to use your favorite IDE, this script was designed so you could: 1) save your script from Sublime Text (or whatever IDE you use) 2) wait a few seconds for copy to update the file 3) reboot your PC, server, robot, drone, etc. the script will read the contents of your copy script from the (supplied) URL and dynamically execute the script while booting the device. script: local net = require("internet") local url = "https://copy.com/RyWyWEm8DCRzoKSt" -- edit with your script's shared link local script = "" for line in net.request(url.."?download=1") do script=script..line end load(script)() EDIT:this currently only works as a script execution, it does not work on an EEPROM. I'm looking into the code for TitanBios to see if I can get this working. Quote Link to post Share on other sites