Alright, so I need a script that reads a specific line from a specific file and then parse it and output the parsed text onto the current chat window.
Say it reads line 255 from a text file
Then it removes a certain string from the line
and outputs it!
If it helps anyone, I already did this in mIRC Scripting
code:
$read(C:\Program Files\AssaultCube_v1.1.0.3\config\saved.cfg, 255)
That's basically what I want, the full function I created is:
code:
alias ACServ {
//say /connect $remove($remove($read(C:\Program Files\AssaultCube_v1.1.0.3\config\saved.cfg, 255), alias "serverinfo" [), ])
}
I'm sorry if I'm unclear