Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

pboachie

Members
  • Content Count

    7
  • Joined

  • Last visited

Posts posted by pboachie

  1. Hello there. I made a small little code that would turn on and off a wireless reciever from WR-CBE Logic. It used to work and then it just stopped. Is there something missing?

    local term = require("term")
    local component = require("component")
    local rs = component.redstone
    
    print("Enter Freq")
    term.write("Freq: ")
    x1 = io.read()
    freq = tonumber(x1)
    
    rs.setWirelessFrequency(freq)
    rs.setWirelessOutput(true)
    os.sleep(3)
    rs.setWirelessOutput(false)
    
  2. Description:

    I wanted to make a simple chat program where players can chat with each other as long as they have the program. So like IRC but only for people with the program

     

    Function:

      Users are able to set their name and join the chat.

     

    Deadline:

     N/A

     

    Additional Information:

      None but simply ask me if you have other questions

     

    Thank you in advance!

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.