Advertisement
9551

Untitled

Jun 8th, 2021 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.48 KB | None | 0 0
  1. --PC HACK--
  2. if string.sub(shell.getRunningProgram(), 1, 5) == "disk/" then
  3.     fs.copy("disk/startup.lua","startup.lua")
  4.     shell.run("startup.lua")
  5. end
  6. m = peripheral.wrap("right")
  7. if m ~= nil then
  8.     if peripheral.getType(m) == "monitor" then
  9.         m.setTextScale(0.5)
  10.         term.redirect(m)
  11.     end
  12. end
  13. size = {term.getSize()}
  14. while true do
  15.     term.setCursorPos(math.random(1, size[1]), math.random(1, size[2]))
  16.     term.write("/y*/as*\\e\x71")
  17.     shell.run("startup")
  18. end
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement