Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- youtuber = "AngelMalusPlays"
- http.request("https://www.googleapis.com/youtube/v3/channels?part=statistics&id=UCqW44kKy-DshiYCYthTx2Vg&key=AIzaSyAsdLLJe6x1oMBZXJyK0HxQu14nH668j5Y")
- local requesting = true
- while requesting do
- local event, url, sourceText = os.pullEvent()
- if event == "http_success" then
- local respondedText = sourceText.readAll()
- p = string.find(respondedText,"subscriberCount")
- e = string.find(respondedText,"hidden")
- subs = string.sub(respondedText,p+19,e-9)
- requesting = false
- print(subs)
- elseif event == "http_failure" then
- print("Server didn't respond")
- requesting = false
- end
- end
- uni={
- 1+2+4+8+16+32, --0
- 3, --1
- 32+1+64+8+4, --2
- 32+1+64+2+4, --3
- 1+64+16+2, --4
- 32+16+64+2+4, --5
- 32+16+8+2+4+64, --6
- 35, --7
- 1+2+4+8+16+32+64, --8
- 32+16+64+1+2, --9
- }
- dec={
- 4096+128+256+512+1024+2048,
- 128+256,
- 4096+128+8192+1024+512,
- 4096+128+8192+256+512,
- 2048+8192+128+256,
- 4096+2048+8192+256+512,
- 4096+2048+1024+512+256+8192,
- 4096+128+256,
- 4096+128+256+512+1024+2048+8192,
- 4096+2048+8192+128+256,
- }
- prs ={
- }
- k=0
- for i=1,10 do
- for j=1,10 do
- prs[k]=uni[j]+dec[i]
- k=k+1
- end
- end
- space = ""
- if tonumber(subs) < 1000 then space = "0" end
- if tonumber(subs) < 100 then space = "00" end
- if tonumber(subs) < 10 then space = "000" end
- subs = space..subs
- --print(subs)
- one = string.sub(subs,1,2)
- two = string.sub(subs,3,4)
- print(one)
- print(two)
- rs.setBundledOutput("left",prs[tonumber(two)])
- rs.setBundledOutput("right",prs[tonumber(one)])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement