I want to view a txt document that is not a save file. For example, if I want to view the bugs in my game, it will go into this file by the users:
BugLog.txt
Now is there a way I can make it so that I can read the file in the game instead of the host having to upload it and send it to me?
Well, assuming the Buglog file is on the same file as the host files, I hope this helps.
mob/verb/TextfileView() |
src << browse(file(whatever)) should be enough and just fine no extra parsing or changing needed iirc
|
This should open the file "BugLog.txt" in the game's directory. You could also output it to an output control, ftp() it to the user, ect.