Advertisement
giwdul

display_methods_CC

Jul 7th, 2023 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. -- display in the term all methods in a compatible minecraft block (mekanism, drawer storage, chest)
  2.  
  3. -- it's difficult to find all the methods, but with this code you'll be able to do it - most of the time, the documentation simply doesn't exist.
  4.  
  5. p = peripheral.wrap("right")
  6. for k, v in pairs(p) do
  7.     print(k,v)
  8.     read()
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement