How can this be done?
I have seen it in MadChat and a few other bots.
I believe your answers can be found here:
http://forum.valhallalegends.com/phpbbs/index.php?board=17;action=display;threadid=1814 (http://forum.valhallalegends.com/phpbbs/index.php?board=17;action=display;threadid=1814)
write log.txt %temp =\
on your OnTalk Command put this
Open (App.Path & "\log.txt") For Append As #1
Write #1, Username & " " & message
Close #1
Thanks. It worked.
But what if you wanted other people's text also....
How do i remove the " " that suround the logged text in the log file?
Another interesting thing is that when its displayed in a pic box the "" are gone.....Maybe its becuase the text is defined as a string....
Use the Print command instead of Write. Write is actually used to write records that can be retrieved later, Print is used with plain text.