Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script to use pocketPC from CCTweaked/ComputerCraft to control a turle
- -- written by craftersanonmoose
- -- version history
- -- version 0.1 3-2-23
- -- basic wasd controls for now
- -- wanting to add other predefined commands on turtles end as well
- -------------------------------------------
- rednet.open("back")
- event, commandChar = os.pullEvent("char")
- function sendCommand()
- rednet.send(19, commandChar)
- end
- while true do
- sendCommand()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement