Sorry about my english, it's not very good.
I post before, but sure that it's difficult to understant, so I'll ask for something different:
I'm doing some things with mirc that needs to work with .txt files but it's not easy to know how to do it. First of all I'll be fine if some of you give some tutorials to explain a complete way to work with .txt in scripting.
Example: .txt file
nick1 timenick1
nick2 timenick2
nick3 timenick3
...
My question is, for example, make the mirc to send me timenick2 when I ask for nick2, to compare with the new timenick2 and if the new timenick2 is longer substitute the older.
If you don't understand please ask it.
Thanx a lot
You can use ini files for this.
/writeini info.ini nicks stefys 1234
/writeini info.ini nicks st3fys 5678
$readini(info.ini,n,nicks,stefys) = 1234
$readini(info.ini,n,nicks,st3fys) = 5678
There is no manual better than /help.
/help $read
/help /write
/help /writeini
/help $readini
Good luck.