Jump to content

axxbryan

Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by axxbryan

  1. I mean i go that link but then i dont know where, theres any json.au3 attached
  2. Can you put direct download of the json au3, I can't find it on the main post. Please.
  3. Hello, i made a script with image search, in my computer works, but using other its not working. Is there something that must be installed or run as administrator before? i dont know how fix it. im using all files inside the same folder. im using this au3 and dll x64
  4. Hello, i finished my script and i would like add an online verification of hwid combined with myphpadmin from a website host. im bad with mysql and php to make it my own. i just need make something very simple, compare current hwid with all of the database. and return a true or false, then script opens or not. if someone have done something similar and can recommend some example etc would be great.
  5. Hello, i would like to know if its possible the next: 1.- A group of 2 radio box depending what is choose it will unlock or lock a combolist Important i need it instantly while i am configuring , without other button to update the gui. thank you
  6. What is faster? My code is 1000 lines and will be more. I need execute everything often. Would be better make a distribution in many au3 or keep it in a single au3. 80% are just a list of functions
  7. do you know why this happen? https://prnt.sc/wmz7au i cant add data to the fields
  8. @FrancescoDiMuro Yes that can work FOR ME , but in the visual editor KOda what option is, so i can design with the correct space
  9. Hello, i dont know if this topic can goes here. Im using Koda Form and i would like create a table to organize some data, but i dont know which option creates them. https://prnt.sc/wmo0sr Thank you.
  10. hello, its a bit simple, but i cant find how can i change the script icon? also add the propieties author,company, version, copyright etc. thanks.
  11. Hello, today i finished my bot for a game, i want share it free but not let the code so easy. No matter if later someone get it. its not a ultra bot, but at least it does the work . . . Is there a way to obfuscate free the code without extra files? Right now im running the script using a single file.au3 and i would like keep it like that. I cant use the free version of autoit because it has 960 lines code. I have been searching a while, and i cant find something
  12. Mikell i dont undertand the code but that work perfect. Thanks everyone.
  13. it is working now a bit weird, it can compare correctly but the result is the web line number. (4) (5) (11) etc, depending where i put the correct ID in the web. Do you know how convert the result it in to a variable just $high_permission = true or false.
  14. its not working now it print letter by letter
  15. sorry but, how should be wrote?
  16. Hello, im trying to make a very simple license system hehe. The objetive is read from website if i added a permision for that uniqueID machine (This part works) https://prnt.sc/we70zb Here starts the problem, when im comparing each result with the current ID, all are showed as false. I know this should be Correct result number 4, but it is not https://prnt.sc/we73nc #include <APIDiagConstants.au3> #include <WinAPIDiag.au3> #include <IE.au3> #include <Inet.au3> #include <array.au3> #include <MsgBoxConstants.au3> $myHWID = (_WinAPI_UniqueHardwareID()) ;~ ConsoleWrite($myHWID) $source = _INetGetSource("http://webfortesting3265.cloudaccess.host/database.txt") ;~ MsgBox(0,"info",$source ,0,0) Check_Active_License() Func Check_Active_License() Local $license[0] = StringSplit($source, ",") For $i = 1 To $license[0] If ($myHWID = $license[$i]) Then ConsoleWrite('Found') Else MsgBox(0,"Your HWID: " & $myHWID, 'Any coincidence with ' & $license[$i] ) EndIf Next EndFunc
×
×
  • Create New...