Before i ask help i tell u want i want to make.
I want to make a tool that will list me all servers with server status ( main server name -> server name -> online or offline -> ping ).
Now i can have file that can be opened but i dont know how do i take items i need. When i open file it show me as an array but i cant take items how i want.
Try open file with notepad i was using sublime text 3 to see file structure.
Something like this
[code]
#include <Array.au3>
#include <File.au3>
global $file = "D:\Igre\Forsaken World_en\update\server.lua"
global $oFile = FileOpen($file)
global $data = FileReadToArray($oFile)
;~ _ArrayDisplay($data)
For $i = 0 To UBound($data)-1
ConsoleWrite($data[$i] & @CRLF)
Next
[code]






