Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- clearEffect
- local tArgs = {...}
- local x = tonumber(tArgs[1])
- local y = tonumber(tArgs[2])
- local screen = tArgs[3]
- for dY=1,#screen,1 do
- term.setCursorPos(x,y+dY-1)
- term.write(screen[dY])
- end
Advertisement
Add Comment
Please, Sign In to add comment