⚠️ Big warnings (read once):
- This process wipes all data.
- Use the exact OnePlus 6T packages (codename fajita). OnePlus 6 is enchilada (different).
- Don’t boot into Android between certain flashing steps unless the step explicitly says to.
- Keep the phone plugged into a stable USB port (avoid flaky hubs/cables).
Setup Steps:
- Install this extension first: Referer Manager
- Add the following settings
- Install the UserScript below using TamperMonkey
- Now the webpage should show a button to view the private video like so

- Done!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { UserTokens } from "../models/player"; | |
| import { useAppDispatch, useAppSelector } from "../store/hooks"; | |
| import { | |
| NotificationService, | |
| PushNotificationPayload, | |
| } from "../services/notification-service"; | |
| import { authActions, authThunks } from "../store/slices/auth"; | |
| import { config } from "../constants/config"; | |
| import * as SecureStore from "expo-secure-store"; | |
| import axios from "axios"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using Photon.Pun; | |
| using Photon.Realtime; | |
| using TMPro; | |
| using UnityEngine; | |
| using System.Linq; | |
| namespace Lobby.Scripts | |
| { | |
| public class Launcher : MonoBehaviourPunCallbacks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using UnityEngine.Serialization; | |
| public class HudManager : MonoBehaviour | |
| { | |
| public List<HudInfo> huds = new List<HudInfo>(); | |
| public Transform localPlayer = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using _Project.Scripts.Utils; | |
| using UnityEngine; | |
| using UnityEngine.Serialization; | |
| using Random = UnityEngine.Random; | |
| namespace _Project.Scripts | |
| { |
