Advertisement
minimite

qpasetup

May 1st, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. --Quest Privacy Addon installer, by Atenefyr
  2. --This addon for Quest (the browser) changes your identifier each time it boots. Since your identifier tracks you, any webpages that track userdata via identifiers will cease to function properly with this addon installed. You have been warned.
  3. local open = fs.open("/quest", "r")
  4. local all = open.readAll()
  5. open.close()
  6. local txt = http.get("http://pastebin.com/raw.php?i=urHCqPFu").readAll()
  7. local open = fs.open("/quest", "w")
  8. open.write(txt .. "\n\n\n" .. all)
  9. open.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement