What I want to do is "change" my computers ID in a quick "chat program" I wrote.
Code of the fist computers startup:
os.getComputerId = function() fakeId = 9 return fakeId endChat program code:
First computer:
rednet.open("top")
local input = read()
rednet.send(1, input)
Second computer chat code:while true do id, message = rednet.receive() print(id..":"..message) endBut it just prints the real ID. Any help?
Edited by mrpoopy345, 11 December 2013 - 04:12 PM.











