Advertisement
RyuuzakiJulio

Youtube Subs V3 ComputerCraft

Nov 5th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.63 KB | None | 0 0
  1.  youtuber = "AngelMalusPlays"
  2.     http.request("https://www.googleapis.com/youtube/v3/channels?part=statistics&id=UCqW44kKy-DshiYCYthTx2Vg&key=AIzaSyAsdLLJe6x1oMBZXJyK0HxQu14nH668j5Y")
  3.     local requesting = true
  4.      
  5.     while requesting do
  6.      local event, url, sourceText = os.pullEvent()
  7.      if event == "http_success" then
  8.       local respondedText = sourceText.readAll()
  9.        p = string.find(respondedText,"subscriberCount")
  10.        e = string.find(respondedText,"hidden")
  11.        subs = string.sub(respondedText,p+19,e-9)
  12.        requesting = false
  13.        print(subs)
  14.       elseif event == "http_failure" then
  15.        print("Server didn't respond")
  16.        requesting = false
  17.       end
  18.     end
  19.  
  20. uni={
  21.  1+2+4+8+16+32, --0
  22.  3, --1
  23.  32+1+64+8+4, --2
  24.  32+1+64+2+4, --3
  25.  1+64+16+2, --4
  26.  32+16+64+2+4, --5
  27.  32+16+8+2+4+64, --6
  28.  35, --7
  29.  1+2+4+8+16+32+64, --8
  30.  32+16+64+1+2, --9
  31. }
  32.  
  33. dec={
  34.  4096+128+256+512+1024+2048,
  35.  128+256,
  36.  4096+128+8192+1024+512,
  37.  4096+128+8192+256+512,
  38.  2048+8192+128+256,
  39.  4096+2048+8192+256+512,
  40.  4096+2048+1024+512+256+8192,
  41.  4096+128+256,
  42.  4096+128+256+512+1024+2048+8192,
  43.  4096+2048+8192+128+256,
  44. }
  45.  
  46. prs ={
  47.  
  48. }
  49.  
  50. k=0
  51. for i=1,10 do
  52.  for j=1,10 do
  53.   prs[k]=uni[j]+dec[i]
  54.   k=k+1
  55.  end
  56. end
  57.  
  58. space = ""
  59. if tonumber(subs) < 1000 then space = "0" end
  60. if tonumber(subs) < 100 then space = "00" end
  61. if tonumber(subs) < 10 then space = "000" end
  62.  
  63. subs = space..subs
  64.  
  65. --print(subs)
  66.  
  67. one = string.sub(subs,1,2)
  68. two = string.sub(subs,3,4)
  69.  
  70. print(one)
  71. print(two)
  72.  
  73.  
  74.  rs.setBundledOutput("left",prs[tonumber(two)])
  75.  
  76.      rs.setBundledOutput("right",prs[tonumber(one)])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement