This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
camadas's profile picture

redstone.testeBundledInput problem

Started by camadas, 08 January 2014 - 11:48 AM
camadas #1
Posted 08 January 2014 - 12:48 PM
Hi, If i try to print direct the redstone.testeBundleInput


print(redstone.testBundledInput ("right", colors.orange))

It will tell me that is false AKA is not running.

But if I try to pass is to a variable, i get "attempt to call nil"


  local cor = redstone.testeBundledInput ("right", colors.orange)
  print(cor)

what I'm doing wrong in here?
gollark8 #2
Posted 08 January 2014 - 12:50 PM
It's doing that because your spelling is wrong.
Imprivate #3
Posted 08 January 2014 - 12:57 PM
  local cor = redstone.testBundledInput ("right", colors.orange)
  print(cor)
you put an 'e' after 'test' :)/>
camadas #4
Posted 08 January 2014 - 12:59 PM
-.- thanks guys, test = teste on my languange hehe thats why I didn't even notice hehe