Advertisement
Guest User

Computercraft Pokedex Setup

a guest
Feb 6th, 2025
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.74 KB | Software | 0 0
  1. --setup for the pocket computer
  2. --See this git issue as to why this is so complicated: https://github.com/SirEdvin/UnlimitedPeripheralWorks/issues/48
  3. --[[Steps:
  4. 1: Grab/craft a pocket computer and one of the peripheral hubs from UnlimitedPeripheralWorks
  5. 2: With no other peripherals in your inventory, go to the pocket computer terminal, type equip and hit enter
  6. 3: With the environment scanner and a wireless ender modem in hotbar positions 1 & 2, run this program
  7. 4: Go back to your pocket computer terminal and type unequip and then equip again
  8.  
  9. Because of the bug above this setup is required to actually save the changes to the peripheral hub and changes in between world loads
  10. ]]
  11. local hub = peripheral.wrap("back")
  12. hub.equip(1)
  13. hub.equip(2)
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement