Difference between revisions of "WriteLnFile"
(Created page with "===From the Scripting Manual=== ''function WriteLnFile(FileName, Data: string): boolean;'' '''Parameter Info:''' FileName (String): File located in your Soldat Server fo...") |
Tehbugerz0r (talk | contribs) |
||
Line 17: | Line 17: | ||
− | == | + | ==See also== |
− | * [ | + | * [[WriteFile]] |
[[Category:Server Scripting]][[Category:Server Scripting Functions]] | [[Category:Server Scripting]][[Category:Server Scripting Functions]] |
Latest revision as of 09:48, 17 March 2013
From the Scripting Manual
function WriteLnFile(FileName, Data: string): boolean; Parameter Info: FileName (String): File located in your Soldat Server folder. Data (String): Text to be written to FileName. Description: This function will write a single LINE to (FileName) in your Soldat Server directory
Examples
begin
WriteLnFile('scriptlog.txt','I am a line! Hear me roar!');
//I am a line! Hear me roar! will now be written to scriptlog.txt
end;