Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

everything should work pretty much perfectly at really fast speed #25

Open
gdrhzrd6e opened this issue Aug 12, 2023 · 20 comments
Open

everything should work pretty much perfectly at really fast speed #25

gdrhzrd6e opened this issue Aug 12, 2023 · 20 comments

Comments

@gdrhzrd6e
Copy link
Collaborator

not sure if it makes any difference but i tried running code using bytecode pyc
it seemed to speed up allot- besides the other modifications
(that my just be because i was running scripts through vs code before)- may slow stuff down

@gdrhzrd6e
Copy link
Collaborator Author

also 3 workers at a time seems to be smooth i'll try more later
(i know it could make ms servers block me)

@gdrhzrd6e
Copy link
Collaborator Author

there are still some specific bonus quizzes that don't get completed ever
prob cause not in the areas the script looks

@gdrhzrd6e
Copy link
Collaborator Author

and im pretty sure headless mode being detected is..... bullshit

@gdrhzrd6e
Copy link
Collaborator Author

we should prob add some sort of web panel for logging rather than using discord webhook- cause of rate limiting

@gdrhzrd6e
Copy link
Collaborator Author

when in headless mode sometimes it gives false errors but still does everything

@gdrhzrd6e
Copy link
Collaborator Author

im currently rnning 19 acc on 1 ip to see the ban rate and if there is one

@gdrhzrd6e
Copy link
Collaborator Author

my theory that locked accounts would still work if you saved sessions was correct

    "username": "sudfhiu435987@outlook.com",
    "password": "",

    "proxy": null,
    "status": "completed",
    "points": 50

that account is locked but has 350 points still earning

@gdrhzrd6e
Copy link
Collaborator Author

everything still works just fine

@gdrhzrd6e
Copy link
Collaborator Author

the disabled screen doesn't come up unless you attempt a redeem or go to certain urls though
so eventurely on those specific accounts you'll have to use a phone

@gdrhzrd6e
Copy link
Collaborator Author

but you could be stacked when you finally do that
100 dollars an account

@gdrhzrd6e
Copy link
Collaborator Author

you should add a workflow file under under a random extension name

@MehdiRtal
Copy link
Owner

Hello TheSprinkler.
Please PR the changes before commiting to the main branch so I could review everything.

@gdrhzrd6e
Copy link
Collaborator Author

k

@gdrhzrd6e
Copy link
Collaborator Author

ms doesn't seem to rate limit on 10 accounts concurrent

@MehdiRtal
Copy link
Owner

They don't rate limit but they fingerprint you and you get banned.

@MehdiRtal
Copy link
Owner

The issue with rate limit wasn't due to ms but was due to me running multiple browsers on a single thread which caused proxy issues. It's fixed now.

@gdrhzrd6e
Copy link
Collaborator Author

are you able to add something automatic with the same capabilities as what's below (currently Manuel progression calculator)

`import json
import math

DEFAULT_POINTS_PER_DAY = 195

def calculate_points():

points_per_day = int(input("Points per day: ") or DEFAULT_POINTS_PER_DAY)

with open('accounts.json') as f:
data = json.load(f)

total_points = 0
num_accounts = len(data)

for account in data:
total_points += account['points']

days_earned = total_points // points_per_day
if total_points > 0:
days_earned += 1

combined_days_earned = days_earned

goal = int(input("Goal points: "))

days_to_goal = (goal - total_points) // points_per_day
if goal - total_points > 0:
days_to_goal += 1

combined_days_to_goal = math.ceil(days_to_goal / num_accounts)

print(f"Total: {total_points}")
print(f"Accounts: {num_accounts}")
print(f"Singular Progression Total: {days_earned}")
print(f"Combined Progression Total: {combined_days_earned}")
print(f"Singular Days to goal: {days_to_goal}")
print(f"Combined days to goal: {combined_days_to_goal}")

conversion_rate = 1000
usd_total = total_points / conversion_rate
usd_goal = goal / conversion_rate

print(f"Total USD: ${usd_total}")
print(f"Goal USD: ${usd_goal}")

if name == 'main':
calculate_points()`

@gdrhzrd6e
Copy link
Collaborator Author

@gdrhzrd6e
Copy link
Collaborator Author

@MehdiRtal
Copy link
Owner

Hello everyone is redeem still working I kinda didn't check the code since a long time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants