Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
to the error being experienced by @vhsfernandes2008
on line 160, 190 and 200
"if essid == ess[bestnet] then"
essid was used to find "bestnet", and is never changed, so this will always be true.
This makes the script always crack and use "bestnet".
changing this to:
"if ess[selectnet] == ess[bestnet] then"
for all of these lines, fixes this issue.
Hope this helps.
essid = ess[selectnet]
acks = ack[selectnet]
on line 140 before setting check = true. Otherwise it'll just stay on the default essid, acks values.
for decipher, I guess user preference, I use
crypto = include_lib("/lib/crypto.so")
info = params[0].split(":")
result = crypto.decipher(info[1])
print(info[0]+" "+result)
(I would have use the formatting for code, but I have no idea how to use with [])