Posted 01 October 2016 - 03:49 PM
Hi Guys!
I am going to show you all how to spoof ID's in ComputerCraft
You might have been wanting to change ID's to either trick rednet or just for fun.
Since the rednet API uses os.getComputerID() to get the ID we can just overwrite os.getComputerID()
Code:
Thanks!
I am going to show you all how to spoof ID's in ComputerCraft
You might have been wanting to change ID's to either trick rednet or just for fun.
Since the rednet API uses os.getComputerID() to get the ID we can just overwrite os.getComputerID()
Code:
os.getComputerID = function()
return 1 -- Change this to the ID you want to be
end
Thanks!