Posted 20 July 2013 - 02:01 PM
I am trying to make a simple program that will set the discs description. I have the following:
Help please :)/>
local drive_side = "bottom" -- Choose the side your drive is on
disk = peripheral.wrap(drive_side)
print("Description Maker V1.0")
print("----------------------")
sleep(1)
print("Type Description then Press Enter")
description = read()
disk.setLabel(drive_side, description)
print("Completed")
Help please :)/>