SphereCommunity
Create .txt file by function - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Create .txt file by function (/Thread-Create-txt-file-by-function)



Create .txt file by function - Russian - 03-02-2017 05:45 AM

Hello.
As example i want write fuction:
Code:
[FUNCTION WRITE_COORDINATES]
SERV.LOG <SRC.NAME> <SRC.UID> write new coordinates: <SRC.P>
CREATE/REWRITE .txt file with new line: <SRC.P>
[EOF]

How it possilble without MySQL?


RE: Create .txt file by function - Rostok - 03-02-2017 04:56 PM

http://wiki.spherecommunity.net/index.php?title=Files


RE: Create .txt file by function - Russian - 03-02-2017 05:33 PM

OptionFlags=08|080|0200|04000

Code:
[FUNCTION WRITE_COORDINATES]
SERV.LOG <SRC.NAME> <SRC.UID> write new coordinates: <SRC.P>
OPEN Coordinates.txt
WRITELINE <SRC.P>
CLOSE

10:35:ERROR:(Function fix.scp,3)Undefined keyword 'OPEN'
10:35:ERROR:(Function fix.scp,4)Undefined keyword 'WRITELINE'
10:35:ERROR:(Function fix.scp,5)Undefined keyword 'CLOSE'


RE: Create .txt file by function - Rostok - 03-02-2017 05:57 PM

Try

FILE.OPEN


RE: Create .txt file by function - Russian - 03-02-2017 06:14 PM

Code:
11:15:(Function fix.scp,2)Valar 06ecdd write new coordinates: 5424,2188,5
11:15:ERROR:(Function fix.scp,4)FILE: Cannot write content. Open the file first.
11:15:ERROR:(Function fix.scp,4)FILE: Cannot write content. Open the file first.
11:15:4e:'ADMIN' commands 'WRITE_COORDINATES'=1

Code:
[FUNCTION WRITE_COORDINATES]
SERV.LOG <SRC.NAME> <SRC.UID> write new coordinates: <SRC.P>
FILE.OPEN Coordinates.txt
FILE.WRITELINE <SRC.P>
FILE.CLOSE



RE: Create .txt file by function - Rostok - 03-02-2017 06:20 PM

https://forum.spherecommunity.net/Thread-SERV-WRITEFILE?highlight=file.open


RE: Create .txt file by function - Russian - 03-02-2017 06:45 PM

Thank you.
I was triung to find in Search before.

It is works:
Code:
///.WRITEFILE script_file_name,data
//.WRITEFILE scripts\test.scp,example_text_made_by
[FUNCTION WRITEFILE]
IF !(<FILE.INUSE>)
FILE.MODE.CREATE=1
FILE.MODE.APPEND=1
FILE.MODE.WRITEFLAG=1
IF (<FILE.OPEN <STRARG <ARGS>>>)
FILE.WRITELINE <STREAT <ARGS>>
FILE.CLOSE
ENDIF
ENDIF

[FUNCTION WRITE_COORDINATES_TO_FILE]
WRITEFILE coordinates.scp,<P>