-
-
Save pich4ya/2f20e4b8126d1539a355cbefac3aafb8 to your computer and use it in GitHub Desktop.
// บอทปั้มเงิน TLM เกม Alien Worlds (เงินจะเอาไปแลกเงินจริงใน Binance ได้) | |
// ไว้ทดสอบเฉย ๆ อย่าเอาไปใช้จริง คนเขียนไม่รับผิดชอบต่อบั๊กใด ๆ ทั้งสิ้น | |
// | |
// วิธีใช้: | |
// 1. สมัคร + เข้า https://play.alienworlds.io/ | |
// 2. ต้องเคย mine แบบ manual ก่อน 1 ครั้ง | |
// 3. ก๊อปสคริปท์นี้ไปแปะใน Console (F12) | |
// น่าจะมีบั๊กพวก rate limit อะไรทั้งหลาย กับ if/loop บางอันเอาออกได้ | |
// ลองรันเล่น ๆ 5 ชม จาก user เปล่า ๆ ได้มา 8 TLM (ขึ้นกับดวงและอื่นๆด้วยมั่ง) | |
// ใครว่าง ๆ แก้เป็นยิงเข้า API โดยตรงไม่ผ่าน JS น่าจะเสถียรกว่าเยอะมาก | |
const delay = millis => new Promise((resolve, reject) => { | |
setTimeout(_ => resolve(), millis) | |
}); | |
const userAccount = await wax.login(); | |
account = userAccount; | |
unityInstance.SendMessage('Controller', 'Server_Response_LoginData', userAccount); | |
await delay(10000); | |
while(true){ | |
var firstMine = true; | |
var previousMineDone = false; | |
var minedelay = 1; | |
do { | |
minedelay = await getMineDelay(account); | |
await delay(minedelay); | |
} while (minedelay !== 0 && (previousMineDone || firstMine)) | |
console.log('just mine it!'); | |
var balance = await getBalance(account, wax.api.rpc); | |
console.log('balance: (before mine)'+balance); | |
await background_mine(account).then((mine_work)=>{ | |
unityInstance.SendMessage('Controller', 'Server_Response_Mine', JSON.stringify(mine_work)); | |
console.log(`${mine_work.account} Pushing mine results...`); | |
const mine_data = { | |
miner: mine_work.account, | |
nonce: mine_work.rand_str, | |
}; | |
console.log('mine_data', mine_data); | |
const actions = [{ | |
account: mining_account, | |
name: 'mine', | |
authorization: [{ | |
actor: mine_work.account, | |
permission: 'active', | |
}, ], | |
data: mine_data, | |
}, ]; | |
wax.api.transact({ | |
actions, | |
}, { | |
blocksBehind: 3, | |
expireSeconds: 90, | |
}).then((result)=>{ | |
console.log('result is=', result); | |
var amounts = new Map(); | |
if (result && result.processed) { | |
result.processed.action_traces[0].inline_traces.forEach((t)=>{ | |
if (t.act.data.quantity) { | |
const mine_amount = t.act.data.quantity; | |
console.log(`${mine_work.account} Mined ${mine_amount}`); | |
if (amounts.has(t.act.data.to)) { | |
var obStr = amounts.get(t.act.data.to); | |
obStr = obStr.substring(0, obStr.length - 4); | |
var nbStr = t.act.data.quantity; | |
nbStr = nbStr.substring(0, nbStr.length - 4); | |
var balance = (parseFloat(obStr) + parseFloat(nbStr)).toFixed(4); | |
amounts.set(t.act.data.to, balance.toString() + ' TLM'); | |
} else { | |
amounts.set(t.act.data.to, t.act.data.quantity); | |
} | |
} | |
} | |
); | |
unityInstance.SendMessage('Controller', 'Server_Response_Claim', amounts.get(mine_work.account)); | |
firstMine = false; | |
previousMineDone = true; | |
} | |
} | |
).catch((err)=>{ | |
unityInstance.SendMessage('ErrorHandler', 'Server_Response_SetErrorData', err.message); | |
previousMineDone = false; | |
} | |
); | |
} | |
); | |
var balance = await getBalance(account, wax.api.rpc); | |
console.log('balance (after mined): '+balance); | |
} |
No no no, 2captcha is too slow. U need using anti-captcha, this most faster http://getcaptchasolution.com/abizs8xcfv
already tried (demo credit) and I'm surprising, it's slower than 2captcha
take 1 minute to solve recatpcha lol
Нет-нет-нет, 2captcha работает слишком медленно. Вам нужно использовать анти-капчу, это быстрее всего http://getcaptchasolution.com/abizs8xcfv
уже пробовал (демонстрационный кредит), и я удивлен, это медленнее, чем 2captcha,
занимает 1 минуту, чтобы решить recatpcha lol
No, it just Demo, try for fiat. 1 dollar enough for balance
Нет-нет-нет, 2captcha работает слишком медленно. Вам нужно использовать анти-капчу, это быстрее всего http://getcaptchasolution.com/abizs8xcfv
уже пробовал (демонстрационный кредит), и я удивлен, это медленнее, чем 2captcha,
занимает 1 минуту, чтобы решить recatpcha lolNo, it just Demo, try for fiat. 1 dollar enough for balance
ok bro I'll try it again with a real credit. thanks you for recommendation
but I have a little question. anticaptcha extension sometime keep getting error (wrong format captcha) or something I can't remember
what's the browser u use and what extension?
I found out another autobot run with python here , so anyone can fix it please reup that new code , i buy 2captcha and that's worked to skip(solve) like human but don't know the code to auto click to [Appove button]
https://github.com/greedy-dev/alienworlds-autoclicker
and here
https://github.com/anonieX/alienworldsauto
Waiting for new respond !!! God bless you guy !!!click selected element (Approve button) is ez with javascript
I've used 2captcha too and it's very very slow(EST 40+ sec) since it's third-world's human-based, Transactions is already expired before captcha get solvedPlease gimme your complete code sir ! Thank and Best Regards !
I stuck my head many day ago , can't sleep well with these code :(run it with scriptautorun (browser extension)
100 at the bottom is delay time in millisecond
I use your code but still not click on approve what I have to change?
Нет-нет-нет, 2captcha работает слишком медленно. Вам нужно использовать анти-капчу, это быстрее всего http://getcaptchasolution.com/abizs8xcfv
уже пробовал (демонстрационный кредит), и я удивлен, это медленнее, чем 2captcha,
занимает 1 минуту, чтобы решить recatpcha lolНет, это просто Демо, попробуй за фиат. 1 доллар достаточно для баланса
хорошо, братан, я попробую еще раз с большим доверием. спасибо за рекомендацию
но у меня небольшой вопрос. Расширение anticaptcha иногда продолжает получать ошибку (неправильный формат captcha) или что-то, что я не могу вспомнить,
какой браузер вы используете и какое расширение?
google chrome and AntiCaptcha plugin (automatic captcha solver)
run it with scriptautorun (browser extension)
Can u tell me this extension? im tried 3 different, but nothing working
run it with scriptautorun (browser extension)
Can u tell me this extension? im tried 3 different, but nothing working
that what I need to know also
run it with scriptautorun (browser extension)
Can u tell me this extension? im tried 3 different, but nothing workingthat what I need to know also
try run it in console(F12) directly if it work it's extension problem
that script originally made for tampermonkey but tampermonkey didn't work on wax cloud wallet
so around 3-4 day ago I move to scriptautorunner and it's work. idk if it's still work
anyone find working extension yet? I keep trying nothing work
запустите его с помощью scriptautorun (расширение браузера).
Вы можете сказать мне это расширение? Я пробовал 3 разных, но ничего не работалоэто то, что мне также нужно знать
попробуйте запустить его в консоли (F12) напрямую, если он работает, это проблема расширения,
что сценарий изначально был создан для tampermonkey, но tampermonkey не работал с облачным кошельком воска,
поэтому около 3-4 дней назад я перехожу к scriptautorunner, и он работает. не понимаю, если это все еще работает
Already using him, but nothing work. Maybe need some different browser? I using chrome
Hi guys, this AutoBot is still working?
Has anyone managed to use the code where he accepts the contract?
Auto approve
This extension approve automat
Extract zip, enable extension developer mode and drag and drop extension folder to extension site
Anti captcha extension
Anti captcha account
Register account and deposit min 10$ (2$/1000 captcha)
Install 2 extension
And the bot work automat :)
Can make IF statement to cpu error?
Please! I don't know much how about to use this code.
Can someone help me?
Kérem! Nem sokat tudom, hogyan kell használni ezt a kódot.
Tudna nekem valaki segíteni?
Open play.alienworlds.io
Ctrl+shift+j (open console)
Put the script
Script is run
@martineix > Please! I don't know much how about to use this code.
Can someone help me?
@martineix try mine, very detailed instructions
Hi guys, who know how fix sopping script after CPU error? (sorry for my english)
Auto approve
This extension approve automat
Extract zip, enable extension developer mode and drag and drop extension folder to extension site
Anti captcha extension
Anti captcha account
Register account and deposit min 10$ (2$/1000 captcha)
Install 2 extension
And the bot work automat :)
it is not really working though, the extension
Don't mind a parent comment. Cheat. I've studied the codes, he's sending nft, wax and tlm on his account.
https://github.com/HideYourFootprints/AlienWorlds-Bot-Multiaccount-FREE-AntiCaptcha
Hope I can help you guys just donate to me ----> piqdw.wam
THE PREMIUM ONE HAVE FREE PROXY KEY CONTACT ME ON DISCORD HideYourFootprints#6901
I sent you a DM on discord
If you want a free and working auto-claimer bot, pls view this video. It's the Community version located here. Please read the README file firstly.
In case that you want the Premium version, contact me through email [email protected]
or Facebbok. For the demo, please review latest video.
Ha ingyenes és működő botot szeretnél, akkor először nézd meg ezt a videót .
One time purchase or monthly?
https://github.com/HideYourFootprints/AlienWorlds-Bot-Multiaccount-FREE-AntiCaptcha
Hope I can help you guys just donate to me ----> piqdw.wam
THE PREMIUM ONE HAVE FREE PROXY KEY CONTACT ME ON DISCORD HideYourFootprints#6901
I cannot add friends through this account. HideYourFootprints#6901
Hi guys, was anyone able to make an automatic approve in the wax tab when claim tlm? Thanks
any can help me use boost.wax when mine?
how to setup 2captcha?