NEED help making a code guesser 3 digits, a-z 0-9

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
xeu hazzel
Posts: 3
Joined: 15 Aug 2018, 12:21

NEED help making a code guesser 3 digits, a-z 0-9

15 Aug 2018, 12:45

I NEED YOUR HELP! <3

im playing this game and every week the server owner gives out a code to guess. for ex... 14 DAY level TOKEN!! Figure out the last three numbers/letters! 1-9 and A-Z! JS6QDK-B4ZD8Y-QWC

i need your help to make a script that generates a 3 digit code to solve the 3 missing digits.
ive looked all over and cant find one that works.
when i type out part of the code that the server gives me, i have to guess the remaining 3 digits. so im looking for something that when i press f1:: the script backspaces 3 times and then types 3 random characters :crazy:
xeu hazzel
Posts: 3
Joined: 15 Aug 2018, 12:21

Re: NEED help making a code guesser 3 digits, a-z 0-9

15 Aug 2018, 13:00

swagfag wrote:ok, so whats the gimmick?
what do you mean? theres no gimmick.
i dont know how to code or where to start. if i look at ascript i can sort of understand but i dcant make them
swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

Re: NEED help making a code guesser 3 digits, a-z 0-9

15 Aug 2018, 13:01

the gimmick to figuring out what the rest of the digits are. have u figured that out already?
xeu hazzel
Posts: 3
Joined: 15 Aug 2018, 12:21

Re: NEED help making a code guesser 3 digits, a-z 0-9

15 Aug 2018, 13:09

swagfag wrote:the gimmick to figuring out what the rest of the digits are. have u figured that out already?
oh no no. ive guessed the code before believe it or not. its not a trick. it took me a couple hours to guess
swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

Re: NEED help making a code guesser 3 digits, a-z 0-9

15 Aug 2018, 17:00

xeu hazzel wrote:f1:: the script backspaces 3 times and then types 3 random characters
hf pressing f1 50k times

Code: Select all

#NoEnv
#SingleInstance Force
SendMode Input
SetBatchLines -1

Chars := StrSplit("1234567890abcdefghijklmnopqrstuvwxyz")

Seq := []
for i, a in Chars
	for i, b in Chars
		for i, c in Chars
			Seq.Push(a b c)

F1::Send % "{BS 3}" Seq.Pop()

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Anput, Frogrammer, jameswrightesq and 277 guests