Posted 06 March 2013 - 02:31 PM
I'm writing an email program, nothing special. It's actually really simple.
1.) I need away for the id in line 5 to actually be the variable id, not just nothing that means anything
2.) I need away for the variable message to be able to have spaces, so more like an input type deal.
If anyone can help, it would be greatly appreciated! Please!
local args = {...}
local id = tonumber (args[1]) or 1
local message = args[2] or "a" -- I don't actually know what I'm suppoed to put for a
rednet.open ("right")
rednet.send (id, message)
I have two main problems:1.) I need away for the id in line 5 to actually be the variable id, not just nothing that means anything
2.) I need away for the variable message to be able to have spaces, so more like an input type deal.
If anyone can help, it would be greatly appreciated! Please!