Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 由Koolisw創作, 請看原版教學影片: https://youtu.be/juuyNqP64Gk
- 順便訂閱: https://youtube.com/c/KooliswBrandon
- QQ Settings: https://www.roblox.qq.com/my/account#!/info
- 設定頁面, 切勿直接開啟連結, 你必須複製這個連結到網址欄中才能夠進行
- ⚠️警告, 那個網站終端代碼你在非個人主頁是不能做到的!
- 在這個網站運行那個代碼才有效: https://www.roblox.com/User.aspx?lD=
- (你的個人頁面才能夠做到)
- 1. 網站終端代碼 Console Script:
- // 代碼十分安全, 不會盜取你的帳戶
- // 這個只是獲取機器人驗證的那串授權代碼, 模擬在登入的時候那個驗證被順利通過!
- // 複製以下
- let funCaptchaToken = null
- const localeToFunCaptchaLanguageCodeMap = {
- "de-de": "de",
- "en-us": "en",
- "es-es": "es",
- "fr-fr": "fr",
- "pt-br": "pt-br",
- "ko-kr": "ko",
- "zh-cn": "zh",
- "zh-tw": "zh-tw",
- "ja-jp": "ja"
- }
- const userLocation = new Roblox.Intl()
- function showFunCaptchaInModal() {
- Roblox.Dialog.open({
- bodyContent: '<div id="funcaptcha-container" class="funcaptcha-modal-body"></div>',
- allowHtmlContentInBody : true,
- showAccept: false,
- showDecline: false,
- xToCancel: false
- })
- const modalDialog = document.getElementById("modal-dialog")
- modalDialog.style.width = "330px"
- }
- function renderFuncaptcha() {
- showFunCaptchaInModal()
- new ArkoseEnforcement({
- public_key : "476068BF-9607-4799-B53D-966BE98E2B81",
- target_html : "funcaptcha-container",
- language : localeToFunCaptchaLanguageCodeMap.hasOwnProperty(userLocation.locale) ? localeToFunCaptchaLanguageCodeMap[userLocation.locale] : "en",
- data : {
- blob : null
- },
- async callback(e) {
- console.clear()
- console.log('You\'ve completed the challenge. Please wait moment.')
- funCaptchaToken = e
- console.log(e)
- setTimeout(() => Roblox.Dialog.close() , 1000)
- },
- onsuppress() {
- setTimeout(() => {
- if(!funCaptchaToken) {
- Roblox.Dialog.close()
- showFunCaptchaInModal()
- }
- } , 1000)
- },
- loaded_callback() {
- console.clear()
- }
- })
- }
- setTimeout(renderFuncaptcha , 1000)
- // 複製到此 Copy until here.
- 2. API JSON 帳戶授權代碼:
- {
- "ctype": "Username", // 不要動這個
- "cvalue": "你的帳戶名稱",
- "password": "你的帳戶密碼",
- "captchaId": "", // 不要動這個
- "captchaToken": "CONSOLE 輸出的那條代碼",
- "captchaProvider": "PROVIDER_ARKSOKE_LABS" // 不要動這個
- }
- // 複製到此 Copy until here.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement