Games
Developers
Forums
More
BYOND
Download
Developer Guide
Developer Reference
Support
Terms of Service
Membership
Contact Us
Many features on this site require JavaScript. Please enable JavaScript support in your browser.
Register
Login
BYOND Forums
Announcements
·
BYOND Help
·
Bug Reports
·
Feature Requests
·
Beta Testers
·
Beta Bugs
·
Developer Help
·
Design Philosophy
·
Demos & Libraries
·
Tutorials & Snippets
·
Art & Sound
·
Classified Ads
·
Game Updates
·
Contests & Events
·
Linux Talk
·
On Topic
·
Off Topic
Test.txt << "Text and stuff"
[Tips]
ID:166724
Jun 24 2006, 6:52 am
Metamorphman
Say for example I run a game and I ask to download the game manual.It CREATES a txt on my computer.What will I have to do so that text is inputted into the .txt?
Jun 24 2006, 7:02 am
PirateHead
You can create text files like this:
var
/txtfile = file(
"whatever.txt"
)
txtfile <<
"Some text"
Of course, you can call the var walnuts or foo or not_a_text_file_OH_PSYCH_exclamation_point or whatever you want.
Jun 24 2006, 7:06 am
In response to
PirateHead
Metamorphman
Thanks. :)
Copyright © 2025 BYOND Software. All rights reserved.
Of course, you can call the var walnuts or foo or not_a_text_file_OH_PSYCH_exclamation_point or whatever you want.