Jump to content

omicron

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

omicron's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Do you suggest that no one would want to know how this function would work for their own application? I explained this to JOS is a PM, Ill explain to the goup: Certainly i will delete the original post; considering the content and forum rules. Hence the restatement, which we agree adheres to guideline. Simply stated, looking for a solution to an issue. 1. The efforts are not nefarious as I own the content I am working with. 2. This is in an additional effort to combat certain methods of screen scraping, and artificial interaction with our systems as it messes up the metrics, and overall continuity with the game. I am a security developer @Jos More specifically. The advice was dully noted and applied. lastly, I have a need for this particular function in a few programs saving lots of time and adding extreme value to sorting a few lists. ======== Glad to see moderators are diligently assessing posts instead of immediately locking them======== Are you willing to help answer this question? Thank you for your time.
  2. How do you perform a nested loop function with a multidimensional array from 2 lists. for i in list1 (open file) extract variable while open for i in list 2 (open file2) extract variable var1 + var2 = (search term) The list sizes will more than likely consist of different lengths. What is the best approach to accomplishing this method?
  3. Hello! I am working on a function that I am just getting lost on. The goal is a multiple nested loop. Here are the steps: Contents of file1.txt:: [topic] var1=Name var2=OtherName var3=SomeotheName Contents of file2.txt:: [subTopic] top=sub1 top2=sub2 top3=sub3 The Shell I am working from:: #include <file.au3> $file = "c:\yourfile.txt" FileOpen($file, 0) For $i = 1 to _FileCountLines($file) $line = FileReadLine($file, $i) msgbox(0,'','the line ' & $i & ' is ' & $line) Next FileClose($file) Understanding however that the "msgbox" needs to then become a variable. in example the following:: $file = "c:\yourfile.txt" FileOpen($file, 0) While true( prog.exe is running && "WinName" is open) do For $i = 1 to _FileCountLines($file) $line = FileReadLine($file, $i) ;Open File to log "current location of file 1" FileWriteLine ("filename", $i & ' is ' & $line) var = $line Next $file2 = "c:\yourfile.txt" FileOpen($file, 0) For $i = 1 to _FileCountLines($file) $line = FileReadLine($file, $i) ; OpenFile to log "Current location of file 2" FileWriteLine ("filename", $i & ' is ' & $line) Next FileClose($file2) FileClose($file) The goal in written form is the following :: While in "OpenWindow" read from file 1 starting at line 1 until end of file. file 1 is a list of names to be searched. With $line selected, add this element to the element in file 2. The search of a variables in list 1 and list 2 differ on the amount of posts that day. (This is not a web based platform, it is a game) I need to search 2 names and take a screenshot of the out put. The sizes of the names list depend on the activity of names at the time of search. This loop continues until all the names from both lists have been searched. Mostly in the format of:: File1= item File2= Vendor Item + Vendor ( Capture screen, scroll) -- Not sure how to detect if I need to scroll) Thank you for your help and support!
×
×
  • Create New...