- Загрузка текстовых файлов: Используется функция loadTextFile.
- Сохранение текстовых файлов: Используется функция saveTextFile.
Следуйте этим шагам, чтобы настроить систему на своем сервере:
-
Создайте папку
server\functions
в корневой директории вашего сервера. -
Переместите файлы
auth.js
иmain.js
в папкуfunctions
. -
Отредактируйте файл
meta.xml
в корневой директории сервера, добавив следующие строки:<script src="./server/functions/auth.js" type="server" language="javascript" /> <script src="./server/functions/main.js" type="server" language="javascript" />
-
Вам останется реализовать логику камеры в исходнике main.js и в исходнике auth.js логику spawn
- Uploading text files: Function used loadTextFile.
- Saving text files: Function used saveTextFile.
Follow these steps to set up the system on your server:
-
Create folder
server\functions
in the root directory of your server. -
Move the files
auth.js
andmain.js
in folderfunctions
. -
Edit the file
meta.xml
in the server root directory by adding the following lines:<script src="./server/functions/auth.js" type="server" language="javascript" /> <script src="./server/functions/main.js" type="server" language="javascript" />
-
All you have to do is implement the camera logic in the main.js source and the spawn logic in the auth.js source
English version: in release.